Skip to content

Commit 31815be

Browse files
Removing AI standalone section, moving MCP/Skills to product sections, updated About page
1 parent 3429e5f commit 31815be

19 files changed

Lines changed: 60 additions & 39 deletions

File tree

nginx.conf

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,12 @@ http {
168168
rewrite ^/docs/en/supported-networks/near/$ $scheme://$http_host/docs/en/subgraphs/cookbook/near/ permanent;
169169
rewrite ^/docs/en/tap/$ $scheme://$http_host/docs/en/indexing/tap/ permanent;
170170
rewrite ^/docs/en/tokenomics/$ $scheme://$http_host/docs/en/resources/tokenomics/ permanent;
171+
rewrite ^/docs/en/ai-suite/ai-introduction/$ $scheme://$http_host/docs/en/ai-overview/ permanent;
172+
rewrite ^/docs/en/ai-suite/subgraph-skills/$ $scheme://$http_host/docs/en/subgraphs/skills/ permanent;
173+
rewrite ^/docs/en/ai-suite/subgraph-mcp/$ $scheme://$http_host/docs/en/subgraphs/subgraph-mcp/ permanent;
174+
rewrite ^/docs/en/ai-suite/substreams-skills/$ $scheme://$http_host/docs/en/substreams/skills/ permanent;
175+
rewrite ^/docs/en/ai-suite/substreams-mcp/$ $scheme://$http_host/docs/en/substreams/substreams-mcp/ permanent;
176+
rewrite ^/docs/en/ai-suite/$ $scheme://$http_host/docs/en/ai-overview/ permanent;
171177

172178
# Token API redirects
173179
rewrite ^/docs/en/token-api/quick-start/$ https://app.pinax.network/docs/api/ permanent;

website/src/layout/Layout.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,9 @@ export default function Layout({ pageOpts, children }: NextraThemeLayoutProps<Fr
180180
if (routeWithoutLocale === '/about' || routeWithoutLocale.startsWith('/about/')) {
181181
return <TheGraph alt="" />
182182
}
183+
if (routeWithoutLocale === '/ai-overview' || routeWithoutLocale.startsWith('/ai-overview/')) {
184+
return <TheGraph alt="" />
185+
}
183186
if (routeWithoutLocale === '/supported-networks' || routeWithoutLocale.startsWith('/supported-networks/')) {
184187
return <Stack alt="" variant={selected ? 'fill' : 'regular'} />
185188
}

website/src/pages/en/about.mdx

Lines changed: 38 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -5,35 +5,56 @@ description: This page summarizes the core concepts and basics of The Graph Netw
55

66
## What is The Graph?
77

8-
The Graph is a decentralized protocol for indexing and querying blockchain data across [60+ networks](/supported-networks/).
8+
The Graph is a suite of blockchain data infrastructure products that extract, process, and deliver scalable blockchain data solutions across 60+ networks. The Graph enables application developers, data analysts, AI agents, and enterprise teams that need structured, reliable, and real-time access to blockchain data. Products include Subgraphs, Substreams, and Amp. As of early 2026, The Graph has served over 1.27 trillion queries to more than 75,000 projects, powered by 50+ independent Indexer nodes worldwide. To learn more about The Graph from a non-technical perspective, visit [The Graph Overview](https://thegraph.com/what-is-the-graph/).
99

10-
Its data services include:
10+
## The Graph's Core Products:
1111

12-
- [Subgraphs](/subgraphs/developing/subgraphs/): Open APIs to query blockchain data that can be created or queried by anyone.
13-
- [Substreams](/substreams/introduction/): High-performance data streams for real-time blockchain processing, built with modular components.
12+
- [Subgraphs](/subgraphs/developing/subgraphs/): Custom open APIs that extract data from a blockchain, process it, and serve it via GraphQL. The original and most widely used data service on The Graph.
13+
- [Substreams](/substreams/introduction/): A parallel blockchain indexing technology for high-performance, real-time data streams. Built for use cases that need faster sync and larger throughput than traditional Subgraphs.
14+
- [Amp](https://ampup.sh/docs): A blockchain-native database designed to transform onchain activity into enterprise-ready datasets with built-in compliance, auditability, and verifiability.
1415

15-
### Why Blockchain Data is Difficult to Query
16+
## Why Blockchain Data is Difficult to Index
1617

17-
Reading data from blockchains requires processing smart contract events, parsing metadata from IPFS, and manually aggregating data.
18+
Blockchains are optimized for writing and verifying transactions, not for reading or analyzing them. This makes indexing on-chain data harder than it looks:
1819

19-
The result is slow performance, complex infrastructure, and scalability issues.
20+
- **No relational structure:** Data is stored as an append-only chain of blocks with no tables, indices, or relationships. Answering "all transfers for this user" means scanning the chain block by block, which is slow and resource intensive.
21+
- **State isn't readable in useful forms:** Contract data lives in low-level storage slots and event logs, which must be reconstructed into meaningful application-readable format.
22+
- **No query language:** Blockchains expose only low-level RPC methods (`eth_getLogs`, `eth_call`), with no native way to filter, aggregate, sort, or join.
23+
- **Historical data needs archive nodes:** Querying past state requires expensive archive nodes, since most nodes prune historical data.
24+
- **Data is fragmented:** Real applications scatter data across many contracts and events that were never designed to be joined together.
25+
26+
Doing this processing on demand is slow, and it forces every developer to build and maintain their own indexing infrastructure.
2027

2128
## How The Graph Solves This
2229

23-
The Graph uses a combination of cutting-edge research, core dev expertise, and independent Indexers to make blockchain data accessible for developers.
30+
The Graph is a modular protocol whose data services each specialize in a different class of blockchain data problem. Rather than forcing every use case through a single tool, the protocol lets developers choose the right product or service for their use case:
31+
32+
- **Specialized data services for specific use cases:** The protocol supports a spectrum of data services, each optimized for a distinct need. A team can use one service for custom application APIs, another for high-throughput streaming, and another for compliance-grade analytics, all secured by the same network.
33+
- **Subgraphs for resilient, decentralized APIs:** Subgraphs define exactly which contracts, events, and entities to index and how to transform raw on-chain data into structured entities queryable via GraphQL. Because a global network of Indexers serves this data, Subgraphs offer resilience and geographic diversification, with no single point of failure.
34+
- **Substreams for real-time scale:** Substreams use parallelized, streaming data processing to index at high throughput and deliver onchain data with low latency. This scales indexing far beyond sequential processing and powers real-time use cases such as live liquidity and trading data.
35+
- **Amp for verifiability and auditability:** Amp provides verifiable, enterprise-grade access to on-chain data with built-in audit trails, meeting the auditability and compliance requirements of regulated institutions.
36+
37+
The result: raw, hard-to-access on-chain data becomes fast, structured, and ready to power applications—from a single dapp to institutional-scale systems.
38+
39+
## Find the right product for your use case:
40+
41+
### 1. Subgraphs: Custom APIs for Developers
42+
43+
**Use Cases:** Best when an application needs its own structured, queryable data (specific contracts, events, entities) via an opinionated API. Ideal for DeFi dashboards, NFT marketplaces, governance UIs, and most dapp frontends.
2444

25-
Find the perfect data service for you:
45+
- [Explore existing Subgraphs](https://thegraph.com/explorer)
46+
- [Build a Subgraph](/subgraphs/quick-start)
2647

27-
### 1. Custom APIs for web3 Developers
48+
### 2. Substreams: Real-Time & Historical Data Streams
2849

29-
**Use Case:** Dapp frontends, custom analytics.
50+
**Use Case:** Best when you need low-latency data at scale: live liquidity and price feeds, trading and liquidation events, analytics pipelines, and large-scale backfills across chains.
3051

31-
- [Explore Subgraphs](https://thegraph.com/explorer)
32-
- [Build Your Subgraph](/subgraphs/quick-start)
52+
- [Browse existing Substreams](https://substreams.dev/)
53+
- [Build with Substreams](/substreams/introduction/)
3354

34-
### 2. Real-Time & Historical Data Streams
55+
### 3. Amp: Verifiable, compliance-grade data
3556

36-
**Use Case:** High-frequency trading, live analytics.
57+
**Use Case:** Best for regulated and institutional use cases needing SQL access and built-in audit trails: enterprise analytics, financial reporting, and workflows with regulatory requirements.
3758

38-
- [Build Substreams](/substreams/introduction/)
39-
- [Browse Community Substreams](https://substreams.dev/)
59+
- [Contact Team](https://www.edgeandnode.com/)
60+
- [Get Started with Amp](https://ampup.sh/docs)

website/src/pages/en/ai-suite/ai-introduction.mdx renamed to website/src/pages/en/ai-overview.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Agent Skills extend AI coding assistants like Claude Code and Cursor with deep,
2323

2424
### Subgraph MCP
2525

26-
The [Subgraph MCP](/ai-suite/subgraph-mcp/introduction/) server connects models to Subgraphs on The Graph Network. It allows language models to explore Subgraph schemas, execute GraphQL queries, find relevant Subgraphs by keyword or contract, and surface usage metrics using natural language.
26+
The [Subgraph MCP](/subgraphs/subgraph-mcp/introduction/) server connects models to Subgraphs on The Graph Network. It allows language models to explore Subgraph schemas, execute GraphQL queries, find relevant Subgraphs by keyword or contract, and surface usage metrics using natural language.
2727

2828
#### Benefits of Using Subgraph MCP
2929

@@ -34,7 +34,7 @@ The [Subgraph MCP](/ai-suite/subgraph-mcp/introduction/) server connects models
3434

3535
### Substreams MCP
3636

37-
The [Substreams MCP](/ai-suite/substreams-mcp/search/) server lets AI agents search, inspect, and analyze Substreams packages — from registry discovery to sink deployment. It supports dual transport for local clients and SSE/HTTP for remote agents.
37+
The [Substreams MCP](/substreams/substreams-mcp/search/) server lets AI agents search, inspect, and analyze Substreams packages — from registry discovery to sink deployment. It supports dual transport for local clients and SSE/HTTP for remote agents.
3838

3939
#### Tools
4040

@@ -53,7 +53,7 @@ The [Substreams MCP](/ai-suite/substreams-mcp/search/) server lets AI agents sea
5353

5454
### Agent Skills for Subgraphs
5555

56-
[Subgraph Skills](/ai-suite/subgraph-skills/) is a collection of AI agent skills that provide expert knowledge for developing, testing, and deploying Subgraphs. Skills are available as Claude Code plugins or OpenClaw skills.
56+
[Subgraph Skills](/subgraphs/skills/) is a collection of AI agent skills that provide expert knowledge for developing, testing, and deploying Subgraphs. Skills are available as Claude Code plugins or OpenClaw skills.
5757

5858
#### Available Skills
5959

@@ -65,7 +65,7 @@ The [Substreams MCP](/ai-suite/substreams-mcp/search/) server lets AI agents sea
6565

6666
### Agent Skills for Substreams
6767

68-
[Substreams Skills](/ai-suite/substreams-skills/) enhance AI coding assistants with specialized Substreams expertise. Install once and your assistant automatically applies Substreams best practices when working on relevant projects.
68+
[Substreams Skills](/substreams/skills/) enhance AI coding assistants with specialized Substreams expertise. Install once and your assistant automatically applies Substreams best practices when working on relevant projects.
6969

7070
#### Available Skills
7171

website/src/pages/en/ai-suite/_meta-titles.json

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

website/src/pages/en/ai-suite/_meta.js

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

website/src/pages/en/subgraphs/_meta-titles.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2+
"subgraph-mcp": "Subgraph MCP",
23
"querying": "Querying",
34
"developing": "Developing",
45
"guides": "How-to Guides",

website/src/pages/en/subgraphs/_meta.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ import titles from './_meta-titles.json'
22

33
export default {
44
'quick-start': '',
5+
'subgraph-mcp': titles['subgraph-mcp'],
6+
skills: '',
57
explorer: '',
68
querying: titles.querying ?? '',
79
developing: titles.developing ?? '',
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)