Skip to main content
Glama

IBAMA Autuações

Server Details

Looks up IBAMA environmental fines for a person or company from the CPF or CNPJ. Platform-hosted, no

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
mcp-dir/ibama_autuacoes-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.2/5 across 7 of 7 tools scored.

Server CoherenceB
Disambiguation3/5

The only domain-specific tool, ibama_autuacoes_consultar, is clearly distinct, but the platform utilities overlap (e.g., connect and toolkit_info both report connection state) and marketplace introduces a meta-layer that confuses the set's purpose. The descriptions help differentiate them, but an agent could easily misselect among the generic tools.

Naming Consistency2/5

Names mix single verbs (authenticate, connect), verb_noun pairs (report_bug, show_version), nouns (marketplace, toolkit_info), and a Portuguese phrase (ibama_autuacoes_consultar). All use lowercase underscores, but the lack of a consistent pattern and mixed languages make it unpredictable.

Tool Count3/5

Seven tools is a reasonable number, but six are generic platform utilities that don't belong in a server named for IBAMA autuações, making the count feel inflated for the stated domain. The single domain tool is appropriate, yet the presence of marketplace and account tools dilutes the set's focus.

Completeness4/5

For a public-data query MCP, the single consultar tool covers the essential operation, but there are no complementary features like history, batch lookup, or export. The marketplace tool can fill some gaps by invoking other MCPs, but that's not part of this server's native domain surface.

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

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

The description reveals behavioral details beyond annotations: it explains the two login modes (permanent via config header, session-only via token), and that calling with no args returns a link. It does not state error behaviors or side effects, but with idempotentHint=true and destructiveHint=false, the safety profile is clear.

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

Conciseness3/5

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

The description is somewhat long and rambling, but each sentence adds critical steps. The structure could be tighter, but it is not wasteful; it provides necessary context.

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 low complexity (1 optional param) and no output schema, the description covers the essential flow: how to obtain a token, how to use it, and the difference between permanent and session-based login. It lacks explicit mention of return values or failure handling, but is otherwise complete.

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 only defines an optional 'token' string with no description. The description fully explains its purpose: 'call with { token: "<jwt>" } after the user pastes' and 'with no args to get the link'. This adds significant meaning 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 this is for authentication/logging in to MCP.AI for IDE agents, with explicit steps ('log in in the browser, copy the access token'). It distinguishes itself from siblings by focusing on the login flow, though it does not explicitly contrast with 'connect'.

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 provides concrete usage scenarios: 'Best: add it to this server's config...' for permanent login, or 'paste it here for a session-only login'. It also explains when to pass a token versus call with no args. It does not explicitly mention alternatives, but gives clear when-to-use guidance.

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

Behavior5/5

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

Annotations already declare readOnlyHint, idempotentHint, and non-destructive behavior. The description adds valuable conditional return behavior: when connected, authenticated:true and empty pending[]; when credentials missing, connect_url and per-install URLs. This is beyond what annotations provide.

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 each sentence adds meaningful detail about conditional outcomes. No wasted words.

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?

Despite having no output schema, the description specifies key return fields (authenticated, pending, connect_url) and the conditions under which they appear. For a zero-parameter status tool with strong annotations, this is sufficient for an agent to understand the tool's behavior.

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 coverage is 100% trivially. The description doesn't need to add parameter semantics. Per the rubric, a baseline of 4 is appropriate for 0-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?

The description uses a specific verb ('Returns') with a clear resource ('connection status and URLs'). It also differentiates from sibling tools like 'authenticate' by clarifying it is a status check, not an authentication action.

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 this should be used to check connection status, and it specifies behavior under different credential conditions. However, it does not explicitly mention when to use alternatives or provide exclusions (e.g., 'use authenticate to initiate the flow').

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

ibama_autuacoes_consultarA
Read-onlyIdempotent
Inspect

Consulta autuações ambientais do IBAMA para uma pessoa ou empresa a partir do CPF ou CNPJ. 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
CnpjYes
completoNo
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint. The description adds meaningful context beyond annotations: no credentials required, payment per use, data is public, and LGPD obligations for the client. 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.

Conciseness4/5

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

The description is a single paragraph of four sentences, compact and front-loaded with the core purpose. It includes necessary legal and payment context, though some sentences are boilerplate. It is not overly verbose for the amount of context it conveys.

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 covers purpose, payment, and legal framing but omits critical operational details: no output schema exists, yet the return format is not described. The 'completo' parameter is unclear, and the CPF/CNPJ requirement contradiction leaves usage ambiguous. A paid consultation tool should specify what is returned and how to use the optional parameter.

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%, so the description must explain parameters. It mentions CPF or CNPJ but contradicts the schema which requires both Cpf and Cnpj. The 'completo' boolean parameter is entirely undocumented. This creates confusion about which fields are actually needed.

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 consults IBAMA environmental infractions for a person or company using CPF or CNPJ. The verb 'Consulta' and specific resource 'autuações ambientais do IBAMA' make the purpose unambiguous and distinct from 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?

Provides useful context: the tool is hosted on the platform, requires no credentials, and is paid per consultation with prepaid credit. It also emphasizes that the data is public and LGPD-compliant. However, it does not explicitly contrast with alternatives, though none of the siblings are direct competitors.

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?

Beyond the annotations (readOnlyHint=false, destructiveHint=false), the description discloses key behavioral traits: invoke runs tools one-off without installing them; invoke returns a connect link when credentials are needed and a checkout/top-up link when payment is required; install makes MCPs permanent; writes require workspace owner/admin; and publishing a prompt returns a shareable link. These details significantly extend the annotation information without contradiction.

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 long but dense and front-loaded: the first sentence states the tool's purpose, followed by the core flow, edge cases, and prompt library. Every sentence contributes meaningful guidance, and the length is justified by the tool's complexity (14 actions, 23 parameters). No filler or redundant phrases.

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 tool with 14 actions, 23 parameters, and no output schema, the description is remarkably complete. It covers workflows, permission requirements (owner/admin), payment/auth redirects, installed status flags, permanent vs one-off usage, prompt library publishing, and return link formats. There is enough context for an agent to select and invoke the correct action with confidence.

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 takes on the burden of explaining parameters. It maps actions to their parameters well (action=search, action=describe, tool_id for invoke, prompt variables for get_prompt, etc.) and clarifies the flow of arguments. However, some parameters like immediate, resume, tier_slug, conversation, and report_context are never mentioned, and it does not state that arguments/prompt_vars are JSON strings. It compensates strongly for the main actions but not exhaustively for all 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 clearly identifies the tool as the official mcp.ai marketplace catalog and execution engine, with a specific verb+resource structure: it 'discovers MCPs by intent', 'describes' profiles, and 'invokes' tools. It also distinguishes itself from sibling tools by covering the marketplace actions (search/describe/invoke/install) and prompt library, which siblings like authenticate, connect, and show_version do not.

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 when-to-use guidance: 'Use install only to make an MCP PERMANENT in the active toolkit; prefer invoke for a single/occasional use.' It also lays out the core flow (search → describe → invoke), and clarifies when to use list_tools, subscribe/cancel, report_bug, request_mcp, and the prompt library actions. It even describes fallback behavior: 'If nothing fits, request_mcp asks us to build a NEW MCP.'

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 declare idempotentHint=true, destructiveHint=false, and readOnlyHint=false, indicating a safe write operation. The description adds minimal behavioral context beyond the parameter instruction (include conversation array). It does not disclose side effects (e.g., whether a ticket is created, if external services are called) or any post-submission behavior, which would be valuable. 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 two sentences, front-loaded with the core purpose and a concise actionable instruction. There is no filler, and every word 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 relatively simple, and annotations cover safety aspects. However, the description leaves critical ambiguity around the 'conversation' parameter (array vs string) and does not mention prerequisites like authentication or what happens after submission. Since there is no output schema, return values aren't needed, but the missing format details reduce 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 explicitly explains the 'conversation' parameter (include recent messages) but does not clarify 'message' or 'context'. Additionally, the description calls it a 'conversation array' while the schema defines it as a string (default '[]'), creating ambiguity about the expected format. This is insufficient for a 3-parameter tool.

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.' The verb 'Report' is specific and the three use cases are explicit. This clearly differentiates it from siblings like authenticate or marketplace, which have unrelated functions.

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 for when to use the tool (bug, missing feature, feedback) and offers a specific instruction: 'Include the conversation array with recent messages for reproduction.' It does not explicitly mention alternatives or exclusions, but no other sibling tool serves this purpose, so the guidance is sufficient.

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?

The annotations already indicate readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is clear. The description adds that it shows platform and adapter versions, which is useful context, but it does not disclose any additional behavioral traits such as output format or whether network access is needed. Because annotations cover the main safety aspects, a score of 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 a single, clear sentence with no unnecessary words. It front-loads the core functionality and is highly efficient, earning full marks for conciseness.

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?

Although there is no output schema, the description tells the agent exactly what the tool returns (platform and adapter versions), which is sufficient for a simple version-check tool. It could have also mentioned the output format (e.g., text or structured data), but given the tool's simplicity and the absence of parameters, the description is largely complete. A score of 4 reflects the 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 no parameters, so schema description coverage is 100% by default. The description does not need to explain any parameters. Per the rubric, a zero-parameter tool receives a baseline of 4, which is suitable here.

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 identifies the exact resource ('current MCP platform and adapter versions'). It clearly distinguishes this from other sibling tools like authenticate or connect, which serve different purposes such as authentication or querying environmental data.

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?

There is no mention of when to use this tool versus alternatives, no preconditions, and no exclusions. The description states only what the tool does, leaving the agent to infer that it is for checking versions. No explicit guidance is provided.

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 and destructiveHint=false, so the safety profile is covered. The description adds useful behavioral context by listing what state components are returned (installed MCPs, connection status, accounts, catalog tool counts), which is beyond the annotations. 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?

The description is a single, front-loaded sentence that immediately states the main action ('Returns the current toolkit state') and then lists the specific components. 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.

Completeness5/5

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

This is a simple, read-only, no-parameter, no-output-schema tool. The description fully captures what the agent needs to know: what the tool returns and its scope. There are no prerequisites, side effects, or error conditions to disclose. The description is complete for the tool's complexity.

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 0 parameters, and the schema is empty. The description doesn't need to explain parameters. Per the baseline rule for 0 params, this scores 4. The description correctly focuses entirely on the return value since there are no inputs.

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 a specific verb 'Returns' and immediately specifies the resource: 'current toolkit state'. It enumerates the exact contents (installed MCPs, connection status, accounts, catalog tool counts), distinguishing it from sibling tools like authenticate or connect.

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 implicitly communicates when to use it (when you need toolkit state details) and the scope of information provided. It doesn't explicitly mention alternatives or exclusions, but the nature of the tool makes the use case obvious. The context is clear enough for an agent to select it appropriately.

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
    Emits Brazilian federal tax clearance certificates (Certidão Negativa de Débitos) from CPF or CNPJ. Provides a single read-only tool for checking tax status of individuals or companies.
    MIT
  • A
    license
    -
    quality
    C
    maintenance
    Provides Brazilian company basic registration data (legal name, status, legal nature) from CNPJ through a single read-only MCP tool, hosted with pay-per-use credits.
    MIT

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.