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.

1

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.

bash
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 --version
[tip]
Already have uv? Skip to Step 2 and run uvx agentic-store-mcp directly.
2

Run the MCP server

No installation needed. uvx downloads and runs the latest version in an isolated environment automatically.

bash
# 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 --list
3

Connect 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 and paste the config. Full setup at Client Setup →

claude_desktop_config.json
{
  "mcpServers": {
    "agenticstore": {
      "command": "uvx",
      "args": ["agentic-store-mcp", "--modules", "code,data"]
    }
  }
}
4

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_checker
repo_scanner
dependency_audit
agentic_web_search

Seeing "MCP agenticstore: Server disconnected"? See the troubleshooting guide →

Run from source

Prefer to clone the repository? This works identically to the uvx approach.

bash
# 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_search

Then point your client config at the local clone:

claude_desktop_config.json
{
  "mcpServers": {
    "agenticstore": {
      "command": "uv",
      "args": ["run", "--directory", "/absolute/path/to/agenticstore-mcp-tools", "server.py"]
    }
  }
}

Installation FAQ