graphite-mcp
OfficialAllows AI agents to query the Graphite Financial Knowledge Graph for company information, supply chains, executives, regulations, and patents.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@graphite-mcpWhat is NVIDIA's exposure to TSMC?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
graphite-mcp
MCP server for the Graphite Financial Knowledge Graph — wires the graph into Claude Code, Claude Desktop, Cursor, Codex CLI, and any other MCP-compatible client.
Your Claude / agent does the reasoning. Graphite answers the graph questions it asks for. No LLM tokens are billed by Graphite — you bring your own LLM (subscription or API key); we only serve graph data.
Install
pip install graphite-mcpOr from source:
git clone https://github.com/Sherwin-Graphite/graphite-mcp.git
cd graphite-mcp
pip install -e .Get a Graphite key
Free tier — 100 graph queries / month — at: https://graph.graphite-ai.net/#/portal
Sign up with your email; you get back a key like sk-….
Chat-with-the-graph in the web portal is BYOK — you bring your own Anthropic or OpenAI key (it stays in your browser). Or skip the portal and use this MCP server with your Claude / ChatGPT subscription, no API key needed on the LLM side at all.
Configure your client
Same JSON shape works for every MCP client; only the file path differs.
{
"mcpServers": {
"graphite": {
"command": "graphite-mcp",
"env": {
"CENTRAL_SERVER_URL": "https://api.graphite-ai.net",
"CUSTOMER_API_KEY": "sk-your-graphite-key"
}
}
}
}Client | Config path |
Claude Code |
|
Claude Desktop |
|
Cursor |
|
Codex CLI |
|
Restart your client after editing.
If you installed from source and don't want to put the package on PATH, replace the command line with:
"command": "python",
"args": ["-m", "graphite_mcp"],Available tools
Once configured, Claude can call these tools to answer questions about companies, supply chains, executives, regulations, and patents.
Tool | Purpose |
| Free-text search by name, ticker, sector, or description |
| Full record for one entity by ID (e.g. |
| Every edge attached to an entity (employs, supplies, depends_on, …) |
| Typed fact log for an entity (revenue, headcount, etc.) |
| Shortest path between two entities through the graph |
| 1st + 2nd-degree neighborhood, sector breakdown — supply-chain risk view |
| Shared connections + path distance + direct relationships between two |
Example prompts
After setup, just ask Claude:
"What's NVIDIA's supply-chain exposure to TSMC?"
"Find the shortest path from company:AAPL to company:ASML."
"Compare Microsoft and Google — who do they share board members with?"
"List every revenue-from edge for NVDA."
Claude will pick the right tool, call this MCP server, and ground its answer in real graph data.
How it works
your Claude graphite-mcp api.graphite-ai.net
───────────── ──────────────── ─────────────────────
"NVDA exposure?" ─→ exposure_analysis ─→ GET /graph/exposure
(this package) (returns JSON)
←─
←─ formatted answerThe MCP server is a thin stdio adapter — it doesn't store anything, doesn't see your prompts, doesn't bill you. All the value lives in the graph at api.graphite-ai.net.
Env vars
Var | Default | Notes |
|
| Override to use a different Graphite deployment |
| (empty) | Required — issued at https://graph.graphite-ai.net/#/portal |
License
MIT. Use freely, modify freely, no warranty.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
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/GraphiteAI/graphite-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server