Vorim AI — Agent Identity & Trust
Vorim AI MCP Server provides cryptographic identity, scoped permissions, tamper-evident audit trails, and trust scoring for AI agents — accessible from Claude Desktop, Cursor, or any MCP-compatible client via 17 tools.
Health
Check API health, version, and connectivity (
vorim_ping)
Agent Identity Management
Register agents with Ed25519 cryptographic keypairs (
vorim_register_agent)Register short-lived ephemeral
did:keyagents with auto-expiry TTL (vorim_register_ephemeral)Retrieve agent details including trust score, capabilities, and permissions (
vorim_get_agent)List all agents with pagination and status filtering (
vorim_list_agents)Update agent metadata such as name, description, status, and capabilities (
vorim_update_agent)Permanently revoke an agent, deactivating its identity and zeroing its trust score (
vorim_revoke_agent)
Permission Management
Check if an agent has a specific permission scope with sub-5ms Redis-cached lookups (
vorim_check_permission)Grant a permission scope with optional expiry timestamps and rate limits (
vorim_grant_permission)List all active permissions held by an agent (
vorim_list_permissions)Revoke a specific permission scope from an agent (
vorim_revoke_permission)
Credential Delegation
Delegate OAuth or other credentials to an agent with scoped access and rate limits (
vorim_delegate_credential)Request a short-lived, scoped access token for an agent from a target provider (
vorim_request_token)List active credential delegations, optionally filtered by agent (
vorim_list_delegations)
Audit & Compliance
Log tamper-evident audit events for agent actions including event type, result, latency, and resource info (
vorim_emit_event)Export signed, SHA-256 hash-linked audit bundles for a specified date range (
vorim_export_audit)
Trust Scoring
Publicly verify any agent's trust score (0–100), status, active scopes, and key fingerprint — without authentication (
vorim_verify_trust)
Vorim AI — MCP Server
Give every AI agent its own cryptographic identity, scoped permissions, and a tamper-evident audit trail — directly from Claude Desktop, Cursor, or any MCP-compatible client.
What is Vorim AI?
Vorim AI is the identity and trust layer for autonomous AI agents. It gives each agent its own Ed25519 keypair, time-bounded scoped permissions, hash-linked audit events, and a publicly verifiable trust score — so when an agent does something, you can prove who acted, what they were allowed to do, and what happened.
The protocol underneath (VAIP) is open, MIT-licensed, and submitted to IETF as draft-nyantakyi-vaip-agent-identity-01.
This package is the MCP (Model Context Protocol) server that exposes 17 Vorim tools to any MCP-compatible AI client.
Works with Claude Desktop, Cursor, VS Code, and any other MCP client.
Quick Start
npm install -g @vorim/mcp-serverOr run directly with npx:
VORIM_API_KEY=agid_sk_live_... npx @vorim/mcp-serverConfiguration
Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"vorim": {
"command": "npx",
"args": ["@vorim/mcp-server"],
"env": {
"VORIM_API_KEY": "agid_sk_live_..."
}
}
}
}Cursor
Add to .cursor/mcp.json in your project root:
{
"mcpServers": {
"vorim": {
"command": "npx",
"args": ["@vorim/mcp-server"],
"env": {
"VORIM_API_KEY": "agid_sk_live_..."
}
}
}
}VS Code
Add to your VS Code MCP settings with the same format.
Get an API Key
Sign up at vorim.ai (free, no credit card)
Go to Settings > API Keys
Create a key with
agents:*,audit:*,trust:*scopes
Available Tools (17)
Health
Tool | Description |
| Check API health and connectivity |
Agent Identity
Tool | Description |
| Register a new agent with Ed25519 cryptographic identity |
| Register a |
| Get agent details by ID |
| List all agents with pagination and filtering |
| Update agent metadata (name, description, status) |
| Permanently revoke an agent |
Permissions
Tool | Description |
| Check if agent has a permission scope (sub-5ms) |
| Grant a permission with optional expiry and rate limits |
| List all active permissions for an agent |
| Revoke a specific permission scope |
Credential Delegation
Tool | Description |
| Delegate OAuth credentials to an agent |
| Agent requests a short-lived access token |
| List active credential delegations |
Audit
Tool | Description |
| Log an audit event for an agent action |
| Export signed audit bundle with SHA-256 manifest |
Trust
Tool | Description |
| Verify agent trust score (public, no auth required) |
Example Usage
Once configured, use natural language in Claude, Cursor, or any MCP client:
"Register an agent called invoice-processor with read and execute permissions"
"Check if agent agid_acme_a1b2 has permission to execute"
"Log a tool_call event for the agent: action=process_invoice, result=success"
"What's the trust score for agent agid_acme_a1b2?"
"Export the audit trail for the last 30 days"
"Delegate my GitHub OAuth token to this agent for 24 hours"
"Revoke agent agid_acme_a1b2"
Why Use Vorim AI
Cryptographic identity — Ed25519 keypairs for every agent. Not a shared service account.
Fine-grained permissions — 7 scopes with time bounds and rate limits, sub-5ms checks.
Tamper-evident audit trails — SHA-256 hash-linked events, signed export bundles for compliance.
Public trust scoring — anyone can verify any agent without auth (no shared secrets).
Open protocol — VAIP submitted to IETF, MIT-licensed, freely implementable.
Compliance-ready — EU AI Act, US Executive Order 14110, SOC 2, GDPR.
Environment Variables
Variable | Required | Default | Description |
| Yes | — | Your Vorim API key ( |
| No |
| API base URL (override for self-hosted) |
Links
Platform: vorim.ai
API Docs: vorim.ai/docs
Protocol Spec (VAIP): github.com/Kzino/vorim-protocol
TypeScript SDK: @vorim/sdk on npm
Python SDK: vorim on PyPI
OpenClaw Skill: Kzino/vorim-openclaw-skill
Agent Discovery: vorim.ai/.well-known/agent.json
License
MIT — see LICENSE for details.
Built by Vorim AI. Questions or feedback: kwame@vorim.ai.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Kzino/vorim-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server