Kora MCP Server gives AI agents (Claude, GPT, etc.) financial controls — every spend must be authorized before money moves. 5 tools:
kora_check_budget — Check remaining daily/monthly spending limits kora_spend — Authorize a spend. Returns APPROVED with Ed25519 cryptographic seal, or DENIED with reason and suggestion kora_recent_activity — View recent authorization history kora_health — Check if Kora is reachable before spending kora_audit — View recent admin actions on the mandate
How it works: Agent calls kora_spend with amount, vendor, currency, and reason. Kora evaluates the mandate (daily limits, vendor allowlist, time windows) and returns a deterministic APPROVED or DENIED. No ML, no probabilistic logic — pure rule evaluation with cryptographic proof. Fail-closed: If Kora is unreachable, the agent gets an explicit "DO NOT PROCEED" message. No silent failures, no unauthorized spending. Install: pip install kora-mcp-server Repo: https://github.com/Idkasam/kora-mcp-server Patent: PCT/EP2025/053553
Server Config
{
"mcpServers": {
"kora": {
"command": "kora-mcp",
"env": {
"KORA_API_URL": "https://api.koraprotocol.com",
"KORA_AGENT_SECRET": "kora_agent_sk_...",
"KORA_MANDATE": "mandate_...",
"KORA_ADMIN_KEY": "kora_admin_sk_..."
}
}
}
}