🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@vorim/mcp-server

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vorim/mcp-server

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

latest
Source
npmnpm
Version
1.1.15
Version published
Maintainers
1
Created
Source

@vorim/mcp-server

MCP server for AI agent identity, permissions, and audit trails.

Gives Claude, Cursor, VS Code, Windsurf, and any MCP-compatible client 17 tools to manage AI agent identities through Vorim — register agents, check permissions, emit audit events, verify trust scores, and delegate credentials.

npm version License: MIT

vorim.ai — Create a free account and get your API key in 30 seconds. Documentation — Full API reference and guides.

Quick Start

Claude Desktop

Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):

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

Claude Code

claude mcp add vorim -- npx @vorim/mcp-server

Set the API key in your environment:

export VORIM_API_KEY=agid_sk_live_...

Cursor

Add to .cursor/mcp.json:

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

VS Code

Add to .vscode/mcp.json:

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

Windsurf

Add to ~/.codeium/windsurf/mcp_config.json:

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

Tools

The server exposes 17 tools across six categories:

Health

ToolDescription
vorim_pingCheck API health and connectivity

Agent Identity

ToolDescription
vorim_register_agentRegister a new agent with an Ed25519 keypair
vorim_get_agentGet agent details by ID
vorim_list_agentsList all agents (with pagination and status filter)
vorim_update_agentUpdate agent metadata
vorim_revoke_agentPermanently revoke an agent

Permissions

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

Audit

ToolDescription
vorim_emit_eventLog an audit event (sign client-side via @vorim/sdk for tamper-evidence)
vorim_export_auditExport a signed audit bundle (SHA-256 manifest)

Trust

ToolDescription
vorim_verify_trustVerify an agent's identity and trust score (0-100)

Credential Delegation

ToolDescription
vorim_register_ephemeralRegister a short-lived agent with did:key identity
vorim_delegate_credentialDelegate a scoped credential to an agent
vorim_request_tokenRequest a short-lived access token
vorim_list_delegationsList credential delegations

Environment Variables

VariableDescriptionDefault
VORIM_API_KEYYour Vorim API key (agid_sk_...)Required
VORIM_BASE_URLAPI base URLhttps://api.vorim.ai

Example Prompts

Once the MCP server is connected, you can ask your AI assistant:

  • "Register a new agent called invoice-processor with read and execute permissions"
  • "Check if agent agid_acme_a1b2c3d4 has agent:execute permission"
  • "Show me the trust score for agent agid_acme_a1b2c3d4"
  • "List all active agents"
  • "Emit an audit event for agent agid_acme_a1b2c3d4 performing search_documents"
  • "Export audit logs from the last 7 days"
  • "Grant agent:transact permission to agid_acme_a1b2c3d4 with a rate limit of 100 per hour"
  • "Create an ephemeral agent with a 1-hour TTL for a one-off task"

Running Standalone

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

Or install globally:

npm install -g @vorim/mcp-server
VORIM_API_KEY=agid_sk_live_... vorim-mcp-server

License

MIT

Keywords

mcp

FAQs

Package last updated on 23 Jun 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts