Package v1.0.1
Installation
Install the pokt-agent-mcp PyPI package or build from the PocketAgent repository.
Requirements
Python 3.11 or newer. A compatible MCP stdio client (Claude Desktop, Cursor, Codex, etc.).
PyPI install (recommended)
pip install pokt-agent-mcpPublished on PyPI. The import namespace remains pocketagent; the console script is pocketagent-mcp.
Optional REST API extras
pip install "pokt-agent-mcp[api]"Includes FastAPI and Uvicorn if you want to run the full backend from the installed package.
Install from source
git clone https://github.com/Jayanng/PocketAgent.git
pip install ./PocketAgent/backendEquivalent to the PyPI package but tracks the latest main branch.
Verify installation
pocketagent-mcp --help
python -c "from pocketagent.tools import TOOL_REGISTRY; print(len(TOOL_REGISTRY), 'tools')"You should see 51 registered tools.
Package mapping
| Surface | Name |
|---|---|
| PyPI package | pokt-agent-mcp |
| Python import | pocketagent |
| CLI entry point | pocketagent-mcp |
| MCP server key | pocketagent |
Do not run MCP manually in production
The stdio server is designed to be spawned by your MCP client. Running it in a terminal without a connected client will block until disconnect.