Start
5-minute Quick Start
Understand Apogee MCP, pick a client, connect with auth none, discover tools, and call scan_token.
1 — Understand Apogee MCP
Apogee is a Streamable HTTP MCP server for Robinhood Chain (EIP-155 4663). The model does not magically know chain data. The server exposes callable tools. Canonical URL: https://apogeemcp.digital/api/mcp (alias https://apogeemcp.digital/mcp). Authentication: none.
2 — Choose a client
- Cursor — .cursor/mcp.json. One-click install, or Settings → MCP
- Claude — Connectors. Settings → Connectors → Add custom connector
- ChatGPT — Apps & Connectors. Enable Developer Mode, then Add connector
- Grok — Connectors. grok.com → Connectors → Add custom connector
- Claude Code — CLI. claude mcp add --transport http apogee <url>
- VS Code — .vscode/mcp.json. MCP: Add Server
- Windsurf — ~/.codeium/windsurf/mcp_config.json. Windsurf MCP settings
- Codex CLI — ~/.codex/config.toml. [mcp_servers.apogee] url = ...
Apogee does not ship a native SDK. Any host that can POST JSON-RPC to a Streamable HTTP MCP URL can connect.
3 — Configure the connection
.cursor/mcp.json
{
"mcpServers": {
"apogee": {
"url": "https://apogeemcp.digital/api/mcp"
}
}
}VS Code mcp.json
{
"servers": {
"apogee": {
"type": "http",
"url": "https://apogeemcp.digital/api/mcp"
}
}
}Claude Code
claude mcp add --transport http apogee https://apogeemcp.digital/api/mcp
Codex CLI
[mcp_servers.apogee] url = "https://apogeemcp.digital/api/mcp"
4 — Authenticate
There is no API key, OAuth, or bearer requirement on the live server. CORS allows authorization headers for hosts that send them, but Apogee ignores them. Do not paste private keys into MCP config.
5 — Discover tools
tools/list
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}tools/list returns 58 listed tools. 3000 catalog operations (including aliases like scan_NVDA) are reached with search_catalog and run_tool.
6 — Call your first tool
scan_token
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "scan_token",
"arguments": {
"query": "NVDA"
}
}
}REST equivalent: GET /api/v1/scan_token?query=NVDA. Responses are live JSON. This page does not invent sample prices.
7 — Build something
POSTs initialize and tools/list to this origin’s /api/mcp. No API key.