Skip to main content
Glama

Server Details

Financial and accounting reconciliation on F360 Finanças (management for retail chains and franchise

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
mcp-dir/f360-mcp
GitHub Stars
0
Server Listing
F360 Finanças

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

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.

100% free. Your data is private.
Tool DescriptionsC

Average 3.7/5 across 19 of 19 tools scored. Lowest: 1.5/5.

Server CoherenceB
Disambiguation4/5

Most tools are clearly distinct, especially the f360_* family which separates listing, detail, and report generation per resource. However, 'authenticate' and 'connect' both deal with connection state, and 'f360_list_accounts' vs 'f360_listar_planos_contas' could be confused without reading descriptions closely.

Naming Consistency2/5

Naming is inconsistent: generic tools use simple English verbs (connect, show_version), while financial tools mix English (list_accounts) and Portuguese (listar_notas, obter_xml) with inconsistent verb forms and prefixes. The patterns are not predictable across the full set.

Tool Count3/5

At 19 tools, the set is borderline heavy. Six tools (authenticate, connect, marketplace, report_bug, show_version, toolkit_info) are platform-level utilities unrelated to the financial domain, inflating the count; the remaining 13 financial tools are well-scoped for a read-only reporting API.

Completeness3/5

The financial tools cover listing and detail retrieval for core entities (accounts, notes, people, chart of accounts) and generate/download reports. However, there are no create/update/delete operations, and no getter for accounts or other entities, limiting the surface to read-only reporting.

Available Tools

19 tools
authenticateA
Idempotent
Inspect

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
tokenNo
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already indicate idempotentHint=true and destructiveHint=false. Description adds that calling with no args returns a link, and with token it logs in. It does not contradict annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Description is clear and front-loaded, but slightly verbose. Could be trimmed while retaining all key information. Still, every sentence adds value.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Covers both use cases and required steps. With no output schema, missing return value details, but for authentication the side effect (logged in state) is the main outcome, which is implied.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Only parameter 'token' has 0% schema coverage but the description fully explains its purpose: paste the JWT for session login. Also clarifies the alternative of using config for permanent token.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

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, explaining how to log in via browser or paste token. It distinguishes two methods: permanent config or session-only login with token parameter. No ambiguity.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly explains when to use each approach (permanent vs session), and provides alternative (config header). Also mentions that calling with no args returns a link for initial login.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

connectA
Read-onlyIdempotent
Inspect

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.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already provide readOnlyHint and idempotentHint. Description adds context on response details (authenticated, pending, connect_url) without contradicting annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two concise sentences, front-loaded with key purpose. Every sentence adds value.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Adequately explains the main behavior and output states. Could mention error handling or rate limits, but for a simple status check the coverage is sufficient.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

No parameters; schema coverage is 100%. Description adds no additional parameter info, which is acceptable for zero-parameter tools.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description clearly states the tool returns connection status and URLs, and distinguishes two scenarios (all connected vs missing credentials). This distinguishes it from sibling 'authenticate' which performs auth.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Implicitly suggests using this to check connection status before other operations, but does not explicitly state when-not or alternatives like 'authenticate'.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

f360_baixar_relatorioA
Read-onlyIdempotent
Inspect

Baixa o resultado de um relatório já gerado (Download?id=). Use o id devolvido por uma das tools f360_relatorio_*.

Bulk support: accepts ids for batched execution.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYes
idsNo
accountNo
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already indicate read-only, idempotent, non-destructive. Description adds bulk execution capability, enhancing transparency 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.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two concise sentences that directly convey purpose and bulk support without extraneous information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Covers core functionality and bulk use, but missing explanation for 'account' parameter and return value details. Adequate for a simple tool but not fully comprehensive.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema has 0% description coverage. Description explains 'id' and mentions 'ids' for bulk, but does not cover 'account' parameter, leaving it undocumented.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Clearly states that the tool downloads the result of an already generated report using the id from f360_relatorio_* tools. Distinguishes from others like f360_obter_danfe and f360_obter_xml.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly instructs to use the id from f360_relatorio_* tools, providing clear context for when to invoke this tool. Lacks explicit exclusions or alternatives but is effective.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

f360_list_accountsA
Read-onlyIdempotent
Inspect

Lista as contas/empresas F360 conectadas a este install — id, label.

ParametersJSON Schema
NameRequiredDescriptionDefault
accountNo
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, idempotentHint=true, destructiveHint=false, so the description adds value by specifying the returned fields (id, label) and the scope ('conectadas a este install'). No contradictions 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.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, front-loaded sentence with no wasted words. It efficiently conveys the core purpose and output fields.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple list tool with rich annotations, the description covers the basic purpose. However, it lacks explanation of the optional 'account' parameter (e.g., whether it filters or specifies a specific account), and there is no output schema to detail return structure. Given siblings are similar, a bit more context would help.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has one optional parameter 'account' with 0% description coverage. The description does not mention the parameter or explain its purpose. Since schema coverage is low, the description should compensate, but it does not add meaning beyond the parameter name.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool lists accounts/companies connected to this install and returns id and label. It uses a specific verb ('lista') and resource ('contas/empresas'), distinguishing it from sibling list tools for other entities.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage context (listing connected F360 accounts) but provides no explicit guidance on when to use it vs. alternatives or any prerequisites. The purpose is clear, but no exclusions or trade-offs are mentioned.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

f360_listar_classificacao_produtosD
Read-onlyIdempotent
Inspect

Lista as classificações de produtos (ListarClassificacaoProdutos).

ParametersJSON Schema
NameRequiredDescriptionDefault
accountNo
Behavior1/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, which fully disclose the tool's non-destructive, read-only nature. The description adds no behavioral context beyond what the annotations provide, such as output format or pagination behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness2/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is very concise (one short sentence) but at the expense of informativeness. It merely restates the tool name, wasting an opportunity to provide useful guidance.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness1/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool is a list operation with one optional parameter and no output schema, the description should explain what product classifications are, what the account parameter does, and what the output looks like. It provides none of this, making it inadequate for confident agent invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters1/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The single optional parameter 'account' is undocumented in both the description and the input schema (schema coverage 0%). The description fails to explain its purpose or expected format, forcing the agent to assume its meaning.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose2/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description repeats the tool's name with a verb and resource ('lista as classificações de produtos'), but it offers no clarification on what 'classificações de produtos' means or how it differs from sibling list tools like f360_listar_pessoas or f360_listar_planos_contas. This makes the purpose vague.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is provided on when to use this tool versus alternatives. There is no mention of context, prerequisites, or exclusions, leaving the agent to guess.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

f360_listar_notasA
Read-onlyIdempotent
Inspect

Lista notas fiscais (ListarNotas). Paginado por pagina. Filtros: registro (ex.: NFSe), inicio/fim (ISO AAAA-MM-DD), tipo (ex.: Criação), empresas (CNPJs separados por vírgula), cliente_fornecedores (CNPJ/CPF).

ParametersJSON Schema
NameRequiredDescriptionDefault
fimNo
tipoNo
inicioNo
paginaNo
accountNo
empresasNo
registroNo
cliente_fornecedoresNo
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description complements annotations (readOnlyHint=true, destructiveHint=false) by stating that the tool is paginated via the 'pagina' parameter. It does not mention limits or default ordering, but adds useful behavioral context beyond the annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, well-structured sentence with a clear list of filters. It is front-loaded with the main action and contains no unnecessary words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool has 8 parameters and no output schema. The description covers all important filter parameters and pagination, which is adequate for a list tool. It lacks details on response format or prerequisites, but given the tool's simplicity, it is reasonably complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

With 0% schema coverage, the description adds significant meaning for most parameters: it specifies ISO format for date filters, provides examples for 'registro' and 'tipo', and explains comma separation for 'empresas'. However, the 'account' parameter is not mentioned in the description.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description starts with 'Lista notas fiscais' (Lists tax invoices), clearly stating the verb and resource. It also mentions pagination and lists filters, which distinguishes it from sibling tools like f360_listar_pessoas.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description does not explicitly state when to use this tool versus alternatives. It implies usage through the name and filter list but lacks guidance on when not to use it or what other tools might be more appropriate.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

f360_listar_pessoasB
Read-onlyIdempotent
Inspect

Lista pessoas (clientes/fornecedores) (ListarPessoas). Paginado por pagina. definicao filtra o tipo ("ambos", "clientes", "fornecedores").

ParametersJSON Schema
NameRequiredDescriptionDefault
paginaNo
accountNo
definicaoNo
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already indicate read-only and idempotent behavior. The description adds useful context about pagination and filtering, going beyond what annotations provide. 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.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two concise sentences fully front-loaded with purpose and key details. No waste.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description explains pagination and filtering but omits explanation for the 'account' parameter and does not describe the output format or return structure. Given no output schema, more context is needed.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%. The description explains 'pagina' and 'definicao' (with valid values), but 'account' is not mentioned at all, leaving it ambiguous.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states it lists people (clients/suppliers) with pagination and filtering. It uses specific verbs and resources, but doesn't explicitly differentiate from sibling tools like 'f360_obter_pessoa' (which gets a single person).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explains pagination and filtering options, implying when to use them, but provides no explicit guidance on when to use this tool versus alternatives or when not to use it.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

f360_listar_planos_contasD
Read-onlyIdempotent
Inspect

Lista os planos de contas (ListarPlanosContas).

ParametersJSON Schema
NameRequiredDescriptionDefault
accountNo
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, destructiveHint=false, idempotentHint=true. The description adds no behavioral details beyond what the annotations provide, such as side effects, authentication needs, or output format. It does not contradict annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness2/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single sentence but is too brief and uninformative. It does not earn its place because it adds no value beyond the tool name. True conciseness would include essential details without wasting words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With one optional parameter, no output schema, and no parameter descriptions, the description should at least explain the parameter's purpose and the structure of the listing. The current description is incomplete for an agent to use the tool effectively.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters1/5

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 tool description does not mention or explain this parameter. The agent has no information about what 'account' means or how to use it, requiring guesswork.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose2/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description 'Lista os planos de contas (ListarPlanosContas)' essentially restates the tool name, providing no additional clarity on what the tool does beyond the name itself. It fails to distinguish the tool from siblings like 'f360_list_accounts' or 'f360_obter_plano_contas'.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description offers no guidance on when to use this tool versus alternatives, nor does it specify any prerequisites or exclusions. The agent is left without context to decide whether to use this tool over similar listing/getting tools.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

f360_obter_danfeA
Read-onlyIdempotent
Inspect

Obtém o DANFE de uma nota por id (ObterDanfe).

Bulk support: accepts ids for batched execution.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYes
idsNo
accountNo
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true and idempotentHint=true, so the description adds value by noting bulk support (accepts multiple IDs). However, it does not explain output format, size limits, or error scenarios, which would further enhance transparency.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is extremely concise: two short sentences with no fluff. It front-loads the core purpose and then adds the bulk support detail. Every sentence earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool is simple (get DANFE by ID/batch) and the description covers the main action and bulk capability. However, it fails to mention what the tool returns (e.g., PDF, URL) or any authentication prerequisites, which is missing given no output schema.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

With 0% schema description coverage, the description partially explains the 'ids' parameter for batched execution but does not clarify the 'id' parameter (likely the note ID) or the 'account' parameter. It adds minimal semantic value beyond the parameter names.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool obtains the DANFE (a tax document) of a note by ID, with specific verb 'Obtém' and resource 'DANFE'. It also mentions bulk support via 'ids', distinguishing it from siblings like 'f360_obter_xml' which gets XML data.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies the tool is for retrieving DANFE documents and supports batched execution, but lacks explicit guidance on when to use it versus alternatives (e.g., f360_obter_xml for XML). No prerequisites or exclusions are stated.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

f360_obter_pessoaB
Read-onlyIdempotent
Inspect

Detalha uma pessoa por id (ObterPessoa).

Bulk support: accepts ids for batched execution.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYes
idsNo
accountNo
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, destructiveHint=false, idempotentHint=true. The description adds that the tool supports batched execution via the 'ids' parameter, which is valuable behavioral context beyond the annotations. However, it does not disclose other traits like rate limits or output behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is extremely concise: two sentences. The first states the core purpose, and the second adds bulk support. No unnecessary words, well front-loaded.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With 3 parameters, no output schema, and low schema coverage, the description should provide more context (e.g., return format, details on 'account' parameter). It only covers the basics of fetching by ID and batch, leaving the agent underinformed.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must compensate. It explains 'id' implicitly and 'ids' as for batch, but the 'account' parameter is entirely unmentioned. The description adds minimal meaning beyond the schema's structural constraints.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's action: 'Detalha uma pessoa por id' (details a person by ID) and highlights bulk support with 'ids'. This distinguishes it from sibling tools like f360_listar_pessoas, which lists people without a specific ID, and other obter_* tools for different entities.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage when you have a person's ID(s) but provides no explicit guidance on when to use this tool versus alternatives. There is no mention of prerequisites, context, or when not to use it, leaving the agent without decision support.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

f360_obter_plano_contasB
Read-onlyIdempotent
Inspect

Detalha um plano de contas por id (ObterPlanoDeContas).

Bulk support: accepts ids for batched execution.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYes
idsNo
accountNo
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already indicate readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is clear. The description adds that it supports batched execution (ids parameter), but does not disclose any other behaviors like permission requirements or response format. Since annotations cover most behavioral aspects, a 3 is appropriate.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is very concise—two sentences that front-load the main action and mention bulk support. No wasted words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With three parameters, no output schema, and a sibling list tool, the description should provide more context, such as return format, parameter interplay, or typical use cases. It falls short, leaving the agent potentially unable to infer correct usage.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, and the description does not explain the 'account' parameter at all. While 'id' and 'ids' are implied by the text, their meanings and relationship (e.g., whether ids overrides id) are unclear. The description adds minimal value beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states that the tool details a chart of accounts by ID ('Detalha um plano de contas por id'), which matches the tool name. It distinguishes from the sibling list tool (f360_listar_planos_contas) by indicating this is a get/detail operation. However, it could be more explicit about what a 'plano de contas' is.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is provided on when to use this tool versus alternatives like f360_listar_planos_contas. It only mentions bulk support, but does not specify when batched execution is appropriate or needed.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

f360_obter_xmlA
Read-onlyIdempotent
Inspect

Obtém o XML de uma nota por id (ObterXML).

Bulk support: accepts ids for batched execution.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYes
idsNo
accountNo
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the tool is clearly a safe read operation. The description adds the detail that it performs 'ObterXML' (get XML) and supports batch, which is consistent but does not reveal additional constraints like authentication or data format. Given the annotation coverage, the description adds moderate value.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two concise sentences with no wasted words. The bulk support note is front-loaded. Every sentence earns its place, and the structure is optimal for quick parsing.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's simplicity and strong annotations, the description is adequate but not complete. It does not mention the return format (expected XML string) or any response structure. Since there is no output schema, the description could provide more context, making it a 3.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 0%, so the description carries the burden. It explains 'id' (primary identifier) and 'ids' (for bulk), but does not mention the 'account' parameter. This partial explanation helps but leaves a gap. Baseline for 0% coverage is lower, but the description compensates somewhat.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool retrieves XML of a note by ID, with bulk support. This distinguishes it from siblings like f360_obter_danfe (which likely gets DANFE PDF) and other unrelated tools. The purpose is specific and well-defined.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage when XML of a note is needed, especially hinting at bulk execution via 'accepts ids for batched execution.' However, it does not explicitly state when not to use it or provide alternatives (e.g., f360_obter_danfe for PDFs). The guidance is present but incomplete.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

f360_relatorio_conciliacao_cartoesA
Read-onlyIdempotent
Inspect

Gera o relatório de CONCILIAÇÃO DE CARTÕES (GerarRelatorioDeConciliacaoDeCartoes) por período. É a base da conciliação (pareia com o Banco MCP). Pode devolver um id, baixe com f360_baixar_relatorio.

ParametersJSON Schema
NameRequiredDescriptionDefault
accountNo
data_fimYes
data_inicioYes
cnpj_empresasNo
tipo_conciliacaoNo
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Beyond annotations (readOnlyHint, idempotentHint, destructiveHint), the description adds that the tool may return an ID and requires a subsequent download. It also explains its role in reconciliation. 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.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences convey the core purpose and usage flow efficiently. Some detail could be structured better, but it is front-loaded with key information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given 5 parameters and no output schema, the description explains the purpose and a multi-step flow (generate then download). However, it omits parameter details, error handling, and response format, leaving gaps 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.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 0%, but the description only mentions 'por período' covering the required date parameters. It does not explain the optional parameters (account, cnpj_empresas, tipo_conciliacao) leaving significant gaps for the agent.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states it generates a card reconciliation report by period ('Gera o relatório de CONCILIAÇÃO DE CARTÕES ... por período'). It distinguishes from sibling report tools like f360_relatorio_contabil and f360_relatorio_transferencias. The verb 'gera' and resource are specific.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It explains the tool is the basis of reconciliation and pairs with Bank MCP, providing context. It instructs to download the result using f360_baixar_relatorio. However, it does not explicitly state when not to use or alternatives.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

f360_relatorio_contabilB
Read-onlyIdempotent
Inspect

Gera o relatório contábil/gerencial (GerarRelatorio). Período por data_inicio/data_fim (ISO AAAA-MM-DD). Pode devolver um id de relatório, baixe com f360_baixar_relatorio.

ParametersJSON Schema
NameRequiredDescriptionDefault
contasNo
accountNo
data_fimYes
data_inicioYes
cnpj_empresasNo
modelo_contabilNo
modelo_relatorioNo
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true and idempotentHint=true. Description adds that it returns an id and should be used with download sibling, but does not discuss potential side effects, rate limits, or error handling.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences, directly to the point, no unnecessary words. Front-loaded with core purpose.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Provides essential flow (generate then download) but lacks explanation of non-obvious parameters and return value details. For a 7-param tool, more context on filters is expected.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Only describes data_inicio and data_fim with format, leaving 5 other parameters (contas, account, cnpj_empresas, modelo_contabil, modelo_relatorio) unexplained. With low schema description coverage (0%), the description fails to compensate adequately.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description clearly states it generates accounting/management reports and specifies period via dates. It differentiates from the sibling f360_baixar_relatorio by noting the output is an id for download.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Provides indirect guidance by mentioning that the report id can be downloaded with f360_baixar_relatorio, but no explicit when-to-use vs alternative report tools (e.g., f360_relatorio_conciliacao_cartoes).

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

f360_relatorio_transferenciasA
Read-onlyIdempotent
Inspect

Gera o relatório de transferências entre contas (GerarRelatorioTransferenciasEntreContas) por período. Pode devolver um id, baixe com f360_baixar_relatorio.

ParametersJSON Schema
NameRequiredDescriptionDefault
accountNo
data_fimYes
data_inicioYes
cnpj_empresasNo
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already indicate read-only and idempotent behavior. The description adds value by stating that the tool may return an id, implying an asynchronous or deferred download pattern. No contradictions 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.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is extremely concise with two sentences. The first sentence immediately states the purpose and scope, and the second covers the return behavior and next steps. No unnecessary words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool has 4 parameters, no output schema, and moderate complexity, the description covers the core function and return behavior. However, it lacks details on parameter formats, required vs optional fields, and the structure of the report. Additional context would be needed for robust use.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

With 0% schema description coverage, the description should explain all parameters. It only briefly implies that data_inicio and data_fim define the period, but does not clarify account or cnpj_empresas. Two of four parameters are left completely unexplained.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool generates a report of transfers between accounts by period, using a specific verb and resource. It also distinguishes from the sibling tool f360_baixar_relatorio by mentioning the return of an id.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides partial guidance by noting that an id can be returned and should be used with f360_baixar_relatorio. However, it does not differentiate this tool from other report generation tools (e.g., f360_relatorio_conciliacao_cartoes), leaving the agent to infer when to use this specific one.

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
queryNo
actionNosearch
mcp_idNo
messageNo
tool_idNo
argumentsNo{}
immediateNo
tier_slugNo
prompt_bodyNo
prompt_slugNo
prompt_toolNo
prompt_varsNo{}
conversationNo[]
prompt_titleNo
request_nameNo
cancel_reasonNo
cancel_commentNo
prompt_targetsNo
report_contextNo
prompt_categoryNo
request_detailsNo
prompt_descriptionNo
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations mark this tool as non-readonly, non-destructive, and open-world. The description goes beyond these by stating writes require workspace owner/admin, invoke performs a one-off run even when the MCP is not installed, and returns connect/checkout links for credential or payment needs. No contradiction with annotations is present.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is lengthy but densely packed, organized around a clear workflow and distinct sections for invoke vs install, permissions, and the prompt library. Every sentence adds functional detail, and the front-loaded core flow helps readability. It is long but justified by the tool's breadth.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description covers the entire lifecycle: discovery, execution, installation, billing, permissions, and a separate prompt library. It even includes edge cases such as connect/checkout links and one-off invocation. However, it omits the 'resume' action and some parameters like immediate, leaving minor gaps for an otherwise thorough operational guide.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

With 0% schema coverage, the description compensates by explaining the central 'action' parameter and its enumerated values, plus core args like tool_id, mcp_id, and arguments. However, many parameters (cancel_reason, immediate, tier_slug, conversation, prompt_vars) are not elaborated, leaving gaps for edge-case usage. It partially compensates but not fully for 23 parameters.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with 'The official mcp.ai marketplace — the in-platform catalog of every MCP/tool, AND the way to run them,' clearly establishing the tool's dual role as catalog and execution layer. It then enumerates distinct actions (search, describe, invoke, install) and contrasts with sibling tools by its central marketplace function. This is a specific verb+resource description that distinguishes it from the narrower F360 and toolkit tools.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly instructs when to use invoke over install: 'prefer invoke for a single/occasional use' and 'Use install only to make an MCP PERMANENT.' It also lays out the core flow search→describe→invoke, lists subscribe/cancel for billing, report_bug for feedback, and request_mcp when nothing fits. This gives the agent clear decision rules and alternatives.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

report_bugA
Idempotent
Inspect

Report a bug, missing feature, or send feedback. Include the conversation array with recent messages for reproduction.

ParametersJSON Schema
NameRequiredDescriptionDefault
contextNo
messageYes
conversationNo[]
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations (readOnlyHint=false, destructiveHint=false, idempotentHint=true) already indicate the tool is non-read-only, non-destructive, and idempotent. The description adds minimal extra transparency beyond 'reproduction,' so it does not significantly enhance the agent's understanding of behavioral traits.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is exceptionally concise: two sentences that state the purpose and provide a key usage instruction. No unnecessary words or repetition.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given that there is no output schema and three parameters, the description is moderately complete. It covers the tool's purpose and one important parameter instruction but does not explain the expected outcome, return format, or what happens after reporting. Adequate but not comprehensive.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The description adds meaning for the 'conversation' parameter by mentioning it should contain recent messages. However, the required 'message' parameter and optional 'context' parameter are not described, leaving ambiguity about their content. With 0% schema description coverage, the description only partially compensates.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: report a bug, missing feature, or send feedback. It distinguishes itself from sibling tools that are unrelated (e.g., authenticate, marketplace).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides a specific instruction: 'Include the conversation array with recent messages for reproduction,' guiding the agent on what to include. However, it does not explicitly state when to avoid using this tool or mention alternatives, which is acceptable given no direct sibling for reporting.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

show_versionA
Read-onlyIdempotent
Inspect

Show the current MCP platform and adapter versions.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare the tool as read-only, idempotent, and non-destructive. The description adds that it shows platform and adapter versions, but does not disclose any additional behavioral traits such as caching or network dependency. With annotations present, the burden is lower, and the description provides minimal extra context.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, front-loaded sentence with no wasted words. It is appropriately sized for such a simple tool.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given zero parameters, no output schema, and comprehensive annotations, the description is sufficient. It fully explains the tool's purpose without needing additional details about return format or usage context.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

There are zero parameters, and the schema coverage is 100%. According to guidelines, baseline is 4. The description does not need to add parameter details.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool shows current MCP platform and adapter versions, using a specific verb and resource. It distinguishes itself from sibling tools that serve different purposes, such as marketplace or toolkit_info.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies when to use (to get version info) but provides no explicit guidance on when not to use or alternatives. With sibling tools like toolkit_info that might also provide version-related information, differentiation is lacking.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

toolkit_infoA
Read-onlyIdempotent
Inspect

Returns the current toolkit state: installed MCPs, their connection status, the accounts connected to each one, and how many catalog tools each exposes.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The annotations already establish read-only, idempotent, non-destructive behavior. The description adds transparency by detailing the specific state information returned (installed MCPs, connection status, accounts, catalog tool counts), going beyond a generic 'returns state'.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, front-loaded sentence that names the tool's output and provides a clear list of the included details. Every word earns its place with no redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a zero-parameter read-only status tool with strong annotations, the description fully covers the tool's purpose and output. The absence of an output schema is mitigated by the explicit enumeration of returned content, making the description complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

There are no parameters, so the schema is fully covered by the empty properties object. The description's mention of what state is returned indirectly explains why no parameters are needed, making the baseline of 4 appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses the specific verb 'Returns' and the resource 'current toolkit state', then enumerates exactly what is included: installed MCPs, connection status, accounts, and catalog tool counts. This clearly distinguishes it from siblings like show_version or authenticate.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies the tool is for inspecting the overall toolkit state, and the listed contents convey when it would be useful. However, it does not explicitly state when not to use it or name alternatives, though the sibling list provides context.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

  • A
    license
    -
    quality
    C
    maintenance
    Automates month-end close reconciliation tasks including bank statement matching, GL account reconciliation, intercompany balance checking, and close task tracking.
    1
    Apache 2.0
  • A
    license
    B
    quality
    C
    maintenance
    Enables natural language control of OMIE ERP finances, including accounts payable/receivable, bank transactions, cash flow, and supplier management through 27 MCP tools.
    41
    4
    MIT
  • A
    license
    -
    quality
    -
    maintenance
    Enables AI assistants to interact with Conta Azul Financial APIs to manage accounts, balances, and transactions through natural language. It features specialized tools for tracking cash flow, processing payables and receivables, and generating comprehensive financial reports.

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.