Wise
Server Details
Wise (https://wise.com) MCP, multi-currency account access via Personal Token + SCA key. Reads profi
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- mcp-dir/wise-mcp
- GitHub Stars
- 0
- Server Listing
- Wise
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 3.9/5 across 12 of 12 tools scored. Lowest: 3.3/5.
Every tool has a clearly distinct purpose. The six general MCP platform tools (authenticate, connect, marketplace, etc.) are separate from the six Wise-specific query tools (wise_get_balance_statement, wise_list_profiles, etc.). No two tools overlap in functionality.
The Wise-specific tools consistently follow the pattern 'wise_verb_noun' (e.g., wise_get_balance_statement, wise_list_profiles). The general tools use short descriptive names without a prefix, which is a minor inconsistency, but the grouping is logical and readable.
With 12 tools, the server is well-scoped. It provides sufficient coverage for both the MCP platform utilities and the Wise financial data integration without being bloated or sparse.
The tool set covers the core read operations for Wise (profiles, balances, transactions, card events, activities) and the essential MCP platform functions. Missing are write operations like creating transfers, but the server's focus appears to be data retrieval, so this is a minor gap.
Available Tools
12 toolsauthenticateAIdempotentInspect
MCP.AI for IDE agents (Cursor, etc.): log in in the browser, copy the access token. Best: add it to this server's config as a header Authorization: Bearer <token> for a permanent, non-expiring connection. Or paste it here for a session-only login: call with { token: "" } after the user pastes, or with no args to get the link.
| Name | Required | Description | Default |
|---|---|---|---|
| token | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations indicate idempotent and non-destructive. Description adds that calling with no args returns a link, and with token sets session. It explains the non-expiring vs session behavior, complementing annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three sentences, each adding value: purpose, best practice, and alternative usage. Could be slightly more concise but front-loads key info.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple auth tool with no output schema, the description covers both login paths, token usage, and outcome (link). Complete enough for an agent to use correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema has one optional parameter 'token' with no description. The description explains that it is a JWT token for paste, or omitted to get a link, adding essential meaning beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool is for authentication, with verb 'log in' and resource 'access token'. It distinguishes from siblings like 'connect' or 'report_bug' by being the only authentication tool.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear guidance on two usage scenarios: permanent config-based login and session-only token paste. It suggests the best practice (config) but lacks explicit when-not-to-use or direct comparison with siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
connectARead-onlyIdempotentInspect
Returns connection status and URLs. When all providers are connected, returns authenticated:true and empty pending[]. When credentials are missing, returns connect_url for the toolkit and per-install URLs.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description provides detailed behavioral context beyond annotations: it specifies the output format for two scenarios (authenticated:true with empty pending[] when connected, or connect_url when missing). This is informative for the agent.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, front-loaded with the primary purpose, then clarifying the two states. Every sentence adds value without redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has no parameters and no output schema, the description comprehensively explains the return values and states. It is complete for the tool's simplicity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
There are no parameters, so description cannot add parameter meaning. Baseline for 0 params is 4, and the description correctly focuses on the tool's output behavior.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool returns connection status and URLs, and explains the two possible states (all connected vs missing credentials). This is a specific verb-resource pair that distinguishes it from siblings like 'authenticate'.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies when to use (to check connection status or obtain URLs for missing credentials). While it does not explicitly mention when not to use, the context of sibling tools makes it clear that 'authenticate' is the alternative for performing authentication.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
marketplaceAInspect
The official mcp.ai marketplace — the in-platform catalog of every MCP/tool, AND the way to run them. Covers capability requests like "find an MCP that does X", "consulta um CPF", "is there a tool for Y". Core flow: action=search discovers MCPs by intent → describe returns one MCP's full profile (every tool with its id + params, pricing, auth) so you pick the right tool_id → invoke RUNS that tool. KEY: invoke works even when the MCP is NOT installed — it runs the tool pontualmente (one-off), without adding the MCP to the toolkit and without bloating the tool list. If the MCP needs a credential/login, invoke returns a connect link; if it is paid and the wallet is empty, invoke returns a checkout/top-up link (the user opens it, then you retry). Use install only to make an MCP PERMANENT in the active toolkit (its tools then show up natively in future sessions); prefer invoke for a single/occasional use. list_tools lists what is callable right now. subscribe/cancel handle per-MCP billing; report_bug sends feedback; request_mcp asks us to build a NEW MCP when nothing fits. Search/describe flag installed_in_toolkit vs installed_in_workspace. Writes (install/uninstall/subscribe/cancel and the one-off install behind invoke) require workspace owner/admin. It also carries the mcp.ai PROMPT LIBRARY, which is about ready-made prompt TEXT rather than MCPs: search_prompts finds one, get_prompt returns its full text with {{variables}} filled, and publish_prompt saves a prompt and returns a shareable mcp.ai/p/ link that opens without login.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| query | No | ||
| action | No | search | |
| mcp_id | No | ||
| message | No | ||
| tool_id | No | ||
| arguments | No | {} | |
| immediate | No | ||
| tier_slug | No | ||
| prompt_body | No | ||
| prompt_slug | No | ||
| prompt_tool | No | ||
| prompt_vars | No | {} | |
| conversation | No | [] | |
| prompt_title | No | ||
| request_name | No | ||
| cancel_reason | No | ||
| cancel_comment | No | ||
| prompt_targets | No | ||
| report_context | No | ||
| prompt_category | No | ||
| request_details | No | ||
| prompt_description | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description goes far beyond the annotations by explaining one-off invocation without installation, behavior when credentials or payment are needed (returning connect/checkout links), owner/admin requirements for writes, and how the prompt library works. These details are consistent with the annotation hints and add critical operational context.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single dense paragraph of roughly 250 words without visual structure. It is front-loaded with the main purpose but becomes a wall of text; bullet points or sections would improve readability. Every sentence is informative, but the lack of structure hurts scanability.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a complex multi-action tool, the description covers the major flows (search, describe, invoke, install, unsubscribe, report_bug, request_mcp, prompt library) and notes auth and output links. However, it omits details on the 'resume' action and does not describe the result format for search/list_tools, which are needed for fully correct usage.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With 0% schema description coverage, the description adds meaning to core parameters like action, mcp_id, tool_id, arguments, and prompt variables by explaining the flow. However, it does not explicitly cover all parameters (e.g., limit, conversation, immediate, tier_slug), leaving some gaps for a 23-parameter tool.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly identifies the tool as the official mcp.ai marketplace — an in-platform catalog of every MCP/tool and the way to run them. It explicitly covers capability requests and distinguishes itself from sibling tools (e.g., wise_*) by focusing on MCP discovery and execution.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides explicit guidance on when to use different actions: prefer invoke for single/occasional use, use install only for permanent addition, and uses list_tools for current availability. It also explains subscribe/cancel for billing, report_bug for feedback, request_mcp for new MCPs, and separates the prompt library from MCP functionality.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
report_bugAIdempotentInspect
Report a bug, missing feature, or send feedback. Include the conversation array with recent messages for reproduction.
| Name | Required | Description | Default |
|---|---|---|---|
| context | No | ||
| message | Yes | ||
| conversation | No | [] |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description adds behavioral context beyond annotations by mentioning the inclusion of conversation messages for reproduction. Annotations declare idempotentHint=true and destructiveHint=false, which the description implicitly supports.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences with no unnecessary content. It is front-loaded with the action and provides key advice about the conversation array.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple reporting tool with 1 required parameter and no output schema, the description covers the basic action and includes a suggestion for reproduction. However, it does not mention what happens after reporting (e.g., ticket creation, no return value).
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must explain parameters. It only hints at the 'conversation' parameter but does not detail 'message' (required) or 'context'. This leaves agents unclear about parameter usage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool reports bugs, missing features, or sends feedback, providing a specific verb and resource. While it doesn't explicitly differentiate from siblings, the sibling tools are distinct (e.g., wise_*, authenticate, marketplace).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description advises including the conversation array for reproduction, but lacks explicit when/why to use this tool over alternatives. However, no sibling tool serves a similar purpose, making usage somewhat intuitive.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
show_versionARead-onlyIdempotentInspect
Show the current MCP platform and adapter versions.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, destructiveHint=false. The description adds no additional behavioral traits beyond confirming it shows versions. With annotations covering safety, this is adequate but not enhanced.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single short sentence, directly front-loading the purpose. No extraneous information, every word earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no output schema and no parameters, the description covers the essential purpose. It could mention the format or typical use case, but overall it is complete for a simple version tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, so the description does not need to add parameter info. Baseline is 4, and the description is sufficient.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'show' and the resource 'current MCP platform and adapter versions', making the purpose obvious. It is distinct from sibling tools which involve authentication, connectivity, or financial operations.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for checking versions. No explicit when-not or alternatives are provided, but given the simplicity and read-only nature, the usage is clear and unlikely to be confused with other tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
toolkit_infoARead-onlyIdempotentInspect
Returns the current toolkit state: installed MCPs, their connection status, the accounts connected to each one, and how many catalog tools each exposes.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, establishing a safe read-only profile. The description adds value beyond annotations by specifying the exact content of the state (MCPs, connection status, accounts, tool counts), which is useful context. No contradiction exists.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence that fully captures the tool's purpose without any wasted words. It is appropriately concise for such a simple tool.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With no output schema and zero parameters, the description carries the full burden of explaining return values, and it does so adequately by listing the four key types of information returned. The tool is simple enough that no additional context is needed for correct invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, so the baseline is 4 per the rubric. The description correctly omits parameter details because none exist, and the schema (with 100% coverage since it's empty) requires no further explanation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Returns') and clearly identifies the resource ('current toolkit state') while enumerating exactly what is included (installed MCPs, connection status, accounts, catalog tool counts). This distinguishes it from siblings like show_version which only report version info.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies when to use the tool by stating what it returns, making the use case clear. It does not name alternatives or exclusions, but the context is unambiguous: use this to inspect the overall toolkit state. This matches the 'clear context, no exclusions' level.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
wise_get_balance_statementARead-onlyIdempotentInspect
Extrato completo de um balance (uma moeda) num período: deposits, withdrawals, conversions, fees, INTEREST e — crucialmente — CARD_TRANSACTION (compras com o cartão de débito Wise). Este é o ÚNICO endpoint da Wise que expõe transações de cartão; é a razão de existir deste MCP (o conector Wise da Pluggy/Open Finance brasileiro NÃO inclui card events). Janela máxima 469 dias. SCA-protegido (o Worker assina via private.pem internamente).
Bulk support: accepts profile_ids, balance_ids for batched execution.
| Name | Required | Description | Default |
|---|---|---|---|
| type | No | ||
| account | No | ||
| currency | Yes | ||
| balance_id | Yes | ||
| profile_id | Yes | ||
| balance_ids | No | ||
| profile_ids | No | ||
| interval_end | Yes | ||
| interval_start | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations indicate readOnlyHint=true, idempotentHint=true, and destructiveHint=false. The description adds important behavioral traits beyond annotations: SCA-protected (signed internally via private.pem), maximum window of 469 days, and bulk support via profile_ids/balance_ids. This provides transparency about security constraints and limits. No contradiction with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise, using two paragraphs that front-load the most critical information (purpose and uniqueness) followed by limitations and bulk support. Every sentence adds value, though the second paragraph on bulk support could be integrated more smoothly. Overall, it is efficient and well-structured.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complexity (9 parameters, no output schema), the description provides adequate context: purpose, unique value, limitations (469 days, SCA protection), and bulk support. However, it lacks details on return format and parameter specifics, which would be helpful for an agent. Still, it covers the essential context for selection and usage.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Despite zero schema description coverage (0%), the description does not explain individual parameter meanings beyond listing them. It mentions required parameters (profile_id, balance_id, currency, interval_start, interval_end) and optional ones (type, account, balance_ids, profile_ids) but provides no further semantics, data types, or format expectations. The description adds minimal value for parameter understanding.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description explicitly states the tool returns a full statement of a balance including specific transaction types (deposits, withdrawals, conversions, fees, interest, and crucially CARD_TRANSACTION). It emphasizes that this is the only Wise endpoint that exposes card transactions, clearly distinguishing it from siblings like wise_get_card_transaction (which is for a single card transaction) and wise_list_activities (which lists general activities).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context on when to use this tool: it is the unique endpoint for card transactions and is the reason this MCP exists, comparing to the alternative 'Wise connector da Pluggy/Open Finance brasileiro' which does not include card events. It also mentions bulk support and a maximum window of 469 days. However, it does not explicitly state when NOT to use it (e.g., if no card transactions needed), but the unique value proposition is clearly communicated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
wise_get_card_transactionBRead-onlyIdempotentInspect
Detalhe de uma transação de cartão Wise. token é o id que apareceu como CARD_PAYMENT em wise_list_activities ou em creditCardMetadata em wise_get_balance_statement.
| Name | Required | Description | Default |
|---|---|---|---|
| token | Yes | ||
| account | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, destructiveHint=false, idempotentHint=true, covering safety. Description adds context about token source but no additional behavioral traits (e.g., latency, data freshness). No contradiction with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Description is very concise with two sentences and no fluff. However, it is in Portuguese while the tool name is English, which slightly reduces clarity. Structure is front-loaded but could benefit from a brief English summary.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
No output schema exists, yet description does not explain what is returned (only says 'Detalhe'). The optional 'account' parameter is also unexplained. Given the tool has only 2 parameters and no nested objects, the description should provide more context about outputs and the optional parameter.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Description explains the 'token' parameter meaning and its relationship to other tool outputs, which adds value over schema with 0% coverage. However, the optional 'account' parameter is not mentioned at all, leaving it undocumented.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states it provides details of a Wise card transaction, with specific verb and resource. Although in Portuguese, purpose is clear and mentions token provenance from sibling tools. However, language mismatch with English tool name may cause slight confusion for AI agents.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Description gives guidance on where to obtain the token (from wise_list_activities or wise_get_balance_statement), which serves as a prerequisite. However, it does not explicitly state when to use this tool versus alternatives or any exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
wise_list_activitiesBRead-onlyIdempotentInspect
Feed unificado de atividades do profile, mais recente primeiro. Cada item tem type (TRANSFER, CARD_PAYMENT, INTEREST, EXCHANGE, BALANCE_DEPOSIT, …). SCA-protegido.
Bulk support: accepts profile_ids for batched execution.
| Name | Required | Description | Default |
|---|---|---|---|
| size | No | ||
| since | No | ||
| until | No | ||
| status | No | ||
| account | No | ||
| profile_id | Yes | ||
| next_cursor | No | ||
| profile_ids | No | ||
| monetary_resource_type | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate read-only, non-destructive, idempotent behavior. Description adds 'SCA-protegido' (requires strong authentication) and bulk execution support via profile_ids, providing behavioral context beyond annotations. No contradictions.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two efficient sentences front-loading purpose and key traits (recency, types, SCA, bulk). No redundant words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite good annotations and a clear purpose, the description lacks essential parameter documentation for a 9-parameter tool with 0% schema coverage. No output schema means return format is unknown. Incomplete for an agent to invoke correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema has 0% coverage (no descriptions on parameters). The description does not explain any of the 9 parameters (e.g., size, since, until, status, account, next_cursor, monetary_resource_type) nor the required profile_id. With no parameter documentation in either schema or description, the agent cannot infer parameter usage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states it's a feed of activities, sorted most recent first, and lists example types (TRANSFER, CARD_PAYMENT, etc.). It distinguishes itself from sibling tools like wise_list_transfers and wise_list_balances by being a unified feed, but lacks explicit differentiation language.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No explicit guidance on when to use this tool versus alternatives like wise_list_transfers or wise_get_card_transaction. Mentions SCA protection and bulk support, but does not explain prerequisites or when not to use.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
wise_list_balancesARead-onlyIdempotentInspect
Lista os saldos multi-moeda de um profile. Cada balance tem um id que é usado em wise_get_balance_statement. Default STANDARD; passe 'SAVINGS' pra jars/pots.
Bulk support: accepts profile_ids for batched execution.
| Name | Required | Description | Default |
|---|---|---|---|
| types | No | ||
| account | No | ||
| profile_id | Yes | ||
| profile_ids | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, so description adds useful behavioral details like default STANDARD type and batch execution support, without any contradiction.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two short paragraphs with the first sentence front-loading the purpose, and no extra words. Every sentence adds value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
While annotations cover safety and the description explains most aspects, the unexplained 'account' parameter and lack of return format info (no output schema) leave some gaps for an agent.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description explains the 'types' parameter (STANDARD/SAVINGS), implies 'profile_id', and introduces 'profile_ids' for batch, but does not address the 'account' parameter, leaving a gap given the 0% schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it lists multi-currency balances of a profile, using a specific verb 'List' and resource, and it distinguishes itself from sibling tools like wise_get_balance_statement by mentioning the id link.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Implicit guidance on when to use (listing balances) and hints at using wise_get_balance_statement for specific statements via the id, but lacks explicit exclusions or when-not scenarios.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
wise_list_profilesBRead-onlyIdempotentInspect
Chama a Wise API /v2/profiles e retorna todos os profiles que o Personal Token enxerga (PERSONAL/BUSINESS). Use pra confirmar o profile_id antes de outras tools.
| Name | Required | Description | Default |
|---|---|---|---|
| account | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnlyHint, idempotentHint, and non-destructive. The description adds that it returns PERSONAL/BUSINESS types and is for confirming profile_id, but does not disclose additional behaviors like response format or pagination.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two succinct sentences with no unnecessary words. Front-loaded with the API call and purpose, then usage instruction.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no output schema, the description lacks return value details. Parameter is unexplained. However, the tool is simple and the description covers the main purpose. Sibling tools provide context but the definition itself is incomplete for full autonomous use.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has one parameter ('account') with 0% description coverage, and the description does not mention this parameter at all. No meaning is added beyond schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it calls /v2/profiles and returns all profiles (PERSONAL/BUSINESS) visible to the Personal Token. Although it does not explicitly differentiate from sibling tools, the purpose is specific and actionable.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly tells the agent to use it 'to confirm the profile_id before other tools', providing a clear usage context. Does not include when-not-to-use or alternatives, but the guidance is direct and helpful.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
wise_list_transfersBRead-onlyIdempotentInspect
Lista transferências (P2P sends + receives) do profile. Filtre por status (CSV de estados como 'incoming_payment_waiting,outgoing_payment_sent'), moeda, datas. SCA-protegido.
Bulk support: accepts profile_ids for batched execution.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| offset | No | ||
| status | No | ||
| account | No | ||
| profile_id | Yes | ||
| profile_ids | No | ||
| source_currency | No | ||
| target_currency | No | ||
| created_date_end | No | ||
| created_date_start | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnly, idempotent, and non-destructive behavior. The description adds that the tool is SCA-protected and supports batched execution via profile_ids, which provides useful behavioral context beyond annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is short and front-loaded with the core purpose, followed by filtering details and a note on bulk support. It is efficient, though the Portuguese language may reduce clarity for English-centric AI agents.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With no output schema and 10 parameters, the description omits many details such as pagination, response format, error handling, and full parameter semantics. The SCA and batch notes add value but leave significant gaps for a complex tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, requiring the description to explain parameters. However, it only covers status, currency, and dates, leaving parameters like limit, offset, account, source_currency, target_currency, created_date_start/end, and profile_id (required) partially or unaddressed.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it lists P2P transfers (sends and receives) from a profile, using specific verb and resource. It does not explicitly differentiate from sibling tools like wise_list_activities or wise_list_balances, but the focus on transfers is distinctive.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides filter options (status, currency, dates) and mentions SCA protection and bulk support, but does not specify when to use this tool versus alternatives or provide exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- AlicenseAqualityCmaintenanceRead-only access to Wise (TransferWise) personal API for profiles, balances, exchange rates, transfers, and recipients.1175MIT
- Alicense-qualityDmaintenanceEnables access to Wise API functionality for managing recipients and sending money transfers. Supports listing recipients, creating new recipients, validating account details, and executing money transfers with authentication handling.8MIT
- Flicense-qualityDmaintenanceExposes Monobank personal account data through MCP tools, allowing users to fetch client info, accounts, and jars. It also enables retrieving account statements for specific time periods.
Your Connectors
Sign in to create a connector for this server.