agentic-store-mcp
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.
README
⚡ Agentic Store MCP: Free, Open-Source Tools for AI Agents
<!-- SEO Metadata --> <!-- Keywords: Model Context Protocol, MCP server, AI agents, Claude Desktop MCP, Cursor MCP, open-source MCP tools, Python MCP, self-hosted AI tools, web search MCP, Python lint checker MCP -->
Give your AI agents superpowers with Agentic Store MCP—a collection of free, open-source, and self-hosted tools built on the Model Context Protocol (MCP).
No accounts, no API limits, no subscriptions. Just pure, self-hosted capabilities for your favorite AI assistants.
Fully compatible with: Claude Desktop, Cursor, Windsurf, VS Code, and any other MCP-compatible client.
🚀 Quick Start: Installation
Get started in less than a minute. Choose your preferred environment:
Method 1: Python (Recommended for Developers)
Using uv (the fast Python package installer):
uvx --refresh agentic-store-mcp
Note: The --refresh flag ensures you always run the latest published version.
Need to install uv?
- macOS / Linux:
curl -LsSf https://astral.sh/uv/install.sh | sh - Windows (PowerShell):
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
Method 2: Docker (No Python Required)
docker run --rm agenticstore/agentic-store-mcp:latest --list
🛠️ MCP Tool Directory
Our tools are organized into powerful modules designed to solve specific workflow challenges for AI agents.
🌐 AgenticData Module
Empower your AI to gather real-time information from the web.
-
agentic_web_crawl— Advanced Web Scraper & Crawler- What it does: Fetches any URL and extracts clean page text, SEO metadata, heading structures, links, and images. Handles redirects and encoding automatically.
- Use Case: Let Claude or Cursor read external documentation, scrape competitor sites, or summarize web articles.
- Requirements: None! Works out of the box.
-
agentic_web_search— Private Metasearch Engine- What it does: Searches the web via a self-hosted SearXNG instance. Returns ranked results with titles, URLs, and text snippets.
- Use Case: Give your AI live internet access without paying for search APIs.
- Requirements: Requires a local SearXNG instance (
docker compose up -d).
💻 AgenticCode Module
Give your AI the ability to analyze, lint, and secure codebases autonomously.
-
python_lint_checker— Python Static Analysis- What it does: Checks Python files for imports, bugs, styling issues, and code complexity.
- Use Case: Ask your AI to review your Python code for PEP-8 compliance and logical bugs.
- Requirements: None! Zero external dependencies.
-
repo_scanner— Security & Secret Scanner- What it does: Scans directories for leaked secrets (AWS keys, API tokens), PII (emails, SSNs), and
.gitignoregaps. - Use Case: Run a security audit on your project before committing code to public repositories.
- Requirements: None!
- What it does: Scans directories for leaked secrets (AWS keys, API tokens), PII (emails, SSNs), and
-
dependency_audit— Vulnerability Checker- What it does: Audits package files (
requirements.txt,package.json,go.mod, etc.) for outdated versions and known CVEs using the OSV database. - Use Case: Ask your AI to check if your project's dependencies are secure and up-to-date.
- Requirements: None!
- What it does: Audits package files (
🔌 Connecting to Your AI Client
Add AgenticStore to your MCP client's configuration file to enable the tools, then restart the client.
<details> <summary><h3>🧠 Claude Desktop</h3></summary>
Config locations:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
Python (All Tools)
{
"mcpServers": {
"agentic-store-mcp": {
"command": "uvx",
"args": ["--refresh", "agentic-store-mcp"]
}
}
}
Docker (All Tools)
{
"mcpServers": {
"agentic-store-mcp": {
"command": "docker",
"args": ["run", "-i", "--rm", "agenticstore/agentic-store-mcp:latest"]
}
}
}
(Check the bottom of this section for SearXNG setup instructions if you want web search enabled!)
</details>
<details> <summary><h3>💻 Cursor</h3></summary>
Config location: ~/.cursor/mcp.json
Python (All Tools)
{
"mcpServers": {
"agentic-store-mcp": {
"command": "uvx",
"args": ["--refresh", "agentic-store-mcp"]
}
}
}
</details>
<details> <summary><h3>🏄 Windsurf</h3></summary>
Config location: ~/.codeium/windsurf/mcp_config.json
(Configuration is identical to the Cursor setup above.)
</details>
<details> <summary><h3>📝 VS Code (MCP Extension)</h3></summary>
(Configuration is identical to the Cursor setup above.)
</details>
🔎 Enabling Web Search (agentic_web_search)
To use the web search tool, you need a running SearXNG instance.
- Start SearXNG via Docker:
git clone https://github.com/agenticstore/agentic-store-mcp cd agentic-store-mcp docker compose up -d - Update your MCP config with the
SEARXNG_URLenvironment variable:
Python users:
{
"mcpServers": {
"agentic-store-mcp": {
"command": "uvx",
"args": ["--refresh", "agentic-store-mcp"],
"env": { "SEARXNG_URL": "http://localhost:8080" }
}
}
}
Docker users:
{
"mcpServers": {
"agentic-store-mcp": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--network",
"agentic-store-mcp_default",
"-e",
"SEARXNG_URL=http://searxng:8080",
"agenticstore/agentic-store-mcp:latest"
]
}
}
}
🎛️ Advanced Usage & CLI Flags
Filter which tools or modules your AI has access to using the CLI:
uvx --refresh agentic-store-mcp # Run all tools
uvx --refresh agentic-store-mcp --modules code # Only load AgenticCode
uvx --refresh agentic-store-mcp --modules data # Only load AgenticData
uvx --refresh agentic-store-mcp --tools agentic_web_search # Only load a specific tool
uvx --refresh agentic-store-mcp --list # List all available tools and exit
🏗️ Programmatic Usage (Python)
Integrate these MCP tools directly into your own LangChain, LlamaIndex, or custom AI python scripts:
from agentic_store_mcp import start_server
start_server() # Load all tools
start_server(modules=["code", "data"]) # Load multiple categories
start_server(tools=["agentic_web_search"]) # Load a single tool
🤝 Contributing & Community
We welcome contributions! To add a new tool:
- Ensure the tool is pure Python (no external managed services, completely self-hosted).
- Create your tool under
agentic_store_mcp/modules/<category>/<tool_name>/containing:handler.pyschema.jsonREADME.mdtest_handler.py
- Run tests locally using
uv run pytest.
📜 License & Support
This project is licensed under the MIT License — free to use, modify, and distribute.
⭐ Enjoying Agentic Store MCP? If you find these tools useful, please star this repository on GitHub to help other developers discover free, open-source MCP tools for their AI workflows!
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。
mcp-server-qdrant
这个仓库展示了如何为向量搜索引擎 Qdrant 创建一个 MCP (Managed Control Plane) 服务器的示例。