AgenticStore MCP: Python Toolkit for Claude Desktop with 27 Local Tools

AgenticStore MCP is an open-source Python toolkit designed to simplify MCP (Model Context Protocol) configuration for Claude Desktop. It replaces the need to run multiple separate Node.js servers and manually edit JSON configuration files with a single installation that provides 27 local tools.
Key Features
The toolkit provides three main categories of functionality:
- True Persistent Memory: 12 specific tools for writing to local JSON files, allowing Claude to retrieve context from previous sessions even in fresh chats days later.
- Web Search without API quotas: Integration with SearXNG for deep web crawling and live searches that run privately on your local machine.
- Repo Auditing: Tools for running regex searches across entire projects, linting Python code natively, and automatically drafting Git commits without manual command execution.
Installation and Setup
The tool is specifically designed to avoid Docker and Node.js requirements. Installation is done via pip:
pip install git+https://github.com/agenticstore/agentic-store-mcp.gitOnce installed, you add the agentic-store-mcp command to your Claude Desktop config file to automatically gain access to all 27 tools. The toolkit includes a local web GUI that lets you visually toggle which tools Claude has access to without manually editing JSON configuration files.
This approach addresses the current MCP ecosystem complexity where users typically need to run separate servers for filesystem access, SQLite for memory, and Puppeteer containers for search, then carefully edit claude_desktop_config.json each time they want to enable or disable tools.
📖 Read the full source: r/ClaudeAI
👀 See Also

Reddit user measures MCP token overhead: 67K tokens consumed before any question
A developer measured their MCP server token overhead at 67,000 tokens consumed before typing a single question, with Playwright MCP using 13,600 tokens and GitHub MCP using 18,000 tokens idle. They replaced MCP with skills and CLI tools for lower context costs.

Codesight CLI reduces AI coding agent token usage by scanning codebases
Codesight is a zero-dependency CLI tool that scans TypeScript, Python, and Go projects to generate compact context files, reducing Claude Code exploration tokens by 12.3× on average according to benchmarks from real production codebases.

OpenRouter Model Pricing and Intelligence-per-Dollar Analysis
A Reddit user compiled OpenRouter API pricing for 16 AI models and calculated intelligence-per-dollar values, identifying MiMo-V2-Flash as best value at $0.09/M tokens and GPT-5.4 as most intelligent at $2.50/M tokens.

Memento v1.0: Local Persistent Memory for AI Coding Agents
Memento v1.0 is a fully local memory layer for AI coding agents that runs embeddings, storage, and search on your machine with no cloud dependencies. It uses all-MiniLM-L6-v2 embeddings, HNSW indexing, and supports multiple IDEs with 17 MCP tools.