mf_accounting_refresh_token
Refresh the Money Forward accounting API access token to restore authenticated access when it expires.
Instructions
会計API アクセストークンをリフレッシュする
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Refresh the Money Forward accounting API access token to restore authenticated access when it expires.
会計API アクセストークンをリフレッシュする
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Changes observed during successful MCP inspections.
v0.2.0Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full behavioral burden, yet it discloses nothing about side effects, whether the refresh token is rotated, persistence of the new token, or failure modes. It adds only the bare operation name.
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?
A single short sentence that front-loads the verb and resource with no filler. It is appropriately sized, though it is so terse that it omits useful context rather than being optimally 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?
For a zero-parameter token-refresh operation with no output schema the description is minimally viable, but it should at least mention when a refresh is needed and what the caller receives in return. The client has enough to call it, but not enough to use it confidently.
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 takes zero parameters, so per the rubric the baseline is 4; there is nothing for the description to clarify beyond the schema's empty object. No additional parameter meaning is needed.
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 names a specific verb+resource (refresh the accounting API access token) and the 'accounting' qualifier distinguishes it from the sibling mf_refresh_token and the expense auth family. It stops short of explicitly stating how it differs from those siblings, so it does not reach 5.
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 guidance on when this should be invoked (e.g., on 401/expired-token errors, or that it must follow mf_accounting_auth_callback), nor on prerequisites such as an existing refresh token. The agent must infer the trigger condition entirely.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.