Skip to content

Commit e2cf2a1

Browse files
committed
updates
1 parent 23c9db9 commit e2cf2a1

File tree

10 files changed

+170
-33
lines changed

10 files changed

+170
-33
lines changed
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
{
2-
"the-graph-assistant": "The Graph Assistant"
2+
"graph-assistant": "Graph Assistant",
3+
"quick-starts": "Quick Starts",
4+
"ai-introduction": "The Graph's AI"
35
}
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
import titles from './_meta-titles.json'
22

33
export default {
4-
'the-graph-assistant': 'The Graph Assistant',
4+
'quick-starts': titles['quick-starts'],
5+
'ai-introduction': titles['ai-introduction'],
6+
'graph-assistant': titles['graph-assistant'],
57
}
Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
---
2+
title: The Graph's AI
3+
---
4+
5+
Build with speed and scale faster with The Graph's AI Suite.
6+
7+
## What is AI on The Graph?
8+
9+
AI on The Graph connects large language models (LLMs) like Claude to onchain data indexed by The Graph. This allows developers to build AI systems that query blockchain data directly using natural language. This eliminates the need to write code or manage infrastructure.
10+
11+
Instead of relying on static datasets or centralized APIs, you can now access live, verifiable blockchain data using [Graph Assistant](/ai-suite/graph-assistant/introduction/), [Subgraph MCP](), [Token API MCP]().
12+
13+
Fetch fast access to accurate, real-time onchain data.
14+
15+
## Why Use Onchain Data with AI?
16+
17+
If you're building with AI in web3, onchain data is necessary. Wallets, tokens, governance, and transactions all live onchain, but are often very difficult to access at scale without an indexing or custom solution.
18+
19+
The Graph solves this by making onchain data available through [Subgraphs]() and [TokenAPI]() via [Graph Assistant]().
20+
21+
### Benefits
22+
23+
- Easy access to data in real-time
24+
- Save time and scale faster
25+
- Fast access to indexed blockchain data
26+
- Verifable answers tied to onchain activity
27+
- Context-aware agents that interact with live data
28+
29+
There's no need to maintain backend infrastructure or manually pull and clean blockchain data.
30+
31+
## Conversational Querying with Graph Assistant
32+
33+
Graph Assistant allows Claude to understand and query The Graph using plain language. You describe what you want, and the assistant translates it into the correct query against a Subgraph or Token API endpoint.
34+
35+
**Example queries:**
36+
37+
- "List top holders of this token by balance."
38+
- "Show GRT transfers to this address in the past 7 days."
39+
- "Get proposals this wallet voted on in May."
40+
41+
[Graph Assistant](/ai-suite/graph-assistant/introduction/) uses the Model-Comprehensible Protocol (MCP) to understand data schemas, identify relevant fields, and return structured results.
42+
43+
You don't need to write GraphQL or study Subgraph schemas manually.
44+
45+
## Why This Matters for Developers
46+
47+
If you need fast access to token data, user behavior, governance activity, or protocol metrics, this stack gives you a direct path. You save time, avoid technical overhead, and can ship faster.
48+
49+
- No custom backend
50+
- No manual querying
51+
- No deep GraphQL knowledge required
52+
53+
You get verifiable blockchain data, ready for use in AI applications, chat interfaces, analytics dashboards, and automation workflows.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
export default {
2+
'quick-start': '',
3+
introduction: '',
4+
'how-to-guide': '',
5+
'faq-graph-assistant': '',
6+
}
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
title: Graph Assistant FAQ
3+
sidebarTitle: 'FAQ'
4+
---
5+
6+
This page summarizes some of the most common questions for developers using Graph Assistant.
7+
8+
1. What is The Graph Assistant?
9+
10+
The Graph Assistant is an AI-powered chat interface that lets you query blockchain data in plain English. Under the hood, it translates your questions into GraphQL calls against Subgraphs and the Token API, then returns results as a table—no coding required.
Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
---
2+
title: How To Use The Graph Assistant
3+
sidebarTitle: 'How-to Guide'
4+
---
5+
6+
## How to Use Graph Assistant
7+
8+
> [!IMPORTANT] All users can process 10 free queries per user per hour
9+
10+
You type a natural language question into the chat interface, such as:
11+
12+
```yaml
13+
"What's the total number of DAI transfers on Optimism last week?"
14+
```
15+
16+
### Behind the Scenes
17+
18+
The assistant:
19+
20+
1. Interprets your intent
21+
2. Maps it to the correct Subgraphs or Token API endpoint
22+
3. Executes optimized queries
23+
4. Returns results as a clean, readable table.
24+
25+
You don't need to write queries or understand a Subgraph's schema, you simply ask.
26+
27+
### Example Use Cases
28+
29+
**Protocol Analytics**
30+
31+
- “Compare daily active users on Aave vs. Compound in May 2025.”
32+
- “Show me the total value locked (TVL) for XYZDAO over the last quarter.”
33+
34+
**Token Insights**
35+
36+
- “What are the top 10 tokens by market cap on Ethereum right now?”
37+
- “How many XYZ did I receive between May 1 and May 15?”
38+
39+
**Historical Data Retrieval**
40+
41+
- “Fetch the token price history of XYZ for the last six months.”
42+
- “What was the average gas price on Ethereum during April?”
43+
44+
**Portfolio Monitoring**
45+
46+
- “List my wallet’s current token balances and their USD equivalents.”
47+
- “Calculate profit/loss on XYZ since xyz date.”
48+
49+
**Cross-Chain Comparison**
50+
51+
- “Show me the 7-day trading volume of XYZ on Ethereum vs. Polygon.”
52+
- “How many XYZ swaps occurred on Arbitrum yesterday?”
53+
54+
To get started follow the [quickstart](/ai-suite/graph-assistant/quick-start/) and explore it's capabilities.

website/src/pages/en/ai-suite/the-graph-assistant/introduction.mdx renamed to website/src/pages/en/ai-suite/graph-assistant/introduction.mdx

Lines changed: 4 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -2,36 +2,15 @@
22
title: Introduction
33
---
44

5-
The Graph Assistant gives instant, code-free access to blockchain data, transforming natural language into precise, AI-powered queries without the need to code.
5+
Graph Assistant gives instant, code-free access to blockchain data, transforming natural language into precise, AI-powered queries without the need to code.
66

77
## Overview
88

9-
### What is The Graph Assistant?
9+
### What is Graph Assistant?
1010

11-
It's an advanced, agentic easy to use interface for querying blockchain data using natural language. It automatically interprets user intent, generates precise queries, executes them via The Graph and Token API, and presents structured, AI-powered answers without requiring any code.
11+
It's an advanced, agentic easy to use interface for querying blockchain data using natural language. It automatically interprets user intent, generates precise queries, executes them via The Graph's Subgraphs and Token API, and presents structured, AI-powered answers without requiring any code.
1212

13-
Unlike traditional dashboards or chatbots, The Graph Assistant simplifies technical complexity and delivers composable insights directly from indexed subgraphs and token datasets.
14-
15-
## How to Use The Graph Assistant
16-
17-
You type a natural language question into the chat interface, such as:
18-
19-
```yaml
20-
"What's the total number of DAI transfers on Optimism last week?"
21-
```
22-
23-
### Behind the Scenes
24-
25-
The assistant:
26-
27-
1. Interprets your intent
28-
2. Maps it to the correct Subgraphs or Token API endpoint
29-
3. Executes optimized queries
30-
4. Returns results as a clean, readable table.
31-
32-
You don't need to write queries or understand a Subgraph's schema, you simply ask.
33-
34-
To get started follow the [quickstart]() and explore it's capabilities.
13+
Unlike traditional dashboards or chatbots, Graph Assistant simplifies technical complexity and delivers composable insights directly from indexed subgraphs and token datasets.
3514

3615
## Core Features
3716

website/src/pages/en/ai-suite/the-graph-assistant/quick-start.mdx renamed to website/src/pages/en/ai-suite/graph-assistant/quick-start.mdx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
title: Quick Start
33
---
44

5-
This guide provides step-by-step instructions for getting started with The Graph AI Assistant quickly.
5+
This guide provides step-by-step instructions for getting started with Graph AI Assistant quickly.
66

77
## Step-by Step
88

99
### Step 1. Create an Account
1010

11-
Go to: (The Graph AI)[thegraph.com/ai]
11+
Go to: (Graph AI)[thegraph.com/ai]
1212

1313
- Click Sign Up (or Log In if you already have an account).
1414
- Use your GitHub or email credentials.
@@ -23,6 +23,8 @@ After logging in:
2323

2424
### Step 3: Ask Your First Question
2525

26+
> [!IMPORTANT] All users can process 10 free queries per user per hour
27+
2628
In the input bar, type a natural-language query (everyday language).
2729

2830
Example:
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
---
2+
title: Start Building with The Graph's AI Suite
3+
sidebarTitle: 'Quick Starts'
4+
---
5+
6+
## Why Model Context Protocols?
7+
8+
- Modular architecture for dapps and LLMs
9+
- Instant setup with smart contract and Subgraph templates
10+
- Native integration with The Graph protocol
11+
- Designed for data-rich, AI-aware, or token-driven applications
12+
13+
## Start Building
14+
15+
### Graph Assistant
16+
17+
[Quickstart]()
18+
19+
### Subgraph MCP
20+
21+
Build indexers with built-in context and schema.
22+
23+
Subgraph MCP gives you fast access to onchain data, optimized for AI consumption and GraphQL queries.
24+
25+
[Quickstart]()
26+
27+
### TokenAPI MCP
28+
29+
Token APIs and data access with one click.
30+
31+
TokenAPI MCP turns your backend or contract into a tokenized service layer. It's ideal for usage gating, monetization, or usage tracking.
32+
33+
[Quickstart]()

website/src/pages/en/ai-suite/the-graph-assistant/_meta.js

Lines changed: 0 additions & 4 deletions
This file was deleted.

0 commit comments

Comments
 (0)