6 months ago
The Agentipy MCP Server is an open-source Model Context Protocol (MCP) server that enables Claude AI to interact with the Solana blockchain. It provides a standardized interface for AI agents to perform various blockchain operations, including transactions, wallet management, and data queries.
Server Config
{
"mcpServers": {
"agentipy": {
"command": "/path/to/your/run_mcp.sh",
"env": {
"RPC_URL": "your_solana_rpc_url_here",
"SOLANA_PRIVATE_KEY": "your_private_key_here",
"OPENAI_API_KEY": "your_openai_api_key",
"ALLORA_API_KEY": "your_allora_api_key",
"COINGECKO_PRO_API_KEY": "your_coingecko_api_key"
},
"disabled": false,
"autoApprove": [
"GET_BALANCE",
"GET_PRICE_PREDICTION"
]
}
}
}