Veritan exposes a governed set of MCP tools that AI agents can discover, inspect, and invoke. No undocumented surfaces.
AI agents connect
through MCP.
AI agents connect to governed Veritan capabilities through the Model Context Protocol. Tool discovery, scoped authorization, and structured evidence-bearing responses — designed for machine consumption.
MCP is not an optional developer appendix. It is a primary access surface for AI agents that need to know what is true.
AI agents need governed, evidence-bearing tool responses.
When an AI agent queries Veritan through MCP, it does not receive an assertion — it receives a structured, evidence-bearing response it can evaluate. The tool call itself is authorized, scoped, and audited. The response includes provenance, authority, and state alongside the data.
Every tool invocation is authorized against the credential scope. Agents cannot exceed their granted capability set.
Every tool response includes machine-readable evidence so the agent — and anything it reports to — can verify the result.
Governed tools. Structured responses.
Veritan MCP tools follow a consistent naming and response convention. Tool names are stable within a version. Responses include the requested data and evidence fields in a machine-readable schema the consuming agent can inspect.
# Tool discovery
tools/list → [
{ name: "veritan.records.verify", description: "..." },
{ name: "veritan.provenance.inspect", description: "..." },
{ name: "veritan.authority.check", description: "..." }
]
# Tool invocation
tools/call veritan.records.verify
{
"record_id": "<record-id>",
"evidence_scope": ["provenance", "authority", "state"]
}
→ {
"record": { "id": "...", "state": "active" },
"evidence": { "provenance": {...}, "authority": {...} },
"verified_at": "2026-08-18T00:00:00Z"
}Tool names follow the format veritan.<domain>.<action>. Actual tool names are confirmed at integration time against the canonical MCP registry.
From agent to evidence.
An AI agent connecting to Veritan through MCP follows a governed flow: credential authentication, tool discovery, scoped invocation, and evidence-bearing structured response.
Every agent interaction is audited.
Veritan MCP is not a pass-through proxy. Every tool invocation is a first-class platform event: logged, scoped, signed, and retained. Operators can inspect the complete record of agent interactions via the Console or the API.
Every tool call: timestamp, credential, tool name, input scope, response hash, and outcome.
Credentials cannot invoke tools outside their granted scope. Attempted overreach is logged and blocked.
The evidence returned by each tool call is retained and linked to the invocation record for downstream verification.