Skip to main content
Glama
sebastienrousseau

iso20022-bank-profile-mcp

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
ISO20022_BANK_PROFILE_TOKENNoStatic dev-mode token for HTTP transport (alternative to OAuth)
ISO20022_BANK_PROFILE_ENTITLEMENTSNoComma- or space-separated list of premium profile IDs the operator is licensed for, or '*' for all
ISO20022_BANK_PROFILE_OAUTH_ISSUERNoOAuth 2.1 issuer URL for token validation (required when using OAuth with HTTP transport)
ISO20022_BANK_PROFILE_OAUTH_SCOPESNoRequired OAuth scopes (optional)
ISO20022_BANK_PROFILE_OAUTH_AUDIENCENoOAuth 2.1 audience for token validation (required when using OAuth with HTTP transport)
ISO20022_BANK_PROFILE_OAUTH_JWKS_URLNoJWKS URL for token validation (defaults to <issuer>/.well-known/jwks.json)<issuer>/.well-known/jwks.json

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tools
{
  "listChanged": false
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
list_profilesA

List the available clearing profiles as lightweight summaries.

Use this to discover the ``profile_id`` values the other tools accept.
get_profileA

Return one clearing profile in full, including its rule bodies.

Args:
    profile_id: The clearing profile identifier.
lint_payloadA

Evaluate a payload against a clearing profile and return findings.

Args:
    payload_content: The raw ISO 20022 message text.
    profile_id: The clearing profile to lint against.
validate_profile_definitionA

Validate a bank-supplied profile / rule-pack definition (raw JSON).

Args:
    definition_content: The candidate profile definition, as JSON text.

Prompts

Interactive templates invoked by user choice

NameDescription
lint_bank_payloadGuide an agent through linting a payload against a clearing profile. Teaches the canonical three-step workflow: discover the available profiles with ``list_profiles``, inspect the chosen one with ``get_profile``, then evaluate a payload with ``lint_payload``. Args: profile_id: The clearing profile the guidance should target.

Resources

Contextual data attached and managed by the client

NameDescription
profiles_resourceExpose the clearing-profile summaries as a static JSON resource. Mirrors the ``list_profiles`` tool for clients that prefer to read context as a resource rather than invoke a tool.

TDQS

A4.2/5.0

Scored across 4 tools

Disambiguation5/5

Each tool has a clearly distinct purpose: listing profiles, retrieving full details, validating a profile definition, and linting a payload against a profile. No overlap or ambiguity.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern in snake_case: list_profiles, get_profile, validate_profile_definition, lint_payload. Naming is predictable and clear.

Tool Count5/5

Four tools is well-scoped for the domain: discovery, retrieval, definition validation, and payload linting. Each tool earns its place without excess or deficiency.

Completeness4/5

The tool surface covers core workflows (discovery, retrieval, validation, linting). Missing explicit create/update/delete for profiles, but validation suggests profile definition submission. Minor gap but reasonable for a read-heavy MCP.

Maintenance

ActivityActive
ResponsivenessNo issues