Kynver
@kynver-app/mcp-server
MCP (Model Context Protocol) server that exposes Kynver operations as tools for AI assistants and IDEs (Cursor, Claude Desktop, GitHub Copilot).
Setup
Environment variables:
KYNVER_API_URL— Base URL of the Kynver app (default:https://kynver.com).KYNVER_API_KEY— Optional. Required for authenticated tools (e.g.verify_ownership,start_kyc,submit_questionnaire,get_tracking_setup). Get a key from Dashboard → your agent → Settings → API Keys.
Read-only tools (resolve_agent, list_agents, get_verification_status) and the public register_agent tool work without an API key.
Related MCP server: Aegis-ZK
Running
Stdio (default): for local clients (Cursor, Claude Desktop, Copilot).
npx -y @kynver-app/mcp-serverOr from this repo after
npm run buildinpackages/kynver-mcp-server:node dist/index.js
IDE configuration
Add the server to your MCP client config.
Cursor — .cursor/mcp.json or Cursor Settings → MCP:
{
"mcpServers": {
"kynver": {
"command": "npx",
"args": ["-y", "@kynver-app/mcp-server"],
"env": {
"KYNVER_API_URL": "https://kynver.com",
"KYNVER_API_KEY": "<your-api-key>"
}
}
}
}Claude Desktop — ~/Library/Application Support/Claude/claude_desktop_config.json (macOS):
{
"mcpServers": {
"kynver": {
"command": "npx",
"args": ["-y", "@kynver-app/mcp-server"],
"env": {
"KYNVER_API_URL": "https://kynver.com",
"KYNVER_API_KEY": "<your-api-key>"
}
}
}
}VS Code (GitHub Copilot) — .vscode/mcp.json or user settings:
{
"servers": {
"kynver": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@kynver-app/mcp-server"],
"env": {
"KYNVER_API_URL": "https://kynver.com",
"KYNVER_API_KEY": "<your-api-key>"
}
}
}
}Tools
Tool | Auth | Description |
| No | Resolve agent by slug or DID; returns profile, trust score, verification. |
| No | List agents with filters (category, verified, minTrustScore, limit). |
| No | Public verification summary (score, steps, nextStep). |
| No | Register an agent (keyless). Returns DID, slug, claim URL or linked profile. |
| API key | Two-phase ownership challenge (start → deploy token → verify). |
| API key | Start KYC; returns URL to complete identity verification. |
| API key | Submit verification questionnaire. |
| API key | Get DID, SDK install snippet, and tracking code for a framework. |
Development
From the repo root (with workspaces), install and build:
npm install
cd packages/kynver-mcp-server && npm run buildTo test with the MCP Inspector:
npx @modelcontextprotocol/inspectorThen configure the inspector to run node path/to/packages/kynver-mcp-server/dist/index.js with env KYNVER_API_URL (and optionally KYNVER_API_KEY).
This server cannot be deployed
Maintenance
Related MCP Connectors
Hosted MCP server for AI agent identity, permissions, verification, and reusable proof.
MCP-native Trust Infrastructure for AI Agents. Persistent encrypted memory with Trust Quotient.
Search, vet & assemble MCP servers from your agent: verified tools, risk labels, and trust scores.
Compliance MCP for AI agents: sanctions & KYT screening on 50+ chains, stablecoin-freeze, oracle.
Related MCP Servers
- AlicenseBqualityBmaintenanceMolTrust MCP Server provides AI agents with identity verification, reputation scoring, and verifiable credentials through W3C DID-based trust infrastructure. Includes ERC-8004 on-chain agent registration and Base blockchain anchoring for tamper-proof credential verification.483MIT
- FlicenseNot gradedqualityDmaintenanceOn-chain trust verification for AI agent tools. Agents query skill attestations, audit levels, and risk scores before running third-party MCP servers, so you know what's safe before you execute.1-
- AlicenseAqualityDmaintenanceMCP server for AI agent identity — verify agents with Ed25519 signatures, check trust scores, sign and verify content, exchange encrypted messages. Built on the Agent Identity Protocol (AIP).8MIT
- AlicenseNot gradedqualityDmaintenanceMCP Server for AI agent identity and authorization. Create, verify, and manage agent identities with trust scores and scoped authorization tokens.MIT