Featured

Deploy OpenClaw in 60 seconds β€” 20% off logoDeploy OpenClaw in 60 seconds β€” 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger β†’
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger β†’
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free β†’
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free β†’
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data β€” no proxies, no parsers, no maintenance.

Start building free β†’
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it β€” secured from day one.

Get it set up for you β†’
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free β†’
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here β†’

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Kzino/vorim-mcp-server MCP server](https://glama.ai/mcp/servers/Kzino/vorim-mcp-server/badges/score.svg)](https://glama.ai/mcp/servers/Kzino/vorim-mcp-server) πŸ“‡ ☁️ 🍎 πŸͺŸ 🐧 - AI agent identity, trust, and audit trail infrastructure.

README.md

Vorim AI β€” MCP Server

![npm version](https://www.npmjs.com/package/@vorim/mcp-server) ![smithery badge](https://smithery.ai/servers/vorimai/vorim) ![MIT License](LICENSE)

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 19 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-server

Or run directly with npx:

VORIM_API_KEY=agid_sk_live_... npx @vorim/mcp-server

Configuration

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

  1. Sign up at vorim.ai (free, no credit card)
  2. Go to Settings > API Keys
  3. Create a key with agents:, audit:, trust:* scopes

Available Tools (19)

Health

| Tool | Description | |------|-------------| | vorim_ping | Check API health and connectivity |

Agent Identity

| Tool | Description | |------|-------------| | vorim_register_agent | Register a new agent with Ed25519 cryptographic identity | | vorim_register_ephemeral | Register a did:key ephemeral agent with TTL | | vorim_get_agent | Get agent details by ID | | vorim_list_agents | List all agents with pagination and filtering | | vorim_update_agent | Update agent metadata (name, description, status) | | vorim_revoke_agent | Permanently revoke an agent |

Permissions

| Tool | Description | |------|-------------| | vorim_check_permission | Check if agent has a permission scope (sub-5ms) | | vorim_grant_permission | Grant a permission with optional expiry and rate limits | | vorim_list_permissions | List all active permissions for an agent | | vorim_revoke_permission | Revoke a specific permission scope |

Credential Delegation

| Tool | Description | |------|-------------| | vorim_delegate_credential | Delegate OAuth credentials to an agent | | vorim_request_token | Agent requests a short-lived access token | | vorim_list_delegations | List active credential delegations |

Audit

| Tool | Description | |------|-------------| | vorim_emit_event | Log an audit event for an agent action | | vorim_export_audit | Export signed audit bundle with SHA-256 manifest |

Trust

| Tool | Description | |------|-------------| | vorim_verify_trust | Verify agent trust score (public, no auth required) |

Onboarding

| Tool | Description | |------|-------------| | vorim_onboard_start | Start device-authorization onboarding for a user with no API key; returns a user code and activation URL | | vorim_onboard_check | Check whether the user approved onboarding and retrieve the issued API key |

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 | |----------|----------|---------|-------------| | VORIM_API_KEY | Yes | β€” | Your Vorim API key (agid_sk_live_...) | | VORIM_BASE_URL | No | https://api.vorim.ai | API base URL (override for self-hosted) |

Links

License

MIT β€” see LICENSE for details.

---

Built by Vorim AI. Questions or feedback: kwame@vorim.ai.

See related servers & alternatives β†’

Related MCP servers

Browse all β†’

Related guides

Hand-picked reading to help you choose and use Files & Docs servers.