loading…
Search for a command to run...
loading…
A collection of self-hosted, open-source tools that enable AI agents to perform web searching, content crawling, and code analysis tasks like linting and securi
A collection of self-hosted, open-source tools that enable AI agents to perform web searching, content crawling, and code analysis tasks like linting and security scanning. It provides power-user capabilities for MCP-compatible clients without requiring external accounts or third-party infrastructure.
Open-Source Model Context Protocol (MCP) Server for Data Privacy, Prompt Recording, Audit Logs, and 31 Agent Tools for Claude Code, Cursor, and Windsurf.
License: MIT Python 3.12+ MCP Compatible PyPI
� Official Documentation • �🚀 Quick Start • 🛡️ Prompt Firewall • 🗂️ Full Tool Directory • 🌐 Web Search • 🔌 Client Setup • 💻 Claude Code • 🖥️ GUI Webapp
Giving AI assistants like Claude, Cursor, and Windsurf access to your codebase and the web is a superpower. But passing sensitive enterprise data to remote LLMs is a massive security risk. Furthermore, hitting token limits quickly degrades LLM context windows and increases costs.
The Problem: You want the massive productivity boost of agentic workflows, but you cannot compromise on Data Loss Prevention (DLP), compliance, leak prevention, or token bloat.
The Solution: AgenticStore MCP Server solves the entire equation natively:
Zero subscriptions. Zero vendor lock-in. Configure your MCP tools manually or effortlessly through a beautiful local GUI.

| Feature | AgenticStore MCP Server | Standard MCP Servers |
|---|---|---|
| AI Security & Prompt Firewall | 🛡️ Yes (Proxy & Rule-based DLP) | ❌ No |
| Audit Traces & Logs | 📝 Yes (Prompt recording & compliance) | ❌ No |
| Local LLM Prompt Sanitization | 🦙 Yes (Ollama integration) | ❌ No |
| Persistent Agent Memory | 🧠 Yes (survives restarts & sessions) | ❌ No |
| Token Optimization & Pruning | ✂️ Yes (LLM token compression) | ❌ No |
| Agentic Web Search | 🌐 Self-hosted SearXNG | ❌ Usually No |
| Capabilities | 🛠️ 31 specialized tools | ⛏️ 1 to 5 basic tools |
| Configuration | 🖥️ Web GUI Dashboard OR ⚙️ Manual | ⚙️ Manual JSON setup |
| Privacy | 🔒 100% Local Execution | 🔒 Varies |
token_optimizer) and relevance-based context trimming (context_pruner).uvx or pip. MCP configuration supports both manual JSON and GUI workflows.The Prompt Firewall gives you complete control over what natural language data and code leaves your computer when using cloud-based AI coding assistants, delivering enterprise-grade AI security.
[!NOTE] The Firewall feature is currently tested and stable on macOS. Support for Linux and Windows is coming soon!
Key Features:
To enable the firewall and begin collecting audit traces for AI usage, start the GUI Webapp and navigate to the Firewall tab to install the certificate and start the proxy. For deeper technical architecture, read the officially provided AgenticStore Prompt Firewall Documentation or visit the main site at agenticstore.dev.
Equip your AI client with these modules containing 31 specific MCP tools, categorized strategically for maximum productivity:
| Module | Purpose | Key Capabilities | Tools |
|---|---|---|---|
| 💻 Code (Codebase, GitHub, Security) | Codebase mastery & safety | Static analysis, GitHub PRs, OSV CVE scans, CodeQL scanning | 8 |
| 🌐 Data (Search & Crawl) | Internet access for Agents | Private web search (SearXNG) and deep web crawling | 2 |
| 🧠 Memory (Productivity & Storage) | Context manipulation & persistence | Save/read facts, optimize LLM tokens, context pruning | 16 |
| 🛠️ Tools & System Config | Configuration & OS monitoring | Check running host processes, tail system logs, discovery | 5 |
Pick the setup that best fits your workflow. MCP supports both manual configuration and GUI-based management setup. Don't know which to pick? Start with V0.
1️⃣ Install via PyPI
pip install agentic-store-mcp --upgrade
(Or use uvx agentic-store-mcp if you have Astral's toolchain).
2️⃣ Run the MCP server
agentic-store-mcp
3️⃣ (Optional) Check your installation
agentic-store-mcp --version
4️⃣ Configure your AI Client
See the Connect to Your AI Client section to link it manually, or use the UI!
💡 Pro-Tip (Web Search): Want web search? Check out our Copy-Paste Config below. See Web Search Setup.
1️⃣ Install directly from the repository
pip install git+https://github.com/agenticstore/agentic-store-mcp.git
(Or using uv: uvx --from git+https://github.com/agenticstore/agentic-store-mcp.git agentic-store-mcp)
2️⃣ Run the MCP server
agentic-store-mcp
3️⃣ Configure your AI Client
See the Connect to Your AI Client section to link it!
Forget manual JSON editing! Use our local web UI to:
Start the Hub via Python:
# Ensure it is installed via pip
pip install agentic-store-mcp --upgrade
# Launch the web UI automatically bundled with the core package
agentic-store-webapp
Access it at: http://localhost:8765
Because AgenticStore MCP supports both manual configuration and management via the GUI, you can manually add the configuration snippet to your respective client's config file if you prefer. Remember to restart the client after saving! For an in-depth guide on linking AI agents properly, visit the Client Connection Documentation on agenticstore.dev.
| Client | Config File Path |
|---|---|
| Claude Desktop (Mac) | ~/Library/Application Support/Claude/claude_desktop_config.json |
| Claude Desktop (Win) | %APPDATA%\Claude\claude_desktop_config.json |
| Cursor | ~/.cursor/mcp.json |
| Windsurf | ~/.codeium/windsurf/mcp_config.json |
| VS Code | Appends to your VS Code settings.json under MCP extension config |
Basic Setup:
{
"mcpServers": {
"agentic-store-mcp": {
"command": "agentic-store-mcp",
"args": []
}
}
}
With Web Search (SearXNG) enabled:
{
"mcpServers": {
"agentic-store-mcp": {
"command": "agentic-store-mcp",
"args": [],
"env": {
"SEARXNG_URL": "http://localhost:8080"
}
}
}
}
Analyze, search, and navigate your codebase flawlessly.
| Tool | Capability |
|---|---|
analyze_commits |
Analyze git commit history context (authors, frequency, patterns). |
get_file |
Fetch and read file syntax content straight from GitHub repositories. |
python_lint_checker |
Runs static analysis on Python files (finds bugs, unused imports, structural style). |
search_code |
Blazing-fast full-text code pattern search across local files and GitHub. |
(Requires a GitHub Personal Access Token. Set via GITHUB_TOKEN or MCP Hub).
| Tool | Capability |
|---|---|
create_pr |
Automatically open new internal Pull Requests on GitHub. |
get_repo_info |
Fetch GitHub repo metadata (stars, forks, contributors). |
manage_issue |
Create, update, comment on, and close GitHub issues. |
Agent-driven DevSecOps & Supply Chain Verification.
| Tool | Capability |
|---|---|
code_scanning_alerts |
Retrieve CodeQL and Semgrep security findings from GitHub. |
dependabot_alerts |
Fetch automated dependency vulnerability alerts via Dependabot integration. |
dependency_audit |
Scan packages (requirements.txt, package.json, go.mod) dynamically against the OSV CVE database. |
repo_scanner |
Scan for leaked secrets (API keys), PII leaks, and enforce .gitignore compliance. |
| Tool | Capability |
|---|---|
agentic_web_crawl |
Extract clean markdown text, headings, and SEO metadata signals from any URL. |
agentic_web_search |
Conduct live semantic web searches safely via self-hosted SearXNG. |
Persistent memory and token reduction guarantees LLM agents can hand off work across massive repos over massive chat sessions safely.
| Tool | Capability |
|---|---|
token_optimizer |
NEW: Radically compress code/text before sending to the LLM. Supports three modes (compress, summarize, both) across languages (Python, JS/TS, Go, Rust, Java, C/C++, Shell) by stripping non-functional strings and surfacing structural outlines. Auto-returns saved token metrics. |
context_pruner |
NEW: Recommends exactly which files/data to drop to reduce massive token windows by scoring each item by keyword overlap against your active task description. Never wastes network context overhead. |
restore_session |
Load your entire historical workspace context back from a checkpoint. |
spinup_memory |
Initialize a new project memory directory gracefully. |
update_change_log |
Append structured semantic release notes into CHANGELOG.md. |
update_learnings |
Log technical discoveries into a perpetual, searchable markdown repository. |
update_milestones |
Track exact milestone progression seamlessly as development scales. |
update_plan |
Edit, append, or overhaul your central architectural plan.md. |
| Tool | Capability |
|---|---|
memory_checkpoint |
Save a total snapshot of conversational states, decisions, and immediate plans. |
memory_log |
Append real-time timestamps logs of session activity. |
memory_read |
Fetch structured facts efficiently. |
memory_restore |
Read and restore state configurations from stored checkpoints. |
memory_search |
Full-text contextual search indexing memory databases perfectly. |
memory_write |
Commit persistent JSON facts directly outliving standard LLM chat windows. |
| Tool | Capability |
|---|---|
configure |
Dynamically override runtime configurations and API connectors entirely. |
list_processes |
NEW: Instantly query whether specific software systems are successfully running executing pgrep & lsof bounds across 11 integrated well-known endpoints (e.g Docker, Redis, Postgres, MongoDB, Node, Celery). Return PIDs correctly natively. |
tail_system_logs |
NEW: Smart and efficient log file trailing algorithm (seek-from-end). Never crash context windows on gigabyte log files; reads the minimal context necessary by filtering directly by criteria like 'error' and 'exception' bounding memory footprints cleanly to 1000 lines. |
tool_search |
Retrieve a detailed directory of every available active MCP tool. |
AgenticStore MCP is fully compatible with Claude Code explicitly for terminal workflows, allowing developers full access to the 31 command capacities directly interacting via the command line.
Automatically install the application directly into your ~/.claude/settings.json seamlessly resolving connection bindings. The CLI handles both traditional operation and state-of-the-art intercepting proxy verification cleanly via a dynamic CLI command structure.
Default Mode: (For direct API calling — connects to normal Anthropic models purely without firewall tracking):
agentic-store-mcp --install-claude
~/.claude/settings.json locally.launchctl unsetenv cleanup dropping any stale ANTHROPIC_BASE_URL routing bindings to assure 100% stable connection directly to Anthropic standard APIs.~/.zshrc/~/.bash_profile — new terminals always start completely clean.Firewall Mode: (Pre-validates proxy stability mapping traffic efficiently directly into Prompt Recoding security boundaries protecting enterprise secrets):
agentic-store-mcp --install-claude --firewall-mode
launchctl setenv routing instructions properly writing nc-guarded shell profile blocks into Node.js TLS ANTHROPIC_BASE_URL interception directly into Claude.(Note: --firewall-mode explicitly refuses to run unaccompanied. It requires --install-claude actively passed alongside it).
Run claude mcp add agentic-store-mcp "agentic-store-mcp".
To give your agent internet access, agentic_web_search uses a private SearXNG instance.
If you'd like to use a remote API or host your own container, simply append its URL.
Pass the environment variable to your AI Client:
{
"mcpServers": {
"agentic-store-mcp": {
"command": "agentic-store-mcp",
"args": [],
"env": {
"SEARXNG_URL": "http://localhost:8080"
}
}
}
}
Overriding configs is related to your MCP setup. MCP supports both manual and GUI setup, so you can filter exactly what tools get loaded via environment variables if integrating deeply without the web GUI.
# Debug: List what would be loaded and exit
agentic-store-mcp --list
Note: The LLM Prompt Firewall is exclusively configured via the UI. The firewall is only made available on the UI to ensure smooth setup, robust proxy interception, and seamless prompt recording out of the box.
Internet Disruption After Proxy Use When dealing with the LLM Prompt Firewall proxy, if the server is terminated abruptly, there could be an internet disruption on your machine due to residual system proxy settings.
If you lose internet connection after a crash, run this command in your terminal to restore your proxy to default:
networksetup -setsecurewebproxystate "Wi-Fi" off
Contributions are what make the open-source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you'd like to contribute code or improvements, please fork the repository and create a Pull Request.
⭐ If this toolkit saved you 10 hours of configuration, please give us a star to help others find it!
This project is licensed under the MIT License — free to use, modify, and distribute. See LICENSE for details.
⭐ Manage Everything Easier via the Webapp: agentic-store-webapp
Built with ❤️ by AgenticStore.dev — Open-source AI tooling for everyone.
AgenticStore is built for the Model Context Protocol (MCP Server) ecosystem to provide robust LLM Security, a Prompt Firewall, and proactive AI Data Privacy. It supports comprehensive Data Loss Prevention (DLP) through Prompt Sanitization, Prompt Recording, and Audit Traces for AI Usage. Designed for Autonomous Agents and AI Coding Assistants like Claude Code MCP Integration, Cursor IDE MCP, and Windsurf.
We tackle the hardest scaling problems for modern LLMs natively via LLM Token Compression, context window offloading natively via Context Pruning, structured code processing via Token Optimization, and deep Persistent Agent Memory. Combining deep systemic oversight spanning AI DevSecOps, OSV CVE Dependency Scans, Static Code Analysis, local OS Process Management (via list_processes), dynamic streaming Log File Tailing, and private Agentic Web Search via SearXNG. Scale locally executing reliably with Ollama Integration for unbreachable AI Auditing Requirements.
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"agentic-store-mcp": {
"command": "npx",
"args": []
}
}
}PRs, issues, code search, CI status
Database, auth and storage
Reference / test server with prompts, resources, and tools.
Secure file operations with configurable access controls.