MCP Hub
Back to servers

vorim-mcp-server

AI agent identity, permissions, trust scores, and tamper-evident audit trails via Vorim AI

Registry
Updated
Apr 11, 2026

Quick Install

npx -y @vorim/mcp-server

Vorim AI — MCP Server

MCP (Model Context Protocol) server for Vorim AI — the identity and trust layer for AI agents. Exposes 13 tools for agent registration, permission checks, audit logging, and trust verification.

Works with Claude Desktop, Cursor, VS Code, and any MCP-compatible AI 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)
  2. Go to Settings > API Keys
  3. Create a key with agents:*, audit:*, trust:* scopes

Available Tools (13)

Health

ToolDescription
vorim_pingCheck API health and connectivity

Agent Identity

ToolDescription
vorim_register_agentRegister a new agent with Ed25519 cryptographic identity
vorim_get_agentGet agent details by ID
vorim_list_agentsList all agents with pagination and filtering
vorim_update_agentUpdate agent metadata (name, description, status)
vorim_revoke_agentPermanently revoke an agent

Permissions

ToolDescription
vorim_check_permissionCheck if agent has a permission scope (sub-5ms)
vorim_grant_permissionGrant a permission with optional expiry and rate limits
vorim_list_permissionsList all active permissions for an agent
vorim_revoke_permissionRevoke a specific permission scope

Audit

ToolDescription
vorim_emit_eventLog an audit event for an agent action
vorim_export_auditExport signed audit bundle with SHA-256 manifest

Trust

ToolDescription
vorim_verify_trustVerify 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"
  • "Revoke agent agid_acme_a1b2"

Environment Variables

VariableRequiredDefaultDescription
VORIM_API_KEYYesYour Vorim API key (agid_sk_live_...)
VORIM_BASE_URLNohttps://api.vorim.aiAPI base URL (override for self-hosted)

What is Vorim AI?

Vorim AI provides the identity and trust layer for autonomous AI agents:

  • Cryptographic Identity — Ed25519 keypairs for every agent
  • Fine-Grained Permissions — 7 scopes with time bounds and rate limits
  • Immutable Audit Trails — SHA-256 signed export bundles for compliance
  • Trust Scoring — 0-100 scores based on behavioural history
  • Compliance Ready — EU AI Act, US Executive Order 14110, SOC 2, GDPR

Links

License

MIT — see LICENSE for details.


Built by Vorim AI

Reviews

No reviews yet

Sign in to write a review