Vorim MCP Server

MCP server for Vorim AI — AI agent identity, permissions, and audit trails

Remote serverstreamable-httpPython

What is the Vorim MCP server?

MCP server for Vorim AI — AI agent identity, permissions, and audit trails. The vorim mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 6 defined tools rather than through you.

What it actually does

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.

  • 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

Its toolset

Everything the assistant can do here goes through one of these:

  • Cursor — The Cursor tool exposed by this server
  • Health — The Health tool exposed by this server
  • Permissions — The Permissions tool exposed by this server
  • Audit — The Audit tool exposed by this server
  • Trust — The Trust tool exposed by this server
  • Onboarding — The Onboarding tool exposed by this server

Configuration

You will need 2 environment variables: VORIM_API_KEY, VORIM_BASE_URL. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Adding it to your client

Being a remote server, there is no local install. You register the endpoint with your client, authorise it once, and the tools appear.

When to reach for it

Among the developer tooling options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Vorim's toolset — Cursor, Health, Permissions and 3 more — is a fair guide to whether it matches your workflow. It is maintained by kzino; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Vorim's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Caveats

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the vorim mcp server does with a few real requests.

Available tools

ToolWhat it does
CursorThe Cursor tool exposed by this server.
HealthThe Health tool exposed by this server.
PermissionsThe Permissions tool exposed by this server.
AuditThe Audit tool exposed by this server.
TrustThe Trust tool exposed by this server.
OnboardingThe Onboarding tool exposed by this server.

How to install the Vorim MCP server

{
  "mcpServers": {
    "vorim": {
      "command": "npx",
      "args": ["@vorim/mcp-server"],
      "env": {
        "VORIM_API_KEY": "agid_sk_live_..."
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
VORIM_API_KEYCredential the server authenticates with.Yes
VORIM_BASE_URLEndpoint or connection string the server talks to.Yes

Example prompts to try

  • Use Vorim to Cursor.
  • Use Vorim to Health.
  • Use Vorim to Permissions.

Frequently asked questions

It connects Vorim to MCP-compatible AI assistants such as Claude and Cursor, exposing 6 tools (Cursor, Health, Permissions, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Vorim directly.