Identity oracle and trust layer for autonomous AI agents. Provides bidirectional KYA (Know Your Agent) verification, trust scoring, and non-custodial payment authorization.
Built in Rust. Deployed as a remote SSE MCP server.
Patent Pending.
Add this to your MCP client configuration (Claude Desktop, Cursor, VS Code, etc.):
{
"mcpServers": {
"agentra": {
"url": "https://api.agentrapay.ai/mcp"
}
}
}Authenticated requests require an Agentra API key:
{
"mcpServers": {
"agentra": {
"url": "https://api.agentrapay.ai/mcp",
"headers": {
"X-API-Key": "<YOUR-AGENTRA-API-KEY>"
}
}
}
}| Tool | Description |
|---|---|
check_health |
Check API status, version, and database connectivity |
register_agent |
Register a new AI agent in the trust network |
get_trust_score |
Look up an agent's trust score (0-100) and verification tier |
create_authorization |
Create a payment authorization with bidirectional trust verification |
settle_authorization |
Settle an authorization with an on-chain transaction hash |
provision_wallet |
Provision a trust-tiered wallet via Turnkey WaaS |
create_service_key |
Generate a service API key for programmatic access |
Agentra acts as an identity oracle between AI agents. When Agent A wants to transact with Agent B:
- Agent A registers and receives a trust score and API key
- Agent A requests authorization for a transaction with Agent B
- Agentra verifies both sides -- the sending agent AND the counterparty (bidirectional KYA)
- Agentra returns an attestation and unsigned transaction data
- Agent A signs and submits the transaction on-chain
- Agent A settles the authorization with the transaction hash
Agentra never touches private keys or custodies funds. It is a trust and identity layer, not a payment processor.
| Tier | Description |
|---|---|
Unverified |
New agent, no verification completed |
Basic |
Identity registered, minimal history |
Standard |
Verified identity with transaction history |
Enhanced |
Full verification with on-chain attestations |
| Endpoint | URL |
|---|---|
| MCP Server | https://api.agentrapay.ai/mcp |
| Agent Card | https://api.agentrapay.ai/.well-known/agent-card.json |
| OpenAPI Spec | https://api.agentrapay.ai/.well-known/openapi.yaml |
| LLM Context | https://api.agentrapay.ai/llms.txt |
| Full LLM Docs | https://api.agentrapay.ai/llms-full.txt |
- MCP Registry:
ai.agentrapay/agentra - Hugging Face: Agentra-Score/Agentra
- Website: agentrapay.ai
- API: api.agentrapay.ai
- Demo: demo.agentrapay.ai
Proprietary. This repository contains documentation and connection metadata only.