Setup MCP in 2 Minutes
Choose Docker or Python, paste one JSON config, restart your client. Works on macOS, Linux, and Windows. No account. No API keys for core tools.
Install Docker
Skip this step if Docker is already installed. Run docker --version to check.
# macOS — install Docker Desktop
# Download from https://www.docker.com/products/docker-desktop/
# Or via Homebrew:
brew install --cask docker
# Linux (Ubuntu/Debian)
curl -fsSL https://get.docker.com | sh
# Verify
docker --versionPull the Docker image
One command fetches the latest image. No Python required on your machine.
docker pull agenticstore/agentic-store-mcp:latest
# Verify — lists all available tools
docker run --rm agenticstore/agentic-store-mcp:latest --listdocker pull agenticstore/agentic-store-mcp:latest anytime to update.Enable web search optional
agentic_web_search requires SearXNG — a free, self-hosted search engine. Skip this step if you only need web crawling and code tools.
# Create a docker-compose.yml file somewhere
# Download it from the repo (or run curl)
curl -O https://raw.githubusercontent.com/agenticstore/agentic-store-mcp/main/docker-compose.yml
# Start SearXNG
docker compose up -d searxngSearXNG runs at http://localhost:8080 — the MCP server connects to it automatically when you use the web search config below.
Connect your AI client
Pick the config that matches your setup. Paste it into your client's JSON file and restart.
Pick your client in the panel → and paste the config.
Without web search
{
"mcpServers": {
"agenticstore": {
"command": "docker",
"args": ["run", "-i", "--rm", "agenticstore/agentic-store-mcp:latest"]
}
}
}With web search (requires docker compose up -d)
{
"mcpServers": {
"agenticstore": {
"command": "docker",
"args": [
"run", "-i", "--rm",
"--network", "agentic-store-mcp_default",
"-e", "SEARXNG_URL=http://searxng:8080",
"agenticstore/agentic-store-mcp:latest"
]
}
}
}Full setup at Client Setup →
Verify it's working
Ask your AI assistant to list available tools. You should see all five tools.
prompt to your AI
"List all available MCP tools"
expected response includes
python_lint_checkerrepo_scannerdependency_auditagentic_web_crawlagentic_web_searchNote: agentic_web_search appears only if SearXNG is running.
Pick your client
Step 3{
"mcpServers": {
"agenticstore": {
"command": "docker",
"args": ["run", "-i", "--rm", "agenticstore/agentic-store-mcp:latest"]
}
}
}~/Library/Application Support/Claude/claude_desktop_config.json
Seeing "MCP agenticstore: Server disconnected"? See the troubleshooting guide →
What's next
Install globally via pip or uv
If you prefer to have the module installed globally instead of using ephemeral environments:
# Install via uv (recommended)
uv tool install agentic-store-mcp
# Or install via pip
pip install agentic-store-mcp --upgrade
# Start the server
agentic-store-mcp
# Or start the UI dashboard
agentic-store-webappThen point your client config to the executable:
{
"mcpServers": {
"agenticstore": {
"command": "agentic-store-mcp",
"args": []
}
}
}