hive-mcp-agent-kyc

hive-mcp-agent-kyc

Routes blockchain address screening to third-party KYC/AML providers and checks public sanctions lists, serving as a clean-money gate primitive for MCP-compatible agents.

Category
访问服务器

README

<!-- HIVE_BANNER_V1 --> <p align="center"> <a href="https://hive-mcp-gateway.onrender.com/agent-kyc/health"> <img src="https://hive-mcp-gateway.onrender.com/og.svg" alt="Hive Civilization MCP Gateway · broker / observer layer · CLEAN-MONEY gate" width="100%"/> </a> </p>

<h1 align="center">hive-mcp-agent-kyc</h1>

<p align="center"><strong>Broker / observer layer for KYC/AML screening · CLEAN-MONEY gate primitive</strong></p>

<p align="center"> <a href="https://smithery.ai/server/hivecivilization/hive-mcp-agent-kyc"><img alt="Smithery" src="https://img.shields.io/badge/Smithery-hivecivilization%2Fhive--mcp--agent--kyc-C08D23?style=flat-square"/></a> <a href="https://glama.ai/mcp/servers"><img alt="Glama" src="https://img.shields.io/badge/Glama-pending-C08D23?style=flat-square"/></a> <a href="https://hive-mcp-gateway.onrender.com/agent-kyc/health"><img alt="Live" src="https://img.shields.io/badge/gateway-live-C08D23?style=flat-square"/></a> <a href="https://github.com/srotzin/hive-mcp-agent-kyc/releases"><img alt="Release" src="https://img.shields.io/github/v/release/srotzin/hive-mcp-agent-kyc?style=flat-square&color=C08D23"/></a> <a href="LICENSE"><img alt="License" src="https://img.shields.io/badge/license-MIT-C08D23?style=flat-square"/></a> </p>

<p align="center"> <code>https://hive-mcp-gateway.onrender.com/agent-kyc/mcp</code> </p>


Scope disclaimer

Hive Agent KYC is a broker/observer layer. It routes screening requests to third-party providers and surfaces public sanctions list matches. It is not a regulated money-services business, does not make custody, lending, or transaction-permitting decisions, and does not issue compliance attestations on behalf of regulated entities. Final compliance determinations remain with the requesting agent and its operator.

This disclaimer is also surfaced verbatim in every tool's response payload, in /.well-known/agent.json, and in the JSON-LD description.


What this is

hive-mcp-agent-kyc is a Model Context Protocol (MCP) server that any MCP-compatible client (Claude Desktop, Cursor, Manus, agent runtimes) can call to:

  1. Route a blockchain address screening request to one of three third-party KYC/AML providers — Chainalysis, TRM Labs, or Elliptic — and return the provider's risk score and flags verbatim (no enrichment, no Hive scoring layer).
  2. Check public sanctions list matches against the OFAC SDN list and the FATF high-risk-jurisdiction lists.
  3. Read back an audit-log entry for a prior query (DID + timestamp + provider + result code only — no PII).

What this does not do:

  • It does not hold custody of any KYC documents.
  • It does not make a final allow/deny determination on a transaction.
  • It does not issue an attestation that a person/entity is "KYC'd by Hive".
  • It does not operate as a money-services business.

The purpose is to be the CLEAN-MONEY gate primitive that other Hive surfaces (Vault, Trade, Swap, Treasury) can call before settling. Compliance determinations remain with the calling operator.

  • Protocol: MCP 2024-11-05 over Streamable-HTTP / JSON-RPC 2.0
  • Transport: POST /mcp
  • Discovery: GET /.well-known/mcp.json, GET /.well-known/agent.json
  • Health: GET /health
  • Settlement: real x402 — USDC on Base L2 to wallet 0x15184bf50b3d3f52b60434f8942b7d52f2eb436e. No mock. No simulated.
  • Backend status: provider partnership keys pending — agent_kyc_screen_address returns 503 with backend_pending: true until configured. Public list tools (OFAC, FATF) return real data today.
  • Brand gold: Pantone 1245 C / #C08D23

Tools

Tool Cost Description
agent_kyc_screen_address $0.10 USDC (Base) Route screening request to Chainalysis / TRM Labs / Elliptic. Returns provider response verbatim. 503 backend_pending until keys configured.
agent_kyc_check_ofac_list free Check identifier against OFAC SDN public list. Cached 24h.
agent_kyc_check_fatf_list free Check ISO-3166 country code against FATF Call-for-Action and Increased-Monitoring lists.
agent_kyc_query_status free Read prior audit-log entry by query_id. Returns DID + timestamp + provider + result code + address hash. No PII.

agent_kyc_screen_address

{
  "name": "agent_kyc_screen_address",
  "arguments": {
    "address": "0x...",
    "chain": "base",
    "provider": "chainalysis",
    "requester_did": "did:hive:agent-vault"
  }
}

Until partnership keys are configured, returns:

{
  "ok": false,
  "status": 503,
  "backend_pending": true,
  "message": "Third-party screening backend not yet configured...",
  "x402": {
    "recipient": "0x15184bf50b3d3f52b60434f8942b7d52f2eb436e",
    "chain": "base",
    "asset": "USDC",
    "amount_usdc": 0.10
  }
}

agent_kyc_check_ofac_list

{
  "name": "agent_kyc_check_ofac_list",
  "arguments": { "identifier": "0x...", "identifier_type": "address" }
}

Returns the cache age, source URL (treasury.gov), and a deterministic match flag against the cached SDN list.

agent_kyc_check_fatf_list

{
  "name": "agent_kyc_check_fatf_list",
  "arguments": { "country_code": "IR" }
}

Returns category (call_for_action | increased_monitoring | not_listed) + FATF source URL.

agent_kyc_query_status

{
  "name": "agent_kyc_query_status",
  "arguments": { "query_id": "..." }
}

Audit log

The audit log stores only these fields per query, in memory:

  • query_id (UUID)
  • did (requesting agent's DID)
  • ts (ISO-8601 timestamp)
  • provider (chainalysis | trm | elliptic | ofac_public | fatf_public)
  • result_code (HTTP status returned)
  • address_hash (first 16 hex chars of SHA-256 of lowercase identifier)

Raw addresses, names, and PII are never stored. Operators wanting durable logs route them to their own SIEM via webhook (not a Hive responsibility).


Connect

Claude Desktop

{
  "mcpServers": {
    "hive-agent-kyc": {
      "url": "https://hive-mcp-gateway.onrender.com/agent-kyc/mcp"
    }
  }
}

Cursor / Manus / generic MCP client

Point your client at:

https://hive-mcp-gateway.onrender.com/agent-kyc/mcp

Streamable-HTTP transport, JSON-RPC 2.0, MCP 2024-11-05.

Local

git clone https://github.com/srotzin/hive-mcp-agent-kyc
cd hive-mcp-agent-kyc
npm install
node server.js
# server runs on :3000

To enable the screening provider routing locally, set any of:

export CHAINALYSIS_API_KEY=...
export TRM_API_KEY=...
export ELLIPTIC_API_KEY=...

When no key is set, agent_kyc_screen_address returns 503 backend_pending. The OFAC and FATF tools work without keys.


Settlement

Real x402 rails. The screening tool quotes:

recipient : 0x15184bf50b3d3f52b60434f8942b7d52f2eb436e
chain     : Base L2
asset     : USDC
amount    : $0.10 USDC per screen call

No mock. No simulated. No testnet pretending to be mainnet. While the screening backend is in backend_pending, no charge is applied — the x402 quote is informational so calling agents can pre-flight payment configuration.


Hive doctrine context

This server is the CLEAN-MONEY gate primitive in the Hive Civilization three-gate doctrine (NEED + YIELD + CLEAN-MONEY). Any other Hive surface that touches settlement is expected to call agent_kyc_screen_address and the public-list tools before clearing.

It is intentionally a thin broker: enrichment, scoring, and final decision remain with the third-party provider and the operator, respectively. Hive does not become a regulated MSB by routing.


License

MIT — see LICENSE.


<p align="center"> <code style="color:#C08D23">#C08D23</code> · Hive Civilization · 2026 </p>

Hive Civilization Directory

Part of the Hive Civilization — agent-native financial infrastructure.

  • Endpoint Directory: https://thehiveryiq.com
  • Live Leaderboard: https://hive-a2amev.onrender.com/leaderboard
  • Revenue Dashboard: https://hivemine-dashboard.onrender.com
  • Other MCP Servers: https://github.com/srotzin?tab=repositories&q=hive-mcp

Brand: #C08D23 <!-- /hive-footer -->

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选