MCP server for Vorim AI — AI agent identity, permissions, and audit trails. 17 tools for Claude, Cursor, VS Code, and any MCP-compatible client.
claude mcp add vorim -- npx -y @vorim/mcp-server{
"mcpServers": {
"vorim": {
"command": "npx",
"args": ["-y", "@vorim/mcp-server"],
"env": {
"VORIM_API_KEY": "<vorim_api_key>"
}
}
}
}VORIM_API_KEYMCP Servers overview
# Vorim AI — MCP Server
[](https://www.npmjs.com/package/@vorim/mcp-server)
[](https://smithery.ai/servers/vorimai/vorim)
[](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 17 Vorim tools to any MCP-compatible AI client.
Works with **Claude Desktop**, **Cursor**, **VS Code**, and any other MCP client.
## Quick Start
```bash
npm install -g @vorim/mcp-server
```
Or run directly with npx:
```bash
VORIM_API_KEY=agid_sk_live_... npx @vorim/mcp-server
```
## Configuration
### Claude Desktop
Add to `~/Library/Application Support/Claude/claude_desktop_config.json`:
```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:
```json
{
"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](https://vorim.ai) (free, no credit card)
2. Go to **Settings > API Keys**
3. Create a key with `agents:*`, `audit:*`, `trust:*` scopes
## Available Tools (17)
### 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) |
## 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
- **Platform:** [vorim.ai](https://vorim.ai)
- **API Docs:** [vorim.ai/docs](https://vorim.ai/docs)
- **Protocol Spec (VAIP):** [github.com/Vorim-AI-Labs/vorim-protocol](https://github.com/Vorim-AI-Labs/vorim-protocol)
- **TypeScript SDK:** [@vorim/sdk on npm](https://www.npmjs.com/package/@vorim/sdk)
- **Python SDK:** [vorim on PyPI](https://pypi.org/project/vorim/)
- **OpenClaw Skill:** [Vorim-AI-Labs/vorim-openclaw-skill](https://github.com/Vorim-AI-Labs/vorim-openclaw-skill)
- **Agent Discovery:** [vorim.ai/.well-known/agent.json](https://vorim.ai/.well-known/agent.json)
## License
MIT — see [LICENSE](LICENSE) for details.
---
Built by [Vorim AI](https://vorim.ai). Questions or feedback: [kwame@vorim.ai](mailto:kwame@vorim.ai).
What people ask about vorim-mcp-server
What is Vorim-AI-Labs/vorim-mcp-server?
+
Vorim-AI-Labs/vorim-mcp-server is mcp servers for the Claude AI ecosystem. MCP server for Vorim AI — AI agent identity, permissions, and audit trails. 17 tools for Claude, Cursor, VS Code, and any MCP-compatible client. It has 1 GitHub stars and was last updated today.
How do I install vorim-mcp-server?
+
You can install vorim-mcp-server by cloning the repository (https://github.com/Vorim-AI-Labs/vorim-mcp-server) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.
Is Vorim-AI-Labs/vorim-mcp-server safe to use?
+
Vorim-AI-Labs/vorim-mcp-server has not been audited yet by our security agent. Review the original repository on GitHub before using it in production.
Who maintains Vorim-AI-Labs/vorim-mcp-server?
+
Vorim-AI-Labs/vorim-mcp-server is maintained by Vorim-AI-Labs. The last recorded GitHub activity is from today, with 0 open issues.
Are there alternatives to vorim-mcp-server?
+
Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.
Deploy vorim-mcp-server to your cloud
Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.
Maintain this repo? Add a badge to your README
Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.
[](https://claudewave.com/repo/vorim-ai-labs-vorim-mcp-server)<a href="https://claudewave.com/repo/vorim-ai-labs-vorim-mcp-server"><img src="https://claudewave.com/api/badge/vorim-ai-labs-vorim-mcp-server" alt="Featured on ClaudeWave: Vorim-AI-Labs/vorim-mcp-server" width="320" height="64" /></a>More MCP Servers
Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.
User-friendly AI Interface (Supports Ollama, OpenAI API, ...)
An open-source AI agent that brings the power of Gemini directly into your terminal.
The fastest path to AI-powered full stack observability, even for lean teams.
🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl!
⭐AI-driven public opinion & trend monitor with multi-platform aggregation, RSS, and smart alerts.🎯 告别信息过载,你的 AI 舆情监控助手与热点筛选工具!聚合多平台热点 + RSS 订阅,支持关键词精准筛选。AI 智能筛选新闻 + AI 翻译 + AI 分析简报直推手机,也支持接入 MCP 架构,赋能 AI 自然语言对话分析、情感洞察与趋势预测等。支持 Docker ,数据本地/云端自持。集成微信/飞书/钉钉/Telegram/邮件/ntfy/bark/slack 等渠道智能推送。