search_token
TokenREAD ONLYSearch Robinhood Chain tokens, pools, and canonical Stock Tokens by ticker, name, or 0x address.
- Required
- query
- Optional
- none
- Safety
- Retrieves public chain or market data. Does not sign, broadcast, or move funds.
- Freshness
- Provider or chain read at request time unless noted. Do not cache indefinitely.
- Permissions / rate limits
- Auth none. Every listed tool is callable without credentials. High-impact helpers still require a local wallet signature to take effect. 180 HTTP requests / 60 seconds / client IP / process.
- Output
- No JSON Schema output is published. Successful MCP calls return JSON as structuredContent (and a text copy). Failures use { ok: false, error } or MCP isError. Sample numbers are not fabricated here — call the live tool.
- Errors
- Unknown tool → HTTP 404 / Unknown tool. Missing or unresolvable arguments → { ok: false, error }. Upstream provider failures surface as error strings.
Example MCP request
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "search_token",
"arguments": {
"query": "NVDA"
}
}
}Input schema
{
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Ticker, name, or contract address"
}
},
"required": [
"query"
]
}REST GET https://apogeemcp.digital/api/v1/search_token?query=NVDA