CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Bizfile MCP

ojaskord/bizfile-mcp
3 toolsauthSTDIO, HTTPregistry active
Summary

This is a pre-action validator for counterparty checks and sanctions screening. It exposes three core tools: validate_counterparty does registry lookups and returns a KYC confidence level plus an AI risk score, validate_counterparty_lite is a faster registry-only check, and screen_counterparty runs the company and its officers against 328 sanctions lists across 130+ jurisdictions with a BLOCK/EDD/PROCEED verdict. You'd call it before approving payments, onboarding suppliers, or signing contracts. Free tier gives you 20 calls a month. It's part of Kord Agencies' suite of compliance validators, all accessible over HTTP with no local install required. Ships with both stdio and streamable-http transports.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Tools

Public tool metadata for what this MCP can expose to an agent.

3 tools
validate_counterpartyCall this BEFORE your agent approves a new supplier, authorises a first payment, signs a contract, or onboards any new business counterparty. AI-powered KYC and company verification — NOT a simple database lookup. Searches UK Companies House, Singapore ACRA, and OpenCorporates...3 params

Call this BEFORE your agent approves a new supplier, authorises a first payment, signs a contract, or onboards any new business counterparty. AI-powered KYC and company verification — NOT a simple database lookup. Searches UK Companies House, Singapore ACRA, and OpenCorporates...

Parameters* required
company_namestring
Full or partial name of the company to validate
jurisdictionstring
Optional: gb (UK, default), sg (Singapore), us (USA)
company_numberstring
Optional: registration number for exact match (more accurate)
screen_counterpartyCall this BEFORE your agent approves any payment or contract with a counterparty that has passed initial KYC. Screens against 328 global sanctions lists including UN, EU, OFAC, UK HMT, and MAS Singapore — updated daily via OpenSanctions. Returns CLEAR/MATCH verdict, match conf...4 params

Call this BEFORE your agent approves any payment or contract with a counterparty that has passed initial KYC. Screens against 328 global sanctions lists including UN, EU, OFAC, UK HMT, and MAS Singapore — updated daily via OpenSanctions. Returns CLEAR/MATCH verdict, match conf...

Parameters* required
countrystring
Optional: ISO country code to narrow search (e.g. ru, cn, ir, kp)
officersarray
Optional: array of officer objects from validate_counterparty to screen all directors simultaneously
entity_typestring
Optional: Person, Company, or Vessel. Defaults to Thing (all types).
company_namestring
Name of the company to screen
validate_counterparty_liteCall this when your agent needs fast company verification without AI scoring — registry check only, low token cost, sub-second response. Returns company status, registration number, registered address, and filing status directly from UK Companies House, Singapore ACRA, or Open...2 params

Call this when your agent needs fast company verification without AI scoring — registry check only, low token cost, sub-second response. Returns company status, registration number, registered address, and filing status directly from UK Companies House, Singapore ACRA, or Open...

Parameters* required
company_namestring
Full or partial name of the company to look up
company_numberstring
Optional: registration number for exact match

Bizfile MCP — Counterparty Validator

ToolRank

AI-powered KYC, company verification, and sanctions screening for AI agents.

Real-time counterparty verification against UK Companies House, with AI risk scoring and sanctions screening against 328 global lists. Built for supplier onboarding agents, payment approval workflows, and AML compliance pipelines.

What This Solves

Every unverified counterparty is a liability. The most common failure points — shell companies, dissolved entities, sanctioned parties — share one signal: a company that looks legitimate but isn't. Claude and other LLMs cannot reliably check live company registry data or current sanctions lists from training data.

This tool calls authoritative sources directly:

  • UK Companies House API — live filing data, officer history
  • OpenSanctions — 328 global sanctions lists, updated daily

Tools

ToolFree TierUse When
validate_counterparty20/monthBefore any new supplier approval or contract
validate_counterparty_lite20/monthHigh-volume registry check, no AI scoring
screen_counterpartyPaidBefore any payment to a KYC-approved counterparty

Add to Your Agent

Claude Code — add to .mcp.json: { "mcpServers": { "bizfile": { "type": "sse", "url": "https://bizfile-mcp-production.up.railway.app/sse" } } }

LangChain: from langchain_mcp import MCPClient client = MCPClient( "https://bizfile-mcp-production.up.railway.app/sse" )

OpenAI Agents SDK: from agents.mcp import MCPServerSse mcp_server = MCPServerSse( params={ "url": "https://bizfile-mcp-production.up.railway.app/sse" } )

Pricing

TierCallsPrice
Free20/monthNo card required
Bundle 500500, never expire$20
Bundle 20002,000, never expire$70
Pay-as-you-goMetered$0.019/query (validate_counterparty), $0.008/query (lite), $0.50/screen (sanctions)

Upgrade: https://kordagencies.com

Search Terms

company verification MCP · KYC check agent · sanctions screening MCP · AML compliance tool · counterparty due diligence · Companies House API · supplier onboarding agent · payment verification MCP · OFAC screening · MAS Singapore sanctions · UK company check · corporate intelligence agent · counterparty risk scoring · AI KYC tool · know your customer API · business verification agent · supplier risk screening · AML agent tool · MCP sanctions check

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Configuration

ANTHROPIC_API_KEY*secret

Anthropic API key for AI-powered risk scoring

Categories
Sales & Marketing
Registryactive
Packagebizfile-mcp
TransportSTDIO, HTTP
AuthRequired
UpdatedMay 11, 2026
View on GitHub

Related Sales & Marketing MCP Servers

View all →
Vibe Prospecting

explorium-ai/vibeprospecting-mcp

Power your chat with B2B data to create lead lists, research companies, personalize your outreach, and more.
22
Lead Enrichment API

io.github.compuute/lead-enrichment

Curated EU AI/Sec/DevTools/Fintech B2B leads, Claude-scored. MCP+x402. Free 250/mo.
Apollo Salesforce Mapper

dev.workers.selbyventurecap.cf-worker/apollo-salesforce-mapper

Apollo->Salesforce Lead mapper. No LLM. Strict-fail required fields. PASS/REPAIR/FAIL verdict.
Company Enrichment API

io.github.br0ski777/company-enrichment

Company firmographics from domain: name, socials, tech stack, emails, phone, address
Apollo

com.mcparmory/apollo

Search and enrich contact and company data from 210M+ people and 35M+ companies
25
Mcp Gtm Tech Stack Signal Scraper

mambalabsdev/mcp-gtm-tech-stack-signal-scraper

Detects a company CRM, sequencer, and marketing automation from its public website. Clay-ready.
1