<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: OjasKord</title>
    <description>The latest articles on DEV Community by OjasKord (@ojaskord).</description>
    <link>https://dev.to/ojaskord</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3924146%2F5fd95d8d-8be8-4572-8d44-79d88725ec32.png</url>
      <title>DEV Community: OjasKord</title>
      <link>https://dev.to/ojaskord</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/ojaskord"/>
    <language>en</language>
    <item>
      <title>I built an MCP server that screens suppliers against 328 sanctions lists before your agent approves a payment</title>
      <dc:creator>OjasKord</dc:creator>
      <pubDate>Mon, 11 May 2026 04:47:56 +0000</pubDate>
      <link>https://dev.to/ojaskord/i-built-an-mcp-server-that-screens-suppliers-against-328-sanctions-lists-before-your-agent-approves-26j7</link>
      <guid>https://dev.to/ojaskord/i-built-an-mcp-server-that-screens-suppliers-against-328-sanctions-lists-before-your-agent-approves-26j7</guid>
      <description>&lt;p&gt;I've been building niche MCP servers for AI agents. This one solves a problem I kept running into: agents that approve payments or onboard suppliers with zero counterparty verification.&lt;/p&gt;

&lt;p&gt;The risk is real. A single payment to a sanctioned entity creates criminal liability. A single fraudulent supplier invoice with no registry check creates unrecoverable financial exposure. Agents don't know this — they just approve.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I built
&lt;/h2&gt;

&lt;p&gt;Bizfile MCP is a Model Context Protocol server with three tools:&lt;/p&gt;

&lt;p&gt;validate_counterparty — checks UK Companies House, Singapore ACRA, and OpenCorporates (210M+ companies across 130+ jurisdictions). Returns company status, directors, filing history, AI risk score 0-100, KYC confidence HIGH/MEDIUM/LOW, and a PROCEED/EDD/BLOCK verdict. One call, machine-ready output.&lt;/p&gt;

&lt;p&gt;screen_counterparty — screens against 328 global sanctions lists including UN, EU, OFAC, UK HMT, and MAS Singapore via OpenSanctions, updated daily. Returns CLEAR/MATCH verdict and matched list names.&lt;/p&gt;

&lt;p&gt;validate_counterparty_lite — fast registry-only check for high-volume workflows. No AI scoring, sub-second response, lower token cost.&lt;/p&gt;

&lt;h2&gt;
  
  
  Example
&lt;/h2&gt;

&lt;p&gt;curl -X POST &lt;a href="https://bizfile-mcp-production.up.railway.app" rel="noopener noreferrer"&gt;https://bizfile-mcp-production.up.railway.app&lt;/a&gt; \&lt;br&gt;
  -H "Content-Type: application/json" \&lt;br&gt;
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"validate_counterparty","arguments":{"company_name":"ROLLS-ROYCE PLC","country":"GB"}}}'&lt;/p&gt;

&lt;p&gt;Returns:&lt;/p&gt;

&lt;p&gt;{&lt;br&gt;
  "agent_action": "PROCEED",&lt;br&gt;
  "registered_name": "ROLLS-ROYCE PLC",&lt;br&gt;
  "registration_number": "01003142",&lt;br&gt;
  "status": "active",&lt;br&gt;
  "kyc_confidence": "HIGH",&lt;br&gt;
  "risk_score": 12,&lt;br&gt;
  "risk_level": "LOW"&lt;br&gt;
}&lt;/p&gt;

&lt;h2&gt;
  
  
  How to use it
&lt;/h2&gt;

&lt;p&gt;Any MCP-compatible harness works. Smithery install:&lt;/p&gt;

&lt;p&gt;smithery mcp add OjasKord/bizfile-mcp&lt;/p&gt;

&lt;p&gt;Or connect directly via HTTP at:&lt;br&gt;
&lt;a href="https://bizfile-mcp-production.up.railway.app" rel="noopener noreferrer"&gt;https://bizfile-mcp-production.up.railway.app&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Pricing
&lt;/h2&gt;

&lt;p&gt;Free tier: 20 calls/month, no API key needed.&lt;br&gt;
Paid: $0.019/call metered or $20 for 500 calls that never expire.&lt;/p&gt;

&lt;p&gt;Full docs and all 9 MCP servers at kordagencies.com.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>mcp</category>
      <category>agents</category>
      <category>kyc</category>
    </item>
  </channel>
</rss>
