Metadata-Version: 2.4
Name: pokt-agent-mcp
Version: 1.0.1
Summary: AI agents that reason about and interact with 52 blockchains — via Model Context Protocol
Author: PocketAgent Contributors
License-Expression: MIT
Project-URL: Homepage, https://github.com/Jayanng/PocketAgent
Project-URL: Repository, https://github.com/Jayanng/PocketAgent
Project-URL: Issues, https://github.com/Jayanng/PocketAgent/issues
Keywords: pocket-network,blockchain,mcp,model-context-protocol,ai-agent,multi-chain,rpc,web3,solana,cosmos,sui,near,tron
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: >=3.11
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: mcp<2.0.0,>=1.28.0
Requires-Dist: httpx<0.28.0,>=0.27.0
Requires-Dist: pydantic<3.0.0,>=2.13.0
Requires-Dist: pydantic-settings<3.0.0,>=2.14.2
Requires-Dist: aiosqlite<0.23.0,>=0.22.1
Requires-Dist: cryptography<50.0.0,>=49.0.0
Requires-Dist: cachetools<8.0.0,>=7.1.4
Requires-Dist: openai<3.0.0,>=2.43.0
Requires-Dist: web3<8.0.0,>=7.16.0
Requires-Dist: eth-account<0.14.0,>=0.13.7
Requires-Dist: solders<0.28.0,>=0.27.1
Requires-Dist: tronpy<0.7.0,>=0.6.2
Requires-Dist: cosmpy<0.13.0,>=0.12.2
Requires-Dist: py-near<1.3.0,>=1.2.22
Requires-Dist: pysui<0.66.0,>=0.65.0
Provides-Extra: api
Requires-Dist: fastapi<0.139.0,>=0.138.0; extra == "api"
Requires-Dist: uvicorn<0.50.0,>=0.49.0; extra == "api"
Requires-Dist: python-dotenv<2.0.0,>=1.0.0; extra == "api"
Provides-Extra: test
Requires-Dist: pytest>=8.0.0; extra == "test"
Requires-Dist: pytest-asyncio>=0.23.0; extra == "test"
Dynamic: license-file

# pokt-agent-mcp

**MCP server for 52 blockchains via [Pocket Network](https://www.pokt.network/) decentralized RPC.**

Install the package to add PocketAgent's 51 blockchain tools, 5 resources, and 4 prompts to Claude Desktop, Cursor, Codex, or any MCP stdio client.

## Install

```bash
pip install pokt-agent-mcp
```

Optional REST API dependencies (FastAPI + Uvicorn):

```bash
pip install "pokt-agent-mcp[api]"
```

## Run

After install, MCP clients should launch the console script (stdio):

```bash
pocketagent-mcp
```

Equivalent module invocation:

```bash
python -m pocketagent.mcp_server.server
```

## Claude Desktop / Cursor config

```json
{
  "mcpServers": {
    "pocketagent": {
      "command": "pocketagent-mcp",
      "env": {
        "OPENAI_API_KEY": "sk-...",
        "ENCRYPTION_KEY": "...",
        "JWT_SECRET": "..."
      }
    }
  }
}
```

## Full platform

This package ships the **MCP server and tool layer**. The full PocketAgent platform (Next.js UI, agent management, chat) lives in the [PocketAgent repository](https://github.com/Jayanng/PocketAgent).

Documentation: [docs/mcp-server.md](https://github.com/Jayanng/PocketAgent/blob/main/docs/mcp-server.md)
