streamable-httpMITupdated 21d ago
Read-only Model Context Protocol tools for the Vett compliance API — sanctions/PEP/watchlist screening, product recalls, US business lookup, and federal contract search. Free tier: 20 calls/hour per IP, no API key required.
Vett Compliance MCP Server で何ができる?
Vett Compliance MCP Server
Read-only Model Context Protocol tools for the Vett compliance API — sanctions/PEP/watchlist screening, product recalls, US business lookup, and federal contract search. Free tier: 20 calls/hour per IP, no API key required.
Hosted at https://wimberly.solutions/mcp (streamable HTTP transport). No installation —
point any MCP client at the URL below.
This repo is the public discovery/documentation surface for the hosted server. The screening logic itself lives in a private repo alongside the rest of the Vett API — this is intentionally a docs-only repo, not a self-hostable server.
Tools
| Tool | What it does |
|---|---|
screen_name |
Screen a person/company against 12 sanctions, PEP, watchlist, and recall databases (OFAC SDN, UK OFSI, UN SC, US CSL, EU FSF, Canada SEMA, Australia DFAT, US PEP, FBI Most Wanted, World Bank debarred, US watchlists, product recalls) |
screen_wallet |
Check a crypto wallet address (BTC/ETH/XMR/etc.) against OFAC's sanctioned-address list |
check_recall |
Check a product/manufacturer against CPSC/FDA/NHTSA recalls |
lookup_business |
Look up a US business in the SAM.gov entity registry (UEI, CAGE code, NAICS) |
search_gov_contracts |
Search active US federal contract solicitations by keyword/NAICS |
list_status |
Freshness + entry counts for every source screen_name fans out to |
All tools are read-only — no mutations, no PII beyond what's already public record.
Claude Desktop
Add to your MCP config (claude_desktop_config.json):
{
"mcpServers": {
"vett-compliance": {
"url": "https://wimberly.solutions/mcp"
}
}
}
Claude Code
claude mcp add --transport http vett-compliance https://wimberly.solutions/mcp
Generic MCP client (streamable HTTP)
from mcp import ClientSession
from mcp.client.streamable_http import streamablehttp_client
async with streamablehttp_client("https://wimberly.solutions/mcp") as (read, write, _):
async with ClientSession(read, write) as session:
await session.initialize()
result = await session.call_tool("screen_name", {"query": "some name"})
Rate limits
20 calls/hour per IP address, unauthenticated. Exceeding it returns a 429 with an upgrade hint pointing at the full RapidAPI listing (higher limits, more sources, API key auth).
About
Built and operated by Wimberly Solutions. Questions or issues: open a GitHub issue on this repo.
インストール
Vett Compliance MCP Server をクライアントに追加します。お使いのものを選んでください。
claude mcp add --transport http vett-compliance-mcp-server https://wimberly.solutions/mcpcodex mcp add vett-compliance-mcp-server --url https://wimberly.solutions/mcp{
"mcpServers": {
"vett-compliance-mcp-server": {
"url": "https://wimberly.solutions/mcp"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"vett-compliance-mcp-server": {
"type": "http",
"url": "https://wimberly.solutions/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"vett-compliance-mcp-server": {
"url": "https://wimberly.solutions/mcp"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"vett-compliance-mcp-server": {
"serverUrl": "https://wimberly.solutions/mcp"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
6 個のツール
Vett Compliance MCP Server は接続したエージェントに 6 個のツールを提供します。
- screen_name
- Screen a person/company against 12 sanctions, PEP, watchlist, and recall databases (OFAC SDN, UK OFSI, UN SC, US CSL, EU FSF, Canada SEMA, Australia DFAT, US PEP, FBI Most Wanted, World Bank debarred, US watchlists, product recalls)
- screen_wallet
- Check a crypto wallet address (BTC/ETH/XMR/etc.) against OFAC's sanctioned-address list
- check_recall
- Check a product/manufacturer against CPSC/FDA/NHTSA recalls
- lookup_business
- Look up a US business in the SAM.gov entity registry (UEI, CAGE code, NAICS)
- search_gov_contracts
- Search active US federal contract solicitations by keyword/NAICS
- list_status
- Freshness + entry counts for every source `screen_name` fans out to
スコア
72 / 100
良好
- ドキュメント22/25
- メンテナンス19/25
- 信頼性13/20
- 機能6/15
- 導入のしやすさ12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 13 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 6 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
バージョン履歴
| バージョン | 公開日 |
|---|---|
| 1.0.0最新 | 2026年8月18日 |