May 2026APITier

Why Claude's KYC Screener Needs UK-Native Data (And What Happens Without It)

Anthropic's KYC Screener agent has a UK data gap — no PAF address verification, no real-time Companies House PSC register, no HMRC VAT validation. Here's what that looks like in practice and how the APITier MCP connector closes it.

ClaudeAI AgentsKYCAMLUK ComplianceMCPFinancial Services

Anthropic just shipped ten finance agents. One of them — the KYC Screener — is exactly the kind of workflow that UK compliance teams have been waiting for AI to handle. Automated document screening, entity verification, beneficial ownership checks, decision-ready output.

The problem is that it has a data gap. And in UK AML compliance, data gaps are audit findings.

What Anthropic Shipped

In May 2026, Anthropic released ten ready-to-run agent templates for financial services, available as plugins in Claude Code and as Claude Managed Agents cookbooks. The agents cover two categories:

Research & Client Coverage
Pitch Builder
Meeting Preparer
Earnings Reviewer
Model Builder
Market Researcher
Finance & Operations
Valuation Reviewer
GL Reconciler
Month-End Closer
Statement Auditor
KYC Screener

Each agent is built on a composable connector architecture. The agent handles reasoning and workflow orchestration; data connectors handle grounding — giving the agent access to authoritative, real-time data rather than relying on the model's training knowledge. Current data partners include Dun & Bradstreet, Moody's, FactSet, MSCI, and LSEG.

Claude Opus 4.7 is the recommended model for these agents. It currently leads the Vals AI Finance Agent benchmark at 64.37%.

The Connector Architecture

Claude's finance agents are not standalone AI outputs. They are grounded reasoning systems. When the KYC Screener runs a check on a UK company, it does not hallucinate company details from training data. It calls a data connector, gets a structured response, and reasons over that response.

This is the right architecture for compliance. Auditable data sources. Traceable decisions. No fabricated entity details.

The weakness is that the connector is only as good as the data it returns. If the connector has gaps for a specific market — say, the UK — the agent produces incomplete output. The model is working correctly. The data isn't.

The UK Gap

Every current connector in the Anthropic finance agent ecosystem is US-centric or global-aggregate. None of them are UK-native.

1. Address Verification

A KYC workflow needs to verify that the address on a document is real, canonical, and matches a known registered address. In the UK, the canonical address database is the Royal Mail Postcode Address File (PAF) — 32 million UK addresses, each assigned a unique property reference: the UPRN (Unique Property Reference Number).

D&B's UK address coverage is derived from Companies House filings and third-party aggregation. It is not PAF. It does not include UPRN. For a UK compliance workflow, that means no canonical address verification against the national standard, no UPRN to anchor cross-source entity resolution, and address mismatches that look like discrepancies even when the entity is legitimate.

A PAF-unverified address in a KYC output is a flag. The compliance reviewer has to resolve it manually. That is the opposite of automation.

2. Company Entity Verification

UK entity verification requires Companies House — the official UK government register of all 5+ million active UK companies. It provides the registered company name, registered office address, company status, SIC codes, director register, and the PSC register (Persons with Significant Control — beneficial ownership).

The PSC register is a UK legal requirement under the 4th Anti-Money Laundering Directive. D&B sources from Companies House rather than querying it in real time. For a PSC update filed yesterday — D&B will lag. Companies House is the authoritative source.

3. VAT Number Validation

UK VAT numbers are validated against the HMRC VAT register in real time. A VAT number that was valid last quarter may be deregistered today. None of the current finance agent connectors provide real-time HMRC VAT validation.

4. Sort Code Verification

For GL Reconciler and Month-End Closer workflows, UK bank sort code validation requires the EISCD (Extended Industry Sort Code Directory) and modulus check algorithms — a UK-specific data source that US-oriented connectors do not have.

What It Looks Like in Practice

Scenario: Onboarding a UK private company — Acme Services Ltd, registered in Birmingham.

Without UK-Native Data
{
  "entity": "Acme Services Limited",
  "address": "14 Broad Street, Birmingham",
  "country": "GB",
  "status": "Active",
  "duns": "21-234-5678",
  "confidence": 0.74
}
Address not PAF-verified — no UPRN
No Companies House number
No PSC / beneficial ownership data
No VAT status
Confidence 0.74 → manual review flagged
Result: Manual review required.
With APITier Connector
{
  "address": {
    "canonical": "14 Broad Street, B1 2HF",
    "paf_verified": true,
    "uprn": "100070489101",
    "match_confidence": 0.99
  },
  "company": {
    "company_number": "08234567",
    "status": "Active",
    "psc": [{"control": "75-100%"}]
  },
  "vat": { "status": "Active" }
}
PAF-verified address with UPRN
Companies House entity confirmed
PSC register — AML requirement met
Live HMRC VAT status
Result: KYC passed. No manual review required.

The APITier MCP Connector

APITier has built and submitted a Model Context Protocol (MCP) connector to the Anthropic connector directory, specifically to close this gap. The connector exposes six tools:

ToolData SourceUse Case
verify_uk_addressRoyal Mail PAFCanonical address + UPRN verification
lookup_uprnOS AddressBaseFull address record + property metadata
verify_uk_companyCompanies House APIEntity name, address, status, SIC codes
get_company_pscCompanies House PSC registerBeneficial ownership / AML compliance
validate_vat_numberHMRC VAT registerLive VAT status verification
validate_sort_codeEISCD modulus checkUK bank sort code validation

Who This Is For

Compliance engineers at UK banks and fintechs
Building KYC automation on Claude — if you have hit the address verification wall or the PSC data gap, this connector is built for your workflow.
ML engineers integrating Claude into AML pipelines
The structured response schema is designed for downstream reasoning. UPRN-anchored address records give you a stable cross-source entity resolution key.
Developers building on Claude's finance agent templates
Drop the APITier connector alongside your existing connectors. It is additive, not a replacement for D&B or Moody's.

Try It

npm install @apitier/mcp-server

For hosted endpoint access and API keys, contact us at hello@apitier.com or visit www.apitier.com.

What Comes Next

UK compliance is the wedge use case. The same PAF + UPRN + Companies House data layer that powers KYC screening also underpins:

  • Statement AuditorRegistered address match, director verification for UK entities
  • GL ReconcilerVAT number validation against HMRC, sort code modulus checking
  • Pitch BuilderUK business density mapping, subsidiary resolution via Companies House

We are expanding the connector to cover these use cases across the Anthropic finance agent suite. If you are building UK financial workflows on Claude and want to talk about integration, reach out.


APITier is a UK financial data API provider. The @apitier/mcp-server MCP connector is available on npm. APITier has submitted a connector application to the Anthropic connector directory and applied to the Anthropic Partner Network.

Building UK Financial Workflows on Claude?

The APITier MCP connector is live on npm. Add UK-native PAF, Companies House, and HMRC VAT data to your agent in minutes.

← All news

Published May 2026 · APITier