Ground LangChain agents with live data
Wire grounding into the pipeline you already build. Load VerveContext's MCP tools into a chain or agent and 300+ live, verifiable sources become callable tools your steps can reach — so each step reasons over a real fact, with a citation your app can surface.
- MCP tools
- Chains & agents
- Cited results
Grounding as a node in your graph
For the builder assembling chains and agents that can't afford a poisoned intermediate fact.
Tools in your chain
VerveContext's sources load as standard tools your agent can bind to. Drop them alongside your own functions and the model picks the right source at each step — grounding is just another node in the graph you already build.
- Tool binding
- Any node
Grounded steps in a pipeline
In a multi-step chain, a wrong intermediate fact poisons everything downstream. Grounding the step that needs a real value — a rate, a price, a location — keeps the rest of the pipeline reasoning over truth, not a guess.
- Multi-step
- No drift
Citations your app can surface
Each grounded value comes back with its source, so your application layer can render a citation next to the result. The provenance flows through the chain to the user, not just to the model.
- Provenance
- App-surfaced
Load the tools into your chain
Connect through LangChain's MCP adapter, bind the returned tools to your agent, and let steps call sources when they need a real value.
- 01
Load the MCP tools
Use LangChain's MCP adapter to connect to the VerveContext server at https://api.vervecontext.com/v1/mcp, passing your scoped key as the x-api-key header. The adapter returns the enabled sources as LangChain tool objects.
- 02
Bind them to your agent
Add the returned tools to your agent's tool list — the same way you'd add any custom tool — so the model can choose a source when a step calls for a real value.
- 03
Let the chain call sources mid-run
As the agent executes, it invokes the matching source when it needs a fact and feeds the typed value into the next step. No source is called unless a step actually needs it.
- 04
Carry the provenance through
Each tool result includes where the value came from. Thread that through your chain's output so the final answer — and your app — can cite the source, not just state the number.
Grounding LangChain, answered.
The adapter, tools and pipeline specifics builders ask about.
MCP setup guides →