Data source: Curated dataset (ISO 9362, public records)
https://context.gnist.ai/mcp/swift-bic/
AuthenticationAll requests require a Gnist-API-Key header (or api_key query parameter).
Free tier: 100 calls/day. Get your API key.
Tools (4)
lookup_swift_codeLook up a bank by its SWIFT/BIC code.
Returns bank name, country, city, and branch information for the given SWIFT/BIC code.
| Parameter | Type | Required | Description |
|---|---|---|---|
swift_code | string | required | 8 or 11 character SWIFT/BIC code (e.g. CHASUS33, DEUTDEFF). |
{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "lookup_swift_code",
"arguments": {
"swift_code": "example"
}
}
}search_swift_banksSearch the SWIFT/BIC code database.
| Parameter | Type | Required | Description |
|---|---|---|---|
query | string | required | Search by bank name, city, or SWIFT code. |
limit | integer | optional | Maximum results to return. (default: 20) |
{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "search_swift_banks",
"arguments": {
"query": "example"
}
}
}list_banks_by_countryList banks by country code from the SWIFT/BIC database.
| Parameter | Type | Required | Description |
|---|---|---|---|
country_code | string | required | ISO 3166-1 alpha-2 country code (e.g. US, GB, DE, JP). |
limit | integer | optional | Maximum results to return. (default: 50) |
{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "list_banks_by_country",
"arguments": {
"country_code": "NO"
}
}
}report_feedbackReport a bug, feature request, or general feedback for this data source.
Use this when something doesn't work as expected, when you'd like
a new feature, or when you have suggestions for improvement.
Args:
feedback: Describe the issue or suggestion.
feedback_type: One of 'bug', 'feature_request', or 'general'.
| Parameter | Type | Required | Description |
|---|---|---|---|
feedback | string | required | |
feedback_type | string | optional | (default: "general") |
{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "report_feedback",
"arguments": {
"feedback": "example"
}
}
}Quick Start
curl -X POST "https://context.gnist.ai/mcp/swift-bic/" \
-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": "lookup_swift_code", "arguments": {"swift_code": "example"}}}'
import httpx
resp = httpx.post(
"https://context.gnist.ai/mcp/swift-bic/",
headers={"Gnist-API-Key": "YOUR_API_KEY", "Content-Type": "application/json"},
json={
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "lookup_swift_code",
"arguments": {
"swift_code": "example"
}
}
},
)
print(resp.json())