Skip to main content

LangChain tool wrapper for Graph Advocate — onchain data routing via plain-English queries (subgraphs, GraphQL, REST).

Project description

langchain-graph-advocate

LangChain tool wrapper for Graph Advocate — drop-in onchain data routing for AI agents. Plain-English queries return a working GraphQL query, subgraph ID, or REST call you can execute against The Graph or Token API.

  • 15,500+ subgraphs across 20+ chains
  • Wallet balances, token holders, DEX swaps, NFTs, lending data, prediction markets, ENS domains, ERC-8004 agent discovery
  • $0.01 USDC per query via x402 on Base (auto-pay built in)

Install

# Includes x402 SDK by default — required to make paid calls
pip install 'langchain-graph-advocate[x402]'

# Or core only (returns HTTP 402 helper info on every call)
pip install langchain-graph-advocate

Quick start

import os
from langchain_graph_advocate import GraphAdvocateTool

# x402_private_key is required to pay $0.01 USDC per query.
# The signing wallet needs USDC on Base — bridge at bridge.base.org.
tool = GraphAdvocateTool(
    x402_private_key=os.environ["X402_PRIVATE_KEY"],
)

result = tool.invoke({"request": "Top 20 USDC holders on Ethereum"})
print(result)
# Returns JSON with recommendation, query_ready, curl_example, alternatives

What happens without an x402 key

The endpoint returns HTTP 402. The tool surfaces this as a structured JSON error containing the pay_to address, network, and onboarding info, so the agent can decide whether to acquire USDC and retry — or the user can fund the wallet ahead of time.

# No key — tool still returns a structured response, just not data
tool = GraphAdvocateTool()
result = tool.invoke({"request": "anything"})
# {"error": "payment_required", "price_usdc": 0.01, "network": "eip155:8453",
#  "pay_to": "0x0FF5A6...", "facilitator": "https://api.cdp.coinbase.com/...", ...}

Use it in an agent

from langchain.agents import AgentExecutor, create_tool_calling_agent
from langchain_anthropic import ChatAnthropic
from langchain_core.prompts import ChatPromptTemplate
from langchain_graph_advocate import GraphAdvocateTool

llm = ChatAnthropic(model="claude-opus-4-7")
tools = [GraphAdvocateTool()]

prompt = ChatPromptTemplate.from_messages([
    ("system", "You are an onchain analyst. Use the graph_advocate tool to "
               "answer any onchain data questions."),
    ("user", "{input}"),
    ("placeholder", "{agent_scratchpad}"),
])

agent = create_tool_calling_agent(llm, tools, prompt)
executor = AgentExecutor(agent=agent, tools=tools)

executor.invoke({"input": "Who are the top 10 USDC holders on Ethereum?"})

What you get back

{
  "recommendation": "token-api",
  "reason": "getV1EvmHolders returns ranked holder lists by token contract.",
  "confidence": "high",
  "query_ready": {
    "tool": "getV1EvmHolders",
    "args": {
      "network": "mainnet",
      "contract": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
      "limit": 20
    }
  },
  "curl_example": "curl 'https://token-api.thegraph.com/...'",
  "get_started": "Free API key: https://thegraph.com/studio/",
  "alternatives": []
}

Your agent then runs the query_ready against the Graph gateway (or whichever service was recommended) using a free API key from thegraph.com/studio.

Pricing

Tier Price How
Free 10 queries/day per sender Just call the tool — no setup
Paid $0.01 USDC Pass x402_private_key to auto-pay

Why this exists

Without Graph Advocate, an agent that wants Aave liquidations on Base has to: (1) discover candidate subgraphs, (2) compare query volumes for reliability, (3) read schemas, (4) write GraphQL, (5) test against the indexer. That's 5–10 minutes of model + tool time per data question.

Graph Advocate returns the working query in one HTTP round trip for $0.01.

Links

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

langchain_graph_advocate-0.1.1.tar.gz (7.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

langchain_graph_advocate-0.1.1-py3-none-any.whl (7.6 kB view details)

Uploaded Python 3

File details

Details for the file langchain_graph_advocate-0.1.1.tar.gz.

File metadata

  • Download URL: langchain_graph_advocate-0.1.1.tar.gz
  • Upload date:
  • Size: 7.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for langchain_graph_advocate-0.1.1.tar.gz
Algorithm Hash digest
SHA256 afffa921c7082c3fa30af9a10f09ef796960f93bcb20da0a9616e18589c47992
MD5 09946ac832a66e8b8038a60b13f4f789
BLAKE2b-256 579f976505db546e93d930c80470c093caa7cf28adb6c8673aa7f85d68fd3316

See more details on using hashes here.

Provenance

The following attestation bundles were made for langchain_graph_advocate-0.1.1.tar.gz:

Publisher: publish.yml on PaulieB14/langchain-graph-advocate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file langchain_graph_advocate-0.1.1-py3-none-any.whl.

File metadata

File hashes

Hashes for langchain_graph_advocate-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 3dbd2c968dd9c07daa7d1182c1a43940828f3173875eb8b1f3709d5c55c027fc
MD5 84a97e39e101d42f29feaf958e5ec2be
BLAKE2b-256 9a9397b20b7a99b2ea49e474e0e462e52431f85619091d4624c66a00fc664e0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for langchain_graph_advocate-0.1.1-py3-none-any.whl:

Publisher: publish.yml on PaulieB14/langchain-graph-advocate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page