npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@kynver-app/mcp-server

v1.0.1

Published

MCP server for Kynver — verify AI agents, check trust scores, resolve DIDs, register agents, and complete ownership challenges or KYC directly from Cursor, Claude Desktop, or VS Code.

Downloads

288

Readme

@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, search_help_center, list_help_articles) 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). | | search_help_center | No | Semantic search over Kynver help articles (verification, billing, disputes, API, SDKs, etc.). | | list_help_articles | No | List all help articles, or get full content of a specific article by slug. | | 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).