thegraph-mcp
Provides tools to find and query indexed blockchain data for the Ethereum network via The Graph subgraphs, enabling access to data from protocols like Uniswap and Aave.
Facilitates searching for subgraphs, retrieving GraphQL schemas, and executing GraphQL queries to interact with indexed blockchain data on The Graph Network.
TheGraph MCP Server
An MCP server that powers AI agents with indexed blockchain data from The Graph.
Available Tools
1. searchSubgraphs
Searches for subgraphs on The Graph Network by name or description. Uses the Network Subgraph's full-text search to find matching subgraphs, returning a list sorted by signal amount (highest first). Results include the subgraph's GraphQL schema, so agents can go directly from discovery to querying without a separate schema fetch.
Parameters:
searchQuery: The search term to find matching subgraphs (e.g., "uniswap", "aave", "ENS")
2. getSubgraphSchema
Fetches the schema of a specified subgraph, providing AI agents with the context needed to generate GraphQL queries.
Parameters:
subgraphId: The subgraph ID (e.g., "QmZBQcF...")asText: Output format flagtrue: Returns human-readable GraphQL schemafalse: Returns JSON schema (default)
3. querySubgraph
Executes GraphQL queries against a specified subgraph. While queries are typically generated by AI, you can also manually craft your own.
Parameters:
subgraphId: The subgraph IDquery: GraphQL query string
Related MCP server: crypto-projects-mcp
Installation
Install uv (if not already installed)
curl -LsSf https://astral.sh/uv/install.sh | shClone the Repository
git clone https://github.com/Data-Nexus-Web3/thegraph-mcp.gitGet an API Key
Sign up at The Graph Studio to get an API key (free for the first 100k queries)
Add the MCP Server
Claude Code:
claude mcp add -e THEGRAPH_API_KEY=your_api_key_here thegraph-mcp -- uv --directory path/to/thegraph-mcp run main.pyClaude Desktop / Other MCP Clients:
Add the following to your client's MCP config file (e.g.
claude_desktop_config.json):{ "mcpServers": { "thegraph-mcp": { "command": "uv", "args": ["--directory", "path/to/thegraph-mcp", "run", "main.py"], "env": { "THEGRAPH_API_KEY": "your_api_key_here" } } } }
Example Prompts
Here are some natural language prompts to trigger the tools:
Subgraph Discovery
"Find me a subgraph for Uniswap on Ethereum"
"Search for Aave subgraphs"
"What subgraphs are available for ENS?"
Schema Queries
"Show me the schema for the Uniswap V3 Ethereum subgraph in a readable format"
"What entities and fields are available in the Aave V3 subgraph?"
"I need to understand the data model of subgraph QmZBQcF..., can you fetch its schema?"
Data Queries
"Find the top 5 tokens by trading volume in the last 24 hours on Uniswap V3 Ethereum"
"Show me all pairs with liquidity greater than 1 million USD on Uniswap"
"Get the latest 10 swap events from subgraph QmZBQcF..., including token symbols and amounts"
Analysis Tasks
"What is the highest APR market on Aave mainnet?"
"Compare the liquidity of ETH and USDC pairs on Uniswap Ethereum"
"Find the most active lending markets on Aave by deposit volume"
Combined Tasks
"Find a Uniswap subgraph on Ethereum, check its schema, then help me write a query to find high-value swaps"
"What data can I get from Aave on Ethereum? Show me the schema and then query the top markets by TVL"
"Using subgraph QmZBQcF..., analyze the market impact of large trades by first understanding the schema and then querying relevant events"
License
This project is licensed under the MIT License. See the LICENSE file for details.
Available Tools
3 toolsgetSubgraphSchemaB
Fetch the schema of a specified subgraph using GraphQL introspection.
Args: subgraphId (str): The ID of the subgraph to query. asText (bool): If True, return schema as GraphQL text; otherwise, return JSON.
Returns: str: Schema in JSON or GraphQL text format, or an error message.
| Name | Required | Description | Default |
|---|---|---|---|
| subgraphId | Yes | ||
| asText | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It mentions the tool fetches schema via GraphQL introspection and returns data in JSON or text format, but doesn't cover critical aspects like error handling (e.g., what happens if the subgraphId is invalid), authentication needs, rate limits, or whether it's a read-only operation. This leaves significant gaps for an agent to understand its behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured and front-loaded with the core purpose, followed by clear sections for arguments and returns. Every sentence adds value: the first explains the tool's function, and the subsequent lines detail parameters and output without redundancy. It's appropriately sized for a tool with two parameters.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's moderate complexity (2 parameters, no output schema, no annotations), the description is adequate but incomplete. It covers the basic purpose and parameters effectively, but lacks details on behavioral aspects like error conditions or usage context. Without annotations or output schema, it doesn't fully equip an agent for reliable invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description adds substantial meaning beyond the input schema, which has 0% description coverage. It explains that 'subgraphId' identifies the subgraph to query and 'asText' controls the output format (JSON vs. GraphQL text), clarifying the purpose and effect of each parameter. This compensates well for the lack of schema descriptions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Fetch the schema of a specified subgraph using GraphQL introspection.' It specifies the verb ('fetch'), resource ('schema of a specified subgraph'), and method ('GraphQL introspection'), but doesn't explicitly differentiate from sibling tools like 'querySubgraph' or 'searchSubgraphs' beyond the schema focus.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives like 'querySubgraph' or 'searchSubgraphs'. It lacks context about prerequisites, such as whether the subgraph must exist or be accessible, and doesn't mention any exclusions or specific scenarios for its use.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
querySubgraphA
Execute a GraphQL query against a specified subgraph.
Args: subgraphId (str): The ID of the subgraph to query. query (str): The GraphQL query string to execute.
Returns: str: Query result in JSON format, or an error message.
| Name | Required | Description | Default |
|---|---|---|---|
| subgraphId | Yes | ||
| query | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It mentions that the tool returns 'Query result in JSON format, or an error message,' which adds some context about output behavior. However, it lacks details on authentication needs, rate limits, performance characteristics, or what happens on invalid inputs, which are important for a mutation-like query execution tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is appropriately sized and front-loaded with the main purpose in the first sentence. The Args and Returns sections are structured clearly, but the formatting with markdown-like sections could be slightly more concise if integrated into a single paragraph.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complexity of executing GraphQL queries, no annotations, no output schema, and 2 parameters, the description is moderately complete. It covers the basic purpose and parameters but lacks details on error types, response structure beyond 'JSON format,' and integration with sibling tools, leaving gaps for effective agent use.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description adds meaning beyond the input schema by explaining that 'subgraphId' is 'The ID of the subgraph to query' and 'query' is 'The GraphQL query string to execute.' With 0% schema description coverage, this compensates well by clarifying the purpose of each parameter, though it doesn't specify format constraints or examples.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Execute a GraphQL query against a specified subgraph.' This includes a specific verb ('Execute'), resource ('GraphQL query'), and target ('specified subgraph'), which distinguishes it from sibling tools like getSubgraphSchema (which retrieves schema) and searchSubgraphs (which searches for subgraphs).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage by specifying it's for executing GraphQL queries, but it doesn't explicitly state when to use this tool versus alternatives like getSubgraphSchema or searchSubgraphs. There's no guidance on prerequisites, error handling, or specific contexts where this tool is preferred over others.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
searchSubgraphsC
Search for subgraphs on The Graph Network by name or description.
Args: searchQuery (str): The search term to find matching subgraphs.
Returns: str: A concise list of matching subgraphs with their IDs, names, networks, and signal, or an error message.
| Name | Required | Description | Default |
|---|---|---|---|
| searchQuery | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It mentions the tool returns 'a concise list of matching subgraphs with their IDs, names, networks, and signal, or an error message,' which gives some output context. However, it lacks details on rate limits, authentication needs, pagination, error conditions beyond generic 'error message,' or whether it's read-only (implied but not stated). For a search tool with zero annotation coverage, this is insufficient.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured and front-loaded with the core purpose, followed by Args and Returns sections. It uses clear, efficient language with no redundant information. However, the Returns section could be more concise by integrating details into the main description, and some sentences (e.g., 'or an error message') are slightly verbose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's low complexity (one parameter, no output schema, no annotations), the description is minimally adequate. It covers the basic purpose and output format but lacks depth in usage guidelines, behavioral details, and parameter semantics. For a search tool interacting with a network, more context on limitations or typical use cases would improve completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description adds minimal semantic value beyond the input schema. It states 'searchQuery (str): The search term to find matching subgraphs,' which clarifies the parameter's purpose but doesn't provide format examples, constraints (e.g., length, special characters), or search behavior (e.g., partial matches, case sensitivity). With 0% schema description coverage and only one parameter, this meets the baseline but doesn't compensate for the coverage gap.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Search for subgraphs on The Graph Network by name or description.' It specifies the action (search), resource (subgraphs), and scope (The Graph Network). However, it doesn't explicitly differentiate from sibling tools like 'getSubgraphSchema' or 'querySubgraph' beyond the search focus.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It mentions searching by name or description but doesn't specify scenarios where this is preferred over sibling tools like 'getSubgraphSchema' (likely for schema retrieval) or 'querySubgraph' (likely for querying data). No prerequisites, exclusions, or comparative context are provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
3 tool updates
v0.1.0- First observed
getSubgraphSchema - First observed
querySubgraph - First observed
searchSubgraphs
TDQS
Each tool has a clearly distinct purpose: getSubgraphSchema retrieves schema metadata, querySubgraph executes queries, and searchSubgraphs finds subgraphs. There is no overlap in functionality, making tool selection unambiguous for an agent.
All tool names follow a consistent verb_noun pattern with camelCase styling (getSubgraphSchema, querySubgraph, searchSubgraphs). The naming is predictable and readable throughout the set.
With only 3 tools, the set feels thin for a GraphQL subgraph interaction server. While the core operations are covered, additional tools for mutations, subscriptions, or subgraph management could enhance completeness, placing it in the borderline range.
The tools cover essential read operations (schema fetching, querying, searching) well, but there are minor gaps such as lacking mutation support or subgraph lifecycle management (e.g., create/update/delete). Agents can work around these for basic querying tasks.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
MCP server connecting AI agents to non-custodial staking data across 130+ networks.
MCP server giving AI agents one-connection access to crypto & DeFi data: DeFi protocol TVL, stableco
The Graph MCP — indexed blockchain data via subgraph GraphQL queries
MCP server for building and testing AI agents with multi-model experimentation and insights.
Related MCP Servers
AlicenseCqualityCmaintenanceAn MCP server providing unified access to blockchain operations, bridging, swapping, and crypto trading strategies for AI agents.37178GPL 3.0- AlicenseBqualityFmaintenanceAn MCP server that provides cryptocurrency project data to AI agents11MIT
- AlicenseAqualityDmaintenanceAn MCP server that provides AI agents with real-time access to DEX liquidity pool data, enabling smarter trading, analytics, and automated strategies.101MIT
- AlicenseAqualityDmaintenanceThe first blockchain & cryptocurrency MCP server that connects AI agents to Ethereum, Solana, Bitcoin, and cryptocurrency markets.916MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Data-Nexus-Web3/thegraph-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server