Finance
Data source: Algorithmic (ISO 13616)
MCP Protocol
Endpoint
https://context.gnist.ai/mcp/iban-validation/
claude_desktop_config.json
{
"mcpServers": {
"gnist-iban-validation": {
"url": "https://context.gnist.ai/mcp/iban-validation/",
"headers": {
"Gnist-API-Key": "YOUR_API_KEY"
}
}
}
}
Shell
curl -X POST "https://context.gnist.ai/mcp/iban-validation/" \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-H "Gnist-API-Key: YOUR_API_KEY" \
-d '{"jsonrpc": "2.0", "method": "tools/call", "id": 1, "params": {"name": "validate_iban", "arguments": {"iban": "example"}}}'
REST API
API Root
https://context.gnist.ai/rest/iban-validation/
3 endpoints available:
GET /rest/iban-validation/validate_ibanGET /rest/iban-validation/get_supported_countriesGET /rest/iban-validation/report_feedback
Shell
curl "https://context.gnist.ai/rest/iban-validation/validate_iban?iban=example" \ -H "Gnist-API-Key: YOUR_API_KEY"
Python
import httpx
resp = httpx.get(
"https://context.gnist.ai/rest/iban-validation/validate_iban",
headers={"Gnist-API-Key": "YOUR_API_KEY"},
params={
"iban": "example"
},
)
print(resp.json())
Command Line
Command
gc iban-validation
CLI documentation will be available when the GnistAI SDK is published.
Install
pip install gnistai
Available Tools (3)
validate_ibanValidate an International Bank Account Number (IBAN).
| Parameter | Type | Required | Description |
|---|---|---|---|
iban | string | required |
get_supported_countriesList all countries that support IBAN with their expected IBAN lengths.
report_feedbackReport a bug, feature request, or general feedback for this data source.
| Parameter | Type | Required | Description |
|---|---|---|---|
feedback | string | required | |
feedback_type | string | optional | (default: "general") |