Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 11 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,11 +94,19 @@ Add to your Claude config file (`~/Library/Application Support/Claude/claude_des

### For Other MCP Clients

The package exposes the MCP server entrypoint via `rustchain_mcp.server`.
Configure the node URLs with environment variables, then import and run `mcp`:

```python
from rustchain_mcp import RustChainMCPServer
import os

os.environ["RUSTCHAIN_NODE"] = "https://50.28.86.131"
os.environ["BOTTUBE_URL"] = "https://bottube.ai"
os.environ["BEACON_URL"] = "https://rustchain.org/beacon"

from rustchain_mcp.server import mcp

server = RustChainMCPServer(api_key="your-api-key")
server.run()
mcp.run()
```

## Prerequisites
Expand Down