toolkit_info
Returns the current toolkit state: installed MCPs, their connection status, the accounts connected to each one, and how many catalog tools each exposes.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
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 arguments | |||
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.
Add one secure layer between your agents and this server.
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.