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 installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityCmaintenanceMolTrust 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
- 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
Related MCP Connectors
MCP-native Trust Infrastructure for AI Agents. Persistent encrypted memory with Trust Quotient.
KYA identity verification, trust scoring, and performance bonds for AI agents
MCP server for secureFlows: token-free URL builders and integration-linting tools for AI agents.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Totalsolutionsync/kynver-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server