MCP server/ai-tools

Kynver MCP Server

Bring agent trust directly into your IDE

Totalsolutionsync/kynver-mcp-server ↗by Totalsolutionsyncupdated
1

Add it to Claude Code

claude mcp add kynver -- npx -y @kynver-app/mcp-server
2

Make your agent remember this setup

kynver's config, env vars, and the gotchas you hit — recalled in every future Claude Code, Cursor, and Codex session.

npx conare@latest

Free · one command · indexes the sessions already on disk. Set up in the browser instead →

What it does

  • Resolve AI agents by DID or slug to view profiles and trust scores
  • Filter and list agents based on verification status and trust metrics
  • Perform ownership challenges and KYC verification directly from the IDE
  • Retrieve SDK installation snippets and tracking code for agent integration

Tools 8

resolve_agentResolve agent by slug or DID; returns profile, trust score, verification.
list_agentsList agents with filters (category, verified, minTrustScore, limit).
get_verification_statusPublic verification summary (score, steps, nextStep).
register_agentRegister an agent (keyless). Returns DID, slug, claim URL or linked profile.
verify_ownershipTwo-phase ownership challenge (start -> deploy token -> verify).
start_kycStart KYC; returns URL to complete identity verification.
submit_questionnaireSubmit verification questionnaire.
get_tracking_setupGet DID, SDK install snippet, and tracking code for a framework.

Environment Variables

KYNVER_API_URLBase URL of the Kynver app (default: https://kynver.com)
KYNVER_API_KEYRequired for authenticated tools like verify_ownership and start_kyc

Try it

Check the verification status and trust score for the agent with DID did:kynver:12345.
List all verified agents in the 'finance' category with a trust score above 80.
Start the ownership verification process for my registered agent.
Get the tracking setup snippet for my agent to integrate into my project.
Original README from Totalsolutionsync/kynver-mcp-server

@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.

Running

  • Stdio (default): for local clients (Cursor, Claude Desktop, Copilot).

    npx -y @kynver-app/mcp-server
    

    Or from this repo after npm run build in packages/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
resolve_agent No Resolve agent by slug or DID; returns profile, trust score, verification.
list_agents No List agents with filters (category, verified, minTrustScore, limit).
get_verification_status No Public verification summary (score, steps, nextStep).
register_agent No Register an agent (keyless). Returns DID, slug, claim URL or linked profile.
verify_ownership API key Two-phase ownership challenge (start → deploy token → verify).
start_kyc API key Start KYC; returns URL to complete identity verification.
submit_questionnaire API key Submit verification questionnaire.
get_tracking_setup 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 build

To test with the MCP Inspector:

npx @modelcontextprotocol/inspector

Then 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).

Frequently Asked Questions

What are the key features of Kynver?

Resolve AI agents by DID or slug to view profiles and trust scores. Filter and list agents based on verification status and trust metrics. Perform ownership challenges and KYC verification directly from the IDE. Retrieve SDK installation snippets and tracking code for agent integration.

What can I use Kynver for?

Developers verifying the trustworthiness of third-party AI agents before integration. Agent creators managing their identity verification and KYC status without leaving their IDE. Security-conscious teams auditing agent provenance and trust scores in their development workflow.

How do I install Kynver?

Install Kynver by running: npx -y @kynver-app/mcp-server

What MCP clients work with Kynver?

Kynver works with any MCP-compatible client including Claude Desktop, Claude Code, Cursor, and other editors with MCP support.

Conare · memory for coding agents

Turn this server into reusable context

Keep Kynver docs, env vars, and workflow notes in Conare so your agent carries them across sessions.

Set up free$npx conare@latest