Skip to main content
Glama

Rede

Server Details

Sales, receivables and statements for your Rede (card machine) account via session capture, with you

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
mcp-dir/rede-mcp
GitHub Stars
0

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 DescriptionsA

Average 4/5 across 9 of 10 tools scored. Lowest: 3.1/5.

Server CoherenceA
Disambiguation4/5

The roles of most tools are distinct: authenticate handles credentials, connect reports connection status, the rede_* tools target specific financial data, and report_bug/show_version/toolkit_info are utility functions. Some ambiguity exists between connect and authenticate (both deal with connection/auth state) and marketplace is an oversized catch-all that overlaps conceptually with connect, but the descriptions are detailed enough to guide selection.

Naming Consistency2/5

Tool naming mixes English and Portuguese (authenticate vs rede_vendas_listar), and mixes verb-only (connect, report_bug), noun-only (marketplace), compound nouns (toolkit_info), and verb_noun (rede_vendas_listar). While the rede_* prefix is consistent, the overall pattern is inconsistent and unpredictable.

Tool Count4/5

With 10 tools, the count is reasonable, but the scope is broad—combining platform management utilities (authenticate, marketplace, toolkit_info, etc.) with domain-specific Rede financial tools. The marketplace tool alone encapsulates dozens of sub-operations, making the actual tool surface feel larger than the count suggests. Still, it's within a manageable range.

Completeness4/5

For the Rede payments side, the tools cover account profile, statements, receivables schedule, and transaction listing—good read-only coverage for financial operations. For the platform side, marketplace handles search/install/invoke/subscribe/prompt library, and report_bug covers feedback. Minor gaps include lack of detailed per-sale queries, no explicit disconnect tool, and uninstall is hidden inside marketplace rather than a separate tool.

Available Tools

10 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 idempotent and non-destructive. The description adds context about the two authentication paths and that calling with no args returns a login link, which is useful behavioral detail. Lacks explicit mention of side effects (e.g., storing token) but annotations cover safety.

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 pack substantial detail, but the structure is a bit dense. It front-loads the core action and then explains modes. No redundancy, but could be tightened.

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 simple authentication tool with one optional parameterفق, the description fully covers the usage scenarios . The output is a link or session token, which is implied. No further context needed.

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?

The schema provides no description coverage, but the description explains the token parameter clearly: it is the JWT to be passed for session-only login, and its absence triggers a link retrieval. This fully compensates for schema gaps.

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: authenticating an IDE agent to MCP.AI via browser login and token. It distinguishes the two operational modes (config header vs. session token), making the purpose unambiguous and distinct from siblings like 'connect'.

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?

Provides explicit usage guidance: recommends adding token to config for permanent connection, and describes the alternative session-based flow with or without a token argument. Clearly explains when to use each mode, effectively guiding agent decisions.

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?

The description adds meaningful conditional behavior beyond the annotations: it explains that when credentials are missing, connect_url and per-install URLs are returned, and that a fully connected state returns authenticated:true and empty pending[]. This complements the readOnlyHint and idempotentHint annotations without contradicting them.

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 two sentences, front-loaded with the primary purpose, and every clause adds specific behavioral information. There is no redundancy or filler.

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 parameterless, read-only status tool with strong annotations, the description sufficiently covers the return behavior and conditional cases. No output schema exists, but the description compensates by explaining both connected and missing-credential states.

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 parameters, the baseline is 4. The description adds no parameter details, but none are needed since the schema is empty and coverage is 100%.

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 a specific verb ('Returns') with a clear resource ('connection status and URLs'), and further distinguishes itself by naming exact conditional outputs like authenticated:true and connect_url. This clearly separates it from sibling tools such as authenticate and show_version.

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 as a status-checking tool by explaining what it returns in different connection states. However, it does not explicitly state when to prefer this over alternatives like authenticate, nor does it mention any exclusions or prerequisites.

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

marketplaceInspect

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
rede_contaA
Read-onlyIdempotent
Inspect

Dados da conta no Portal Rede (perfil e ponto(s) de venda / PV).

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior3/5

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

Annotations already declare readOnlyHint=true and idempotentHint=true, covering safety. The description adds that it returns profile and POS data, which is content but not behavioral depth. It does not describe potential errors, auth requirements, or response format, but given the annotations, baseline 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?

A single, concise, front-loaded sentence clearly identifies what the tool returns. No redundancy or filler.

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?

For a no-parameter read-only tool, the description adequately explains the returned data (profile and points of sale). It lacks details about pagination or exact structure, but given the tool's simplicity and the absence of an output schema, it is sufficiently 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?

The tool has zero parameters, and the description accurately reflects that no parameters are needed. Per the rubric, a baseline of 4 is warranted for 0 parameters since there is nothing for the description to clarify.

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 provides account data from Portal Rede, specifically profile and point(s) of sale. It distinguishes from siblings (extrato, vendas, etc.) by focusing on account profile and POS data, though it doesn't explicitly compare with alternatives.

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 account data is needed, but it does not explicitly state when to use it versus alternatives like rede_extrato or rede_vendas_listar. No exclusions are given, but the context strongly suggests a read operation for account details.

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

rede_extratoA
Read-onlyIdempotent
Inspect

Extrato financeiro da conta Rede no período (movimentações, pagamentos, ajustes, débitos e chargebacks).

ParametersJSON Schema
NameRequiredDescriptionDefault
end_dateNo
start_dateNo
Behavior4/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, establishing it as a safe read operation. The description adds value by detailing the content of the statement (movements, payments, adjustments, debits, chargebacks), which is not covered by annotations. It provides useful context about what the tool retrieves, though it does not discuss rate limits or specific authentication nuances (likely implied by 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, concise sentence that front-loads the core action ('Extrato financeiro') and scopes it to the account and period. It avoids redundancy and every word contributes meaning, making it highly efficient.

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?

With only two optional parameters and no output schema, the description is adequate but could be more detailed about the response format. It lists the types of transactions included, giving some indication of content, but does not describe the structure of the returned statement (e.g., fields, pagination, currency). For a simple read tool, this is acceptable but not fully complete.

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 only mentions 'no período' (in the period) without explaining the exact usage or format of start_date and end_date. It does not clarify whether dates are required, their format (e.g., YYYY-MM-DD), or what happens if only one is provided. The description fails to compensate for the lack of schema documentation, leaving parameter semantics vague.

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 a financial statement ('Extrato financeiro') for the Rede account within a specified period, listing specific transaction types (movements, payments, adjustments, debits, chargebacks). This distinguishes it from sibling tools like 'rede_vendas_listar' (sales) and 'rede_recebiveis_agenda' (receivables schedule), making the purpose unambiguous.

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 it is used to obtain account statements but does not explicitly mention alternatives or conditions for use. It does not provide 'when/when-not' guidance relative to siblings, though the purpose is clear enough that agents can infer it for financial reporting. But without explicit alternatives or exclusions, it falls short of a 4.

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

rede_recebiveis_agendaA
Read-onlyIdempotent
Inspect

Agenda de recebíveis da Rede no período (quando cada venda cai na conta; visão resumo, calendário ou diário).

ParametersJSON Schema
NameRequiredDescriptionDefault
visaoNo
end_dateNo
start_dateNo
Behavior3/5

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

Annotations already cover read-only, idempotent, and non-destructive behavior. The description adds context about the available views and the meaning of receivables, but doesn't disclose additional behavioral details such as default view, date range handling, or output format, which is acceptable given 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 sentence that is front-loaded with the core concept and contains no filler. Each phrase adds meaningful context, including the period, the meaning of receivables, and view options.

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?

For a simple read-only tool with three optional parameters and no output schema, the description covers the essential purpose and view options. Minor gaps remain, such as specifying the default view or date range behavior, but the description is sufficiently complete for an agent to select and invoke the tool correctly.

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 description coverage is 0%, so the description must compensate. It indirectly references the date period ('no período') and view ('visão'), and it lists the enum values (resumo, calendário, diário), matching the schema. However, it does not explicitly map the parameters (visao, start_date, end_date) or explain their formats or defaults, leaving some ambiguity.

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 identifies the tool as Rede's receivables schedule ('Agenda de recebíveis da Rede no período') and explains its purpose: showing when each sale lands in the account. It also distinguishes it from siblings by adding view options (summary, calendar, daily), which is not covered by other listed tools.

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 clear usage context: use this to see the receivables schedule for a period, specifically when sales are credited. It does not explicitly name alternatives or exclusions, but the scenario is specific enough that an agent can infer when to select it over related tools.

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

rede_vendas_listarA
Read-onlyIdempotent
Inspect

Lista as vendas/transações da conta Rede por período (crédito, débito e Pix; com status, tipo e valor), via a API interna do Portal Rede.

ParametersJSON Schema
NameRequiredDescriptionDefault
pageNo
sizeNo
statusNo
end_dateNo
start_dateNo
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 safety profile is covered. The description adds useful context about the internal Portal Rede API and the included payment types, but it does not disclose return shape, pagination behavior, or any auth requirements.

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 dense sentence that front-loads the core action and context. Every phrase contributes meaningful information without redundancy or filler.

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 5-parameter tool with no output schema and no property descriptions, the description provides the minimum viable context but leaves gaps: pagination semantics, date formatting, optional parameter behavior, and return value structure are not addressed.

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 description coverage, the description partially compensates by linking 'por período' to start_date/end_date and mentioning status and value fields. However, it does not explain page/size semantics, date formats, allowed status values, or the fact that all parameters are optional.

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 'Lista', identifies the resource as 'vendas/transações da conta Rede', and clearly scopes it by period, payment methods, and fields. This distinguishes the tool from siblings like rede_extrato and rede_recebiveis_agenda by focusing on sales/transaction listing.

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 intended use is implied: list Rede sales/transactions by period. However, the description does not explicitly state when to prefer this over sibling tools, mention prerequisites like authentication, or provide exclusion criteria.

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

report_bugB
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 indicate idempotentHint=true, readOnlyHint=false, destructiveHint=false. The description adds that the conversation array should be included for reproduction, which is a behavioral detail beyond annotations. However, it doesn't disclose what happens after submission (e.g., confirmation, tracking ID) or any side effects. Since annotations already cover safety, 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.

Conciseness4/5

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

The description is concise, two sentences, and front-loaded with the purpose. It includes a key usage hint (conversation array) without unnecessary fluff. It earns a 4 because it is efficient, though it could be slightly more structured with parameter guidance.

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?

Given the tool has 3 parameters, no output schema, and no schema description coverage, the description is incomplete. It doesn't explain the 'context' parameter, the expected format of 'conversation' (string vs array), or what happens after reporting. For a feedback tool, it should clarify submission behavior and parameter 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%, so the description must compensate. It mentions 'conversation array' but the schema defines 'conversation' as a string (likely JSON), not an array. It doesn't explain the 'context' parameter or the format of 'message'. The description adds minimal value beyond the schema, leaving the agent uncertain about parameter formats and semantics.

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 the tool's purpose: 'Report a bug, missing feature, or send feedback.' It uses a specific verb ('report') and resource ('bug/missing feature/feedback'), and it distinguishes from siblings by focusing on user feedback rather than account operations or version info. However, it doesn't explicitly contrast with sibling tools, so it's not a 5.

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 this tool (when reporting bugs or feedback) but does not explicitly state when not to use it or mention alternatives. It provides a hint about including the conversation array for reproduction, which is useful context, but lacks explicit exclusions or alternative tool references.

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 readOnlyHint=true, idempotentHint=true, and destructiveHint=false, providing a strong safety profile. The description adds that it shows both 'MCP platform' and 'adapter' versions, which is useful specificity, but it doesn't disclose any additional behavioral characteristics such as output format, latency, or error conditions. 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.

Conciseness5/5

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

The description is a single, front-loaded sentence that states exactly what the tool does without any filler, redundancies, or background. It is appropriately concise for a simple version-check tool.

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?

For a tool of this low complexity, the description adequately covers the core behavior. It specifies both platform and adapter versions, which implies the return will include both. There is no output schema, so the description could theoretically explain the return format more fully, but given the trivial nature of a version display, this is sufficient. The strong annotations compensate for any minor gaps.

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?

The input schema has zero parameters, so there are no parameter semantics to clarify. The baseline for 0 parameters is 4, and the description correctly omits any parameter details, adding no unnecessary ambiguity.

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 a specific verb ('show') and resource ('current MCP platform and adapter versions'), clearly distinguishing it from sibling tools like authenticate, redeem, or reporting tools. It leaves no ambiguity about what the tool does.

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: call it to view platform and adapter versions. However, it does not explicitly state when to use it (e.g., for debugging version mismatches) nor mention any alternatives or exclusions. Since no sibling tool overlaps with version display, the context is clear but not explicitly stated.

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?

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is established. The description adds value by detailing what the tool returns (installed MCPs, connection status, accounts, catalog counts), which goes beyond the bare annotations. 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.

Conciseness5/5

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

The description is a single, well-structured sentence with no redundant words. It front-loads the main action and enumerates key result components efficiently.

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 parameterless read-only tool, the description is comprehensive. It specifies the exact nature of the returned information, and annotations cover safety aspects. No output schema exists, but the description sufficiently conveys what the agent can expect.

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 zero parameters, the schema carries no burden, and the description needs no parameter details. The baseline for 0 params is 4; the description doesn't add or need any parameter info, so it fully meets the requirement.

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 a specific verb ('Returns') and clearly defines the resource ('current toolkit state') with enumerated details (installed MCPs, connection status, accounts, catalog tool counts). This distinguishes it from sibling tools like show_version and authenticate, which serve different purposes.

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 clear context (inspecting toolkit state) without explicit alternatives or exclusions. While it doesn't name sibling tools or when to use it vs. them, the intent is unambiguous, and it's likely the go-to for state inspection.

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
    Not graded
    quality
    C
    maintenance
    Enables reading C6 Bank account balances, statements, credit card bills, and investments via Open Finance Brasil. It is read-only and regulated by the Central Bank of Brazil.
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    Enables AI assistants to query Rede Celcoin account balances, statements, credit card bills, and investments via Open Finance Brazil (read-only, regulated by the Central Bank).
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    Connects PagBank accounts to AI assistants via Open Finance Brasil, enabling natural language queries about balances, statements, credit card bills, and investments. Read-only and regulated by the Central Bank.
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    Enables AI assistants to read Itaú bank account information (balances, statements, credit card bills, investments) via Open Finance Brasil, read-only.
    MIT

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.