Two MCP tools. Markowitz mean-variance optimization across the live Solana meme token universe. Real wallet metrics on demand. Connect once, query always.
Each call proxies directly to the ChainAware Portfolio API. All optimization, price fetching, and Solana RPC work happens server-side.
// response { "portfolio": [ { "symbol": "BONK", "chain": "SOLANA", "weight": 15.4, "annual_return": 320.5, "annual_volatility": 210.3, "sharpe_ratio": 1.52, "sortino_ratio": 2.10 } ], "portfolio_metrics": { "total_tokens": 10, "annual_return": 280.0, "sharpe_ratio": 1.47, "total_weight": 100.0 } }
// response { "token_metrics": [ { "symbol": "BONK", "balance": 1500000, "price": 0.000021, "value": 31.5, "metrics": { "weight": 12.3, "sharpe_ratio": 1.51, "sortino_ratio": 2.05 } } ], "portfolio_metrics": { "annual_return": 275.0, "sharpe_ratio": 1.46 } }
One JSON block in your MCP client config. No auth setup, no SDKs, no session state to manage.
Add the server under mcpServers in your Claude Desktop config file, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.json{
"mcpServers": {
"meme-portfolio": {
"type": "streamable-http",
"url": "https://mcp.chainaware.ai/mcp"
}
}
}
Register the server via the CLI. The tools are available in the next session — no restart needed.
# register the MCP server claude mcp add meme-portfolio \ --transport streamable-http \ https://mcp.chainaware.ai/mcp
Guides on portfolio theory, risk management, and Solana memecoin selection — the concepts this API puts to work.