Skip to main content
Glama

SEFAZ RN: Certidão Negativa de Débitos

Server Details

SEFAZ RN: Clearance Certificate (Debts), official-source lookup. Platform-hosted, pay per query with

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

Server CoherenceC
Disambiguation4/5

Tools have distinct purposes—authenticate, connect, marketplace, report_bug, domain query, version, and toolkit info—with no overlapping functions. The domain-specific tool is clearly separate from the generic platform tools, though the mix of platform and domain tools could confuse users about the server's primary focus.

Naming Consistency2/5

Naming is inconsistent: some tools use verb-object format (report_bug, show_version, toolkit_info), some are single nouns (marketplace, authenticate as verb but not consistent), and the domain tool uses a long underscore-separated Portuguese name (sefaz_rn_certidao_debitos_consultar). This mix violates a consistent convention.

Tool Count2/5

Seven tools is excessive for a server named after a single domain (negative debt certificate). Six of the tools are generic platform utilities unrelated to the domain, making the surface feel bloated and unfocused for the stated purpose.

Completeness3/5

The domain-specific tool (sefaz_rn_certidao_debitos_consultar) likely covers the core query operation, but the server also includes irrelevant platform tools. There are no obvious missing domain features, but the presence of unrelated tools dilutes completeness for the intended use case.

Available Tools

7 tools
authenticateB
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
Behavior3/5

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

The description discloses key behavioral traits: calling with no args retrieves a link, and calling with a token performs a session-only login. It adds context about permanent vs. session-based auth. Annotations already indicate idempotency and non-readOnly behavior, and the description is consistent. However, it does not explain error handling, return values on success/failure, or whether the tool modifies server state beyond session establishment.

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 a bit longer than necessary and mixes instructions for humans (log into browser, copy token) with agent-facing usage. It is structured in three sentences and front-loads the authentication purpose, but it could be tightened to avoid redundant or confusing phrasing. It earns a mid-range score because every sentence adds some value but it is not maximally concise.

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

Completeness3/5

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

Given the tool has no output schema and no annotations describing return behavior, the description partially covers what to expect (e.g., 'get the link' when called with no args). However, it does not specify what a successful token acceptance returns, whether errors are surfaced, or the exact format of the login link. It is adequate but incomplete for an interactive authentication flow.

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 schema only defines 'token' as a string with no description. The description compensates by clarifying that the token is a JWT, that it is optional, and that calling without it returns a login link. This adds meaningful semantic information beyond the raw schema, especially important given 0% schema description coverage.

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 indicates the tool's purpose: to authenticate IDE agents (like Cursor) to the MCP server. It explains the two primary modes (providing a token or requesting a login link) and distinguishes from siblings by focusing on authentication rather than other features. While it is a bit verbose and includes instructions for humans, the core action is unmistakable.

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 gives practical guidance on how to use the tool: call with { token } after pasting, or with no args to get a login link. It also mentions a preferred alternative (adding a header to the server config) for a permanent connection. However, it does not explicitly compare to sibling tools like 'connect' or state when NOT to use this tool, leaving some room for ambiguity.

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=true, idempotentHint=true, destructiveHint=false. The description adds valuable context: it specifies response fields (authenticated, pending, connect_url) and behavior in different states. This exceeds the annotation-only information.

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 each sentence adds a distinct behavioral detail. 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?

Given the tool is a simple status checker with no parameters and annotations already declare safety traits, the description covers the key states and response elements. It does not list all possible response fields exhaustively, but for this simplicity 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, so the description carries no parameter burden. The schema coverage is 100% (vacuous). The description explains the return states sufficiently, so the baseline of 4 is appropriate because no parameters exist to explain.

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 states the tool returns connection status and URLs, with specific details about the conditions (all providers connected vs. missing credentials). This clearly distinguishes it from siblings like authenticate (which likely initiates connection) and show_version (which shows version info).

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

Usage Guidelines3/5

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

The description explains the two states (connected vs. missing credentials) but does not explicitly say when to use this instead of authenticate or other tools. However, given the readOnlyHint and simple nature, the usage context is implied for checking connection status.

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 generic annotations (readOnlyHint false, destructiveHint false), the description explains that write operations need owner/admin, invoke can return connect or checkout links, install behind invoke is one-off and does not bloat the toolkit, and search/describe flags installed vs. not installed. These details materially improve an agent's ability to anticipate side effects and next steps.

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 long but packed with substantive, non-redundant information for an extremely broad tool. It front-loads the identity and core search→describe→invoke flow first, then addresses permissions and bigger detail. It lacks visual structure or bullets, though the paragraphs are each focused on a coherent theme.

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 large 23-parameter/action-based tool with no output schema, an agent gets a lot of context: user intent examples, one-off vs permanent execution, auth/billing side effects, writes requiring owner/admin, and prompt library differences. It is missing explicit mention of the 'resume' action/param and does not fully describe either search/describe output format or all param values.

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

Parameters3/5

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

The description significantly clarifies the key 'action' parameter and the core flow for search/describe/invoke, plus the meaning of prompt-related variables. However, it does not explain the purpose or constraints of many other schema parameters (e.g., limit, immediate, tier_slug, cancel_reason, prompt_description), and the schema has 0% description coverage, leaving a large semantic gap for such as 23-parameter surface.

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 is explicit about the tool's role: it is the official marketplace catalog of MCPs/tools, but also the mechanism to run them interactively. It clearly differentiates the main workflows (search, describe, invoke), temporary vs. permanent use, and the separate prompt library, so there is little ambiguity about what this 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 Guidelines5/5

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

The description gives strong selection guidance: use search to discover MCPs, describe to get full profile, invoke to run one-off even without install, and install only for permanent inclusion. It also distinguishes list_tools for currently callable tools, report_bug for feedback, request_mcp for new library needs, and subscribe/cancel for billing. This is better than most tools.

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?

The annotations already declare idempotentHint=true and destructiveHint=false, so the description does not need to repeat safety traits. It adds the context that the conversation array is needed for reproduction, which is useful behavioral guidance, but it does not explain what side effects occur when a report is submitted. 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?

Two short sentences deliver the purpose and the key usage instruction without any wasted words. The description is front-loaded and immediately understandable.

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

Completeness3/5

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

The tool is simple (3 flat parameters, no output schema), so the description need not be lengthy. However, with zero parameter descriptions in the schema, the two sentences do not fully cover what 'context' and 'message' should contain. The description is adequate for a human but leaves an AI agent guessing about required content.

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 for all three parameters. It only explains the purpose of 'conversation' (reproduction) and leaves 'message' and 'context' undefined, forcing the agent to guess what content belongs in each field. This is a significant gap for a simple but loosely specified input schema.

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 ('Report') with a clear resource ('a bug, missing feature, or send feedback'), which distinguishes it from the unrelated sibling tools. There is no tautology or ambiguity about what action is performed.

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 this tool (for reporting bugs or feedback) and instructs the agent to include the conversation array for reproduction. It does not explicitly state when not to use it or name alternatives, but the sibling tools are sufficiently different that the intended usage is clear.

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

sefaz_rn_certidao_debitos_consultarB
Read-onlyIdempotent
Inspect

SEFAZ RN: Certidão Negativa de Débitos, consulta em fonte oficial. Hospedado pela plataforma, sem credenciais da plataforma, pague por consulta com crédito pré-pago. Consulta informação de fontes e órgãos oficiais brasileiros (a mesma disponível ao cidadão), não é dado sigiloso. O cliente é o controlador dos dados e responde pela finalidade legítima (LGPD).

ParametersJSON Schema
NameRequiredDescriptionDefault
ieNo
cpfNo
cnpjNo
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 description adds value by disclosing that the platform hosts the service, requires prepaid credit per query, and that the client is the data controller under LGPD. This goes beyond the annotations to explain operational and legal aspects, though it doesn't detail rate limits or exact response format.

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, reasonably concise paragraph that front-loads the purpose. It covers multiple aspects (purpose, hosting, payment, legal) without excessive verbosity. However, it could benefit from structured bullet points for clarity, but as is, it's adequately concise.

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 there is no output schema, the description should clarify what the tool returns (e.g., certificate status, document). It does not specify the output format or the expected response. Additionally, the lack of parameter semantics further reduces completeness, making it difficult for an agent to invoke it correctly. The legal and usage context is helpful but not sufficient for correct invocation.

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

Parameters1/5

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

The schema has three parameters (ie, cpf, cnpj) with zero description coverage, and the description fails to explain their meaning or usage. It does not say which identifiers can be used or whether they are mutually exclusive. This is a critical gap since the agent must know how to construct the query.

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 a consultation for a negative debt certificate (Certidão Negativa de Débitos) from SEFAZ RN, a specific official source. The verb 'consultar' (query) and resource are unambiguous, making it distinct from sibling tools which are unrelated (authenticate, connect, etc.).

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

Usage Guidelines3/5

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

The description provides context about the data being public and from official sources, and mentions payment via prepaid credit. However, it does not explicitly state when to use this tool versus alternatives, nor does it mention any exclusions or prerequisites. The guidance is implicit rather than explicit.

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, so the safety profile is covered. The description adds that the tool reports platform and adapter versions, but no additional behavioral context (e.g., network usage, exact output structure) is disclosed. This aligns with the annotation-grounded baseline.

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, front-loaded sentence of 11 words. Every word earns its place, and the structure is immediately parseable. 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?

For a zero-parameter, read-only version tool with strong annotations, the description is complete. It states exactly what information is returned (platform and adapter versions), which is sufficient without an output schema. No additional context is necessary.

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 description correctly implies no inputs are required. The schema is trivially 100% covered, and the description adds no parameter-specific meaning but doesn't need to. Baseline for 0 params is 4.

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 names the resource ('current MCP platform and adapter versions'), making the tool's function unmistakable. It distinguishes itself from siblings like toolkit_info by calling out platform and adapter versions specifically.

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?

No explicit when-to-use or alternative guidance is provided, but the use case is strongly implied by the tool name and description. For a simple version-checking tool, this implicit guidance is adequate, though it doesn't mention exclusions or relationships to overlapping siblings like toolkit_info.

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 fully covered. The description adds value by specifying exactly what information is returned (installed MCPs, connection status, accounts, catalog tool counts), which goes beyond the annotations.

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

Conciseness5/5

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

The description is a single, well-structured sentence that front-loads the purpose and lists the key information returned. 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?

Given the tool has no parameters and no output schema, the description provides a complete picture of what the tool does and what it returns. It could potentially mention the format of the output, but for a state-checking tool, this is sufficient.

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

Parameters4/5

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

The tool has zero parameters, so the description doesn't need to explain parameter semantics. The baseline for 0 params is 4, and the description appropriately focuses on the return value rather than 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 states the tool returns the current toolkit state, listing installed MCPs, connection status, connected accounts, and catalog tool counts. This is specific and distinguishes it from sibling tools like authenticate or connect, which handle setup rather than introspection.

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

Usage Guidelines4/5

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

The description implies this is for checking the state of the toolkit, which is clear from the context. It doesn't explicitly state when not to use it or mention alternatives, but given the sibling tools are all action-oriented, the usage context is reasonably clear.

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

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.