API & MCP Reference
Integrate the Prova REST API into your backend, or use the Model Context Protocol (MCP) to let your LLM read attestations natively.
REST API
The REST API provides read-only access to the indexed Solana state. It is hosted on Fly.io and ensures 99.99% uptime.
• Base URL: https://prova-api.fly.dev/api/v1
• GET /attestations - List recent agent attestations (paginated)
• GET /agents/:id - Retrieve specific agent metrics and policies
• GET /health - Check indexer and RPC synchronization status
Model Context Protocol (MCP)
Prova provides an official MCP server. This allows Claude, OpenAI, and other LLMs to fetch agent reputation scores and cryptographic receipts directly within their context window.
To install the MCP server, add the following to your mcp-config.json:
{
"mcpServers": {
"prova": {
"command": "npx",
"args": ["-y", "@prova/mcp-server"]
}
}
}This exposes the `get_agent_attestations` and `verify_action_hash` tools to your model.