Setup MCP in 2 Minutes
Install uv, run one command, paste one JSON config. Works on macOS, Linux, and Windows. No account. No API keys for core tools.
Install uv
uv is the only dependency you need — a fast Python package runner that manages isolated environments automatically. Everything else is handled for you.
curl -LsSf https://astral.sh/uv/install.sh | sh
#update your PATH for the current terminal session
source $HOME/.local/bin/env
# Verify the install
uv --versionuvx agentic-store-mcp directly.Run the MCP server
No installation needed. uvx downloads and runs the latest version in an isolated environment automatically.
# All tools — recommended for first run
uvx agentic-store-mcp
# AgenticCode only (lint, scan, audit)
uvx agentic-store-mcp --modules code
# AgenticData only (web search)
uvx agentic-store-mcp --modules data
# See all available tools
uvx agentic-store-mcp --listConnect your AI client
Add the config to your AI client's JSON file, then restart the client. The server communicates over stdio and starts automatically on launch.
Pick your client in the panel → and paste the config.
Pick your client and paste the config. Full setup at Client Setup →
{
"mcpServers": {
"agenticstore": {
"command": "uvx",
"args": ["agentic-store-mcp", "--modules", "code,data"]
}
}
}Verify it's working
Ask your AI assistant to list the available tools. You should see all four tools from AgenticStore.
prompt to your AI
"List all available MCP tools"
expected response includes
python_lint_checkerrepo_scannerdependency_auditagentic_web_searchPick your client
Step 3{
"mcpServers": {
"agenticstore": {
"command": "uvx",
"args": ["agentic-store-mcp", "--modules", "code,data"]
}
}
}~/Library/Application Support/Claude/claude_desktop_config.json
Seeing "MCP agenticstore: Server disconnected"? See the troubleshooting guide →
What's next
Run from source
Prefer to clone the repository? This works identically to the uvx approach.
# 1. Clone the repo
git clone https://github.com/pavndutt/agenticstore-mcp-tools
cd agenticstore-mcp-tools
# 2. Install dependencies
uv sync
# 3. Start the server
uv run server.py
# With specific modules or tools
uv run server.py --modules code,data
uv run server.py --tools agentic_web_searchThen point your client config at the local clone:
{
"mcpServers": {
"agenticstore": {
"command": "uv",
"args": ["run", "--directory", "/absolute/path/to/agenticstore-mcp-tools", "server.py"]
}
}
}