Skip to main content
Glama

Servidores Federais Completa (Transparência)

Server Details

Full data on a Federal Executive public servant in the Transparency Portal from the CPF, including c

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
mcp-dir/transparencia_servidores_completa-mcp
GitHub Stars
0
Server Listing
Servidores Federais Completa (Transparência)

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.1/5 across 7 of 7 tools scored.

Server CoherenceC
Disambiguation2/5

Several tools have overlapping responsibilities: 'connect' and 'toolkit_info' both return connection/status info, 'authenticate' handles session/auth concerns, and 'marketplace' bundles numerous actions (including install, subscribe, cancel, report_bug) that duplicate capabilities of 'report_bug' and other tools. Agents would struggle to choose the right tool without examining internal action parameters.

Naming Consistency2/5

Tool names follow no consistent pattern: some are bare verbs ('authenticate', 'connect'), some are verb_noun ('report_bug', 'show_version'), one is a noun ('marketplace'), and the domain-specific tool uses a long Portuguese composite ('transparencia_servidores_completa_consultar'). The mix of English platform verbs and a Portuguese domain name adds inconsistency.

Tool Count3/5

Seven tools is within an acceptable range, but the 'marketplace' tool is a monolithic catch-all containing search, describe, invoke, install, list, subscribe, cancel, report_bug, request_mcp, and prompt management, effectively representing 12+ operations under one tool. This makes the actual surface area much larger than the count suggests, though the number itself is reasonable.

Completeness2/5

The server's stated purpose is federal employee transparency, but only a single CPF query tool is provided, with no listing, filtering, or batch operations. The platform admin tools (authenticate, connect, marketplace, etc.) are comprehensive, but they don't cover the transparency domain, which appears to be the server's primary focus. Many common transparency needs remain unsupported.

Available Tools

7 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
Behavior5/5

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

The description discloses the behavioral implications beyond annotations: it explains the difference between permanent (non-expiring) and session-only connections, mentions the side effect of modifying server config, and indicates that no-args returns a link. This adds meaningful context that annotations (idempotentHint, destructiveHint) do not fully cover.

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 structured with clear alternatives and is front-loaded with the target audience. It is slightly verbose but every sentence serves a purpose, covering the why, how, and when. A more compact version could exist, but this is still efficient.

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 full authentication flow, including token acquisition and both usage modes. It doesn't detail return values or error handling, but given the simple tool signature (1 optional parameter, no output schema) and existing annotations, it is sufficiently complete 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.

Parameters5/5

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

The sole parameter 'token' is fully explained as a JWT to paste after the user pastes it, and its optionality is made clear: calling with no args returns a link. This completely compensates for the 0% schema description coverage, giving the agent all needed semantic information.

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 to MCP.AI for IDE agents. It explains the login flow ('log in in the browser, copy the access token') and provides two distinct usage modes, distinguishing it from sibling tools like 'connect' and 'marketplace' by focusing specifically on auth.

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 gives explicit guidance on when to use each approach: adding the token to the server config for a permanent connection, or pasting it for a session-only login. It also explains the no-args flow to get the link, covering all usage scenarios clearly.

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 declare readOnlyHint and idempotentHint, so the safety profile is covered. The description adds value by explaining the exact return behavior in both connected and missing-credential cases, going 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 concise and well-structured, with two sentences that front-load the core purpose and then provide conditional details. No wasted 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 description explains the return values in key scenarios (all connected vs missing credentials), which is adequate for a simple status tool. It could be slightly more explicit about intermediate states or the contents of pending[], but it covers the essentials.

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, so the baseline is 4. The description does not need to add parameter information, as there are none.

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 returns connection status and URLs, with specific details about the output in different scenarios. It distinguishes itself from sibling tools like 'authenticate' by focusing on status rather than performing authentication.

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 usage context is implied: it is for checking connection status. However, there is no explicit guidance on when to use this tool versus alternatives like 'authenticate', nor any exclusions mentioned.

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?

It discloses key behaviors beyond annotations: invoke runs uninstalled MCPs without bloating the toolkit, credential and payment failures return connect/checkout links, and search/describe surface installation state. It also explains that writes require admin, all of which is valuable context not available from annotations alone.

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 front-loaded with the tool's purpose and core flow, and nearly every sentence adds relevant information for a complex 14-action tool. However, it is a long dense paragraph that could benefit from bullet points or section breaks, and it mixes languages ('pontualmente', 'consult um CPF').

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 its complexity, the description covers the main flows, auth requirements, one-off vs permanent installation, payment/connect edge cases, and the separate prompt library. It does not cover output/return formats or detailed error handling, but the absence of an output schema makes this an acceptable gap.

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 must compensate for 23 parameters. It adds meaning for the `action` values and the `tool_id`/invoke relationship, but many parameters (`limit`, `immediate`, `tier_slug`, `conversation`, prompt payload fields) are never explained, leaving significant gaps for correct invocation.

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 identifies the tool as the mcp.ai marketplace: a catalog of MCP/tool and the mechanism to run them. It names the main actions and distinguishes the core flow (search → describe → invoke), but does not explicitly contrast the marketplace with sibling tools like `authenticate` 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 Guidelines5/5

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

The description gives explicit, actionable guidance: use `search` to discover, `describe` to choose a tool_id, `invoke` to run one-off, and `install` only for permanent toolkit additions. It also states that writes require workspace owner/admin, and clarifies when to use `request_mcp` vs `report_bug`.

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 already indicate idempotentHint=true and readOnlyHint=false, and the description does not contradict them. The description adds context about needing the conversation array for reproduction, but does not disclose additional side effects, authentication needs, or output behavior, which is a minor gap.

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 conveys the core purpose and a key usage instruction without any 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 no output schema and 3 parameters (one required), the description is too terse. It omits the meaning of the required 'message' field, the optional 'context', and any return value or confirmation behavior, leaving the agent without full operational context.

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 only explains the 'conversation' parameter (as the 'conversation array') but leaves the required 'message' and optional 'context' parameters undefined, offering insufficient guidance for an 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 the tool's purpose with a specific verb ('Report') and resources ('bug, missing feature, or feedback'), which distinctly separates it from sibling tools like authenticate, connect, and 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 clearly implies when to use the tool (when reporting bugs/feedback) and adds a concrete instruction to include the conversation array for reproduction. It lacks explicit exclusions or named alternatives, but those are not necessary given the distinct purpose.

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, idempotentHint, and destructiveHint, covering the safety profile. The description adds that it shows versions but does not disclose additional behavioral traits such as return format or any side effects. It is consistent 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, concise sentence that front-loads the action and resource. Every word adds value, with 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 zero-parameter, read-only version-information tool, the description is complete. The annotations cover safety, and the simple purpose is fully conveyed without needing additional detail.

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, so the baseline is 4. The description adds no parameter information, but none is needed since the input schema is empty and thus fully covered.

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 clearly identifies the resource as 'the current MCP platform and adapter versions.' This distinguishes it from sibling tools like authenticate or marketplace, 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 Guidelines2/5

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

No explicit guidance is provided on when to use this tool versus alternatives, nor are there any exclusions or conditions. The usage is only implied by the tool's name and description.

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, which covers the safety profile. The description adds meaningful context by specifying exactly what data is returned, including connection status and account linkage. This goes beyond just restating the annotations and clarifies the tool's behavior as a read-only state inspection.

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 primary action ('Returns the current toolkit state') and then uses a colon to efficiently enumerate the four data categories. Every word adds value with no fluff or repetition.

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?

Given the simplicity (no params, no output schema, read-only annotations), the description is nearly complete. It explains what the tool returns in sufficient detail for an agent to identify when this tool is the right choice. The only gap is the lack of explicit usage instructions or edge cases, but for a simple status tool this is a minor omission.

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, so schema description coverage is 100% by definition. The description doesn't need to add parameter semantics, but it does implicitly communicate that no input is required, which is helpful. The baseline of 4 for zero-parameter tools is 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 clearly states the tool's function: 'Returns the current toolkit state' and enumerates the exact contents (installed MCPs, connection status, accounts, catalog tool counts). This specific verb+resource phrasing distinguishes it from sibling tools like show_version or transparencia_servidores_completa_consultar by focusing on the overall toolkit state rather than individual servers.

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 provides no explicit guidance on when to use this tool versus alternatives. It doesn't mention situations where it would be appropriate or inappropriate to call, nor does it reference sibling tools. The existence of siblings like show_version suggests potential overlap, but the description doesn't address this.

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

transparencia_servidores_completa_consultarA
Read-onlyIdempotent
Inspect

Dados completos de um servidor do Poder Executivo Federal no Portal da Transparência a partir do CPF, incluindo remuneração e vínculos. Hospedado pela plataforma, sem credenciais, pague por consulta com crédito pré-pago. Consulta informação de ACESSO PÚBLICO em bases e fontes oficiais (a mesma disponível ao cidadão), não é dado privado nem sigiloso. O cliente é o controlador dos dados e responde pela finalidade legítima (LGPD).

ParametersJSON Schema
NameRequiredDescriptionDefault
CPFYes
completoNo
Behavior4/5

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

Beyond the annotations (read-only, idempotent, non-destructive), the description adds important behavioral details: the cost model (pay-per-query), no authentication needed, the public nature of the data, and LGPD compliance responsibility. This additional context is valuable.

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 four sentences long, each adding meaningful context (purpose, payment, access level, legal responsibility). While slightly verbose, it is well-structured and front-loaded with the 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?

The description covers the tool's purpose, access, and legal aspects, but lacks crucial details about the 'completo' parameter, expected CPF format, and response structure. With no output schema, more specificity is needed for full completeness.

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 only mentions that CPF is the basis of the query but does not explain the 'completo' boolean parameter or any input format expectations. This leaves a significant gap 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 the tool's purpose: retrieving complete data about a Federal Executive Branch public servant from the Transparency Portal using CPF, including remuneration and employment bonds. This specific verb+resource combination distinguishes it from the unrelated sibling 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 clear context: it is a paid query using prepaid credits, requires no credentials, and accesses public information. It does not explicitly mention alternatives, but the sibling tools are unrelated, so this context effectively guides when to use the tool.

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
    Provides read-only access to remuneration data of Brazilian federal executive servants from the Transparency Portal, enabling salary queries by CPF and month/year.
    MIT
  • A
    license
    -
    quality
    C
    maintenance
    MCP server for querying data of Brazilian federal public servants from the Transparency Portal using CPF. It is read-only and provides a single tool for consulting server information.
    MIT

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.