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

@getkyonis/mcp-server

v1.0.0

Published

MCP server for Kyonis compliance API — KYC verification, AML screening, due diligence, entity risk, and UBO resolution. Agent-native KYC/AML for AI agents.

Readme

Kyonis MCP Server

npm version License: MIT MCP

The first MCP server for KYC/AML compliance. Give your AI agents native access to identity verification, sanctions screening, due diligence, and beneficial ownership resolution — conformant with EU LCB-FT and GDPR.

5 production-ready tools: kyc_verify, aml_screen, due_diligence, entity_risk, ubo_resolve. Sub-500ms screening (Jaro-Winkler, trigram, Levenshtein, phonetic). Live OFAC/EU/UN/HMT sanctions data. Sandbox tier with 500 free verifications/month.

Quick start

1. Get a free API key

Sign up at dashboard.kyonis.com — sandbox tier includes 500 verifications/month, no credit card.

2. Add to your MCP client

Claude Desktop

Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "kyonis": {
      "command": "npx",
      "args": ["-y", "@getkyonis/mcp-server"],
      "env": {
        "KYONIS_API_KEY": "ky_sandbox_..."
      }
    }
  }
}

Restart Claude Desktop. Try:

"Screen 'Vladimir Putin' against sanctions lists."

"Run KYC for Marie Dupont, born 1990-04-12, French passport 14AB12345."

"Resolve UBOs for SIREN 552120222."

Cursor / Cline / Continue

Same config format. Add the kyonis entry to your client's MCP servers config.

Programmatic (Node)

npx -y @getkyonis/mcp-server

The server speaks MCP over stdio by default. Use --http (or MCP_TRANSPORT=http) to expose an HTTP/SSE endpoint on port 3000.

3. LangChain

from langchain_mcp_adapters.client import MultiServerMCPClient
from langgraph.prebuilt import create_react_agent

client = MultiServerMCPClient({
    "kyonis": {
        "command": "npx",
        "args": ["-y", "@getkyonis/mcp-server"],
        "env": {"KYONIS_API_KEY": "ky_sandbox_..."},
        "transport": "stdio",
    }
})

tools = await client.get_tools()
agent = create_react_agent("anthropic:claude-sonnet-4-6", tools)
await agent.ainvoke({"messages": [{"role": "user", "content": "Screen 'Acme Corp' for AML risks"}]})

4. CrewAI

from crewai import Agent, Task, Crew
from crewai_tools import MCPServerAdapter

with MCPServerAdapter({
    "command": "npx",
    "args": ["-y", "@getkyonis/mcp-server"],
    "env": {"KYONIS_API_KEY": "ky_sandbox_..."},
}) as kyonis_tools:
    compliance_agent = Agent(
        role="Compliance Analyst",
        goal="Run thorough AML/KYC checks on entities",
        tools=kyonis_tools,
    )
    Crew(agents=[compliance_agent], tasks=[Task(
        description="Run due diligence on Acme Corp registered in the UK",
        agent=compliance_agent,
    )]).kickoff()

Tools

| Tool | Purpose | p95 latency | Required params | |---|---|---|---| | kyc_verify | Full KYC: sanctions + PEP + adverse media + document checks. Decision: approved / review / rejected. | < 3s | first_name, last_name | | aml_screen | Screen against OFAC, EU, UN, HMT with multi-algorithm fuzzy matching. | < 500ms | name | | due_diligence | Enhanced due diligence: jurisdiction risk + adverse media + corporate structure. | < 10s | entity | | entity_risk | Real-time risk score for a registered entity (cached). | < 200ms | entity_id | | ubo_resolve | Resolve Ultimate Beneficial Owners via INSEE Sirene + OpenOwnership. | < 5s | entity |

Every response includes an explainable reasoning field — required for audit trail under LCB-FT (FR), 5AMLD (EU) and equivalents.

Configuration

| Env var | Default | Description | |---|---|---| | KYONIS_API_KEY | (required) | API key from dashboard.kyonis.com | | KYONIS_API_BASE_URL | https://api.kyonis.com | Override for self-hosted or staging | | MCP_TRANSPORT | stdio | Set to http for HTTP/SSE transport | | PORT | 3000 | HTTP server port (when MCP_TRANSPORT=http) | | TIMEOUT | 30000 | Request timeout (ms) |

Pricing

| Tier | Price | Verifications | |---|---|---| | Sandbox | Free | 500/month | | Starter | €199/mo | 5 000/month | | Growth | €1 499/mo | 50 000/month | | Enterprise | Custom | Unlimited + SLA |

See full pricing →

Compliance

  • GDPR — data residency in EU (Scaleway, Paris). Right-to-erasure endpoints exposed via API.
  • LCB-FT (FR) — 7-year audit trail (Art. L561-12 CMF). Every call logged with reasoning and source attribution.
  • 5AMLD / 6AMLD — sanctions screening from official primary sources, refreshed daily.
  • Data sources — OFAC SDN, EU Consolidated Sanctions, UN SC List, HMT/OFSI, DFAT, INSEE Sirene, OpenOwnership.

Full data sources documentation: docs.kyonis.com/data-sources.

Documentation

Support

License

MIT