Query blockchain data from Allium Explorer using MCP. Ideal for AI agents using LangGraph, LangChain, or streamable-http.
https://mcp.allium.so
Tool Name | Description |
---|---|
explorer_run_query | Run a saved Explorer query using its query_id . Supports parameterization. |
explorer_run_sql | Run a raw SQL string directly against Allium’s production datasets. |
explorer_search_schemas | Semantic search across all schema docs. Returns relevant table IDs. |
explorer_fetch_schema | Fetch YAML schema metadata by table IDs (full table name, e.g. ethereum.raw.blocks ). |
ethereum.raw.token_transfers
). Use search before fetching.explorer_run_query
)query_id
explorer_run_query
tool:content.text
with:
sql
: the full query textdata
: result rowsmeta.columns
: column names and typesqueried_at
: execution timestampexplorer_run_sql
)explorer_run_query
.
explorer_search_schemas
)explorer_fetch_schema
)explorer_fetch_schema
and explorer_search_schemas
the same way.
mcp-remote
/ Local CLIstreamable-http
or other CLI-based setups:
content.text
string as JSON to extract:
sql
: Full query stringdata
: List of result rows (objects)meta.columns
: Each column’s name + data typequeried_at
: ISO timestampexplorer_run_query
).