INDIVIDUAL MCP TOOL
validate_iban
Validate a single International Bank Account Number (IBAN) against the official ISO 13616 structure for its country.
LIVE ENDPOINT
https://mcp.ibanchecker.cash/mcp
Connect to this endpoint to inspect the live schema for validate_iban and invoke it with your own arguments.
Indexed input schema
{}Risk classification
Inferred read-only · medium confidence · heuristic, not a guarantee.
- No write-capable action terms were found; this is not proof that invocation has no side effects.
Parent server
CONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.ibanchecker-mcp]
url = "https://mcp.ibanchecker.cash/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"ibanchecker-mcp": {
"type": "http",
"url": "https://mcp.ibanchecker.cash/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: ibanchecker-mcp
Remote MCP URL: https://mcp.ibanchecker.cash/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"ibanchecker-mcp": {
"url": "https://mcp.ibanchecker.cash/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"ibanchecker-mcp": {
"type": "http",
"url": "https://mcp.ibanchecker.cash/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "ibanchecker-mcp",
"transport": "streamable-http",
"url": "https://mcp.ibanchecker.cash/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
Related tools
validate_bulk_ibans— Validate a batch of up to 100 IBANs in one call, applying the same ISO 13616 checks as `validate_iban` (country, length, BBAN structure, MOD-97).extract_ibans_from_text— Scan a free-form block of text and pull out every candidate IBAN, then validate each one.get_iban_format— Return the IBAN format specification for a country, covering 90 supported IBAN-using countries.lookup_bic— Look up a financial institution by its BIC (Business Identifier Code, also called SWIFT code) and return the matching bank's details.