MPF: Certidão Negativa
Server Details
MPF: Certificate Negativa, official-source lookup. Platform-hosted, pay per query with prepaid credi
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- mcp-dir/mpf_certidao_negativa-mcp
- GitHub Stars
- 0
- Server Listing
- MPF: Certidão Negativa MCP Server
TDQS
Scored across 7 tools
The tools are mostly distinct: authenticate and connect both deal with connection/authentication but have different purposes (session login vs. status/URLs). marketplace is multi-purpose but clearly described. The specific MPF tool, report_bug, show_version, and toolkit_info are distinct. Slight overlap between authenticate and connect could cause minor confusion, but descriptions clarify.
Naming is inconsistent. There are verbs like authenticate, connect, report_bug, show_version, but also noun-like names like marketplace and toolkit_info. The main tool mpf_certidao_negativa_consultar uses a different pattern (Portuguese, underscores) and descriptive lowercase_snake_case, which contrasts with the mixed English camelCase/snake_case. No consistent convention.
7 tools is a reasonable count for a server that includes platform utilities (auth, status, version, bug reporting) plus a specific data query tool. It's slightly above the minimal but not overblown. Each tool has a purpose, though marketplace is a single tool that covers a huge functionality—could be considered heavy, but as a count it's appropriate.
The domain appears to be a platform for running MCP tools and querying Brazilian official data (Certidão Negativa). For the data query side, there is only one query tool with no related operations (e.g., history, saved queries, export). For the platform side, authentication, status, marketplace, bug reporting, and version are covered, but missing operations like user profile or billing management. Some gaps but core use case is covered.
Available Tools
7 toolsauthenticateCIdempotentInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| token | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description transparently explains the two main behaviors: calling without args returns a login link, and calling with a token authenticates. It aligns with the annotations (idempotent, non-destructive) and does not contradict them, offering clear expectations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is verbose and includes extraneous text like 'MCP.AI for IDE agents (Cursor, etc.)' and multiple usage hints. It lacks a clear structure, making it harder to parse the essential information about the tool's behavior.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
While the two invocation modes are covered, the description omits details about the return value when a token is provided, error handling, or the authentication outcome. Given the simple schema, it is moderately complete but leaves gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The token parameter is partially explained: it is described as a JWT and optional, with instructions to paste it. However, the schema lacks a description, and the semantics of what the token does (authentication) are only implicitly conveyed.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description indicates the tool is for authentication, mentioning login and token usage, but it is phrased as user instructions rather than a clear statement of the tool's function. The purpose is implied but not explicitly stated, reducing clarity.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description does not specify when to use this tool versus alternatives like 'connect' or other sibling tools. It provides detailed invocation steps (with or without token), but lacks guidance on selection criteria or prerequisites.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
connectARead-onlyIdempotentInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and idempotentHint=true, so the safety profile is covered. The description adds meaningful behavioral context by detailing conditional responses (authenticated:true with empty pending vs connect_url when credentials missing) and mentioning multiple providers and per-install URLs, 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.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise and front-loaded with a clear verb and resource. It uses three short sentences, each adding value—defining the action, the success condition, and the missing-credential condition—without any wasteful wording.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a zero-parameter read-only tool, the description is complete. It explains the key return values for both possible states (all providers connected vs credentials missing) and includes relevant fields like authenticated, pending, and connect_url. With no output schema, this description sufficiently prepares the agent for expected responses.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters and the schema is fully covered by default. The description appropriately includes no parameter details, matching the baseline for zero-parameter tools.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
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', which is a specific verb plus resource. It differentiates from siblings like 'authenticate' by focusing on status retrieval rather than initiating authentication.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for checking connection status but does not explicitly state when to use it versus alternatives like 'authenticate'. No exclusions or comparisons are provided, leaving the when-to-use context implied rather than explicit.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| query | No | ||
| action | No | search | |
| mcp_id | No | ||
| message | No | ||
| tool_id | No | ||
| arguments | No | {} | |
| immediate | No | ||
| tier_slug | No | ||
| prompt_body | No | ||
| prompt_slug | No | ||
| prompt_tool | No | ||
| prompt_vars | No | {} | |
| conversation | No | [] | |
| prompt_title | No | ||
| request_name | No | ||
| cancel_reason | No | ||
| cancel_comment | No | ||
| prompt_targets | No | ||
| report_context | No | ||
| prompt_category | No | ||
| request_details | No | ||
| prompt_description | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description discloses important behavioral traits beyond annotations: invoke runs tools without installing them, does not bloat the tool list, returns connect links for missing credentials, returns checkout links for unpaid usage, and requires workspace owner/admin for writes. This is rich additional context that annotations alone do not provide, and it does not contradict any annotation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is long, but the tool is genuinely complex with multiple action families and a prompt-library subsystem. It front-loads the core marketplace purpose and workflow, uses clear signals like 'KEY:' and 'Use install only to...' to highlight critical decision points, and nearly every sentence adds distinct information. Some structuring with bullets would improve scannability, but content is dense rather than padded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given 23 parameters, no output schema, and sparse annotations, the description covers the main flows, auth requirements, payment edge cases, install-vs-invoke tradeoffs, and the prompt library thoroughly. It does not exhaustively document every parameter or return shape for every action, but it provides enough operational context for an agent to use the tool effectively and discover missing details through the catalog itself.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With 23 parameters and 0% schema description coverage, the description carries the main semantic burden. It does explain action, tool_id, prompt_vars, prompt_slug, and the action-dependent meaning of many fields, but many parameters such as limit, query, immediate, tier_slug, conversation, message, cancel_reason, and request_details are left without direct explanation. The description partially compensates for the schema gap but not fully.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states this is the official mcp.ai marketplace catalog and execution layer, covering both discovery and running of MCP tools. It explicitly maps the main workflow (search → describe → invoke) and distinguishes itself from sibling tools by naming report_bug and explaining the marketplace-specific actions.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
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 invoke vs install ('prefer invoke for a single/occasional use'), how to handle credentials and payments, and what list_tools is for. It also explains the search/describe flow and the prompt-library subactions, so an agent can choose the correct action with clear context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
mpf_certidao_negativa_consultarBRead-onlyIdempotentInspect
MPF: Certidão Negativa, 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).
| Name | Required | Description | Default |
|---|---|---|---|
| cpf | No | ||
| cnpj | No |
TDQS
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 clear. The description adds valuable context: it is hosted by the platform, requires no platform credentials, is paid per query with prepaid credit, and the data is not confidential (same as available to citizens). It also mentions LGPD compliance and data controller responsibilities, which is useful for legal/ethical considerations. This 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.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise, with three sentences covering purpose, hosting/payment, and data/LGPD aspects. It is front-loaded with the main purpose. However, it includes some legal boilerplate that might be less critical for tool invocation, but it is still relevant context. No wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (two optional parameters, no output schema), the description covers the main aspects: what it does, how it's accessed, and legal considerations. However, it lacks details on parameter usage (which one to provide, format) and what the response contains. The annotations cover safety, but the description could be more complete for a tool that requires payment.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema has two parameters (cpf and cnpj) with no descriptions, and the description does not explain them. It mentions 'consulta informação' but does not clarify that either CPF or CNPJ is required, nor does it explain the format or that they are mutually exclusive. With 0% schema description coverage, the description should compensate, but it fails to provide any parameter-level guidance.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: consulting a negative certificate (Certidão Negativa) from the MPF (Ministério Público Federal) through an official source. It specifies the resource (MPF certificate) and the action (consult). It distinguishes from siblings by focusing on this specific certificate type, though it doesn't explicitly name alternatives.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides context on when to use the tool: to consult information from official Brazilian sources, with payment via prepaid credit. It implies usage for obtaining a negative certificate but does not explicitly state when not to use it or mention alternative tools. The sibling tools are mostly unrelated (authentication, marketplace, etc.), so differentiation is less critical, but explicit guidance is lacking.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
report_bugAIdempotentInspect
Report a bug, missing feature, or send feedback. Include the conversation array with recent messages for reproduction.
| Name | Required | Description | Default |
|---|---|---|---|
| context | No | ||
| message | Yes | ||
| conversation | No | [] |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations indicate readOnlyHint=false and idempotentHint=true, but the description does not clarify side effects (e.g., where the report goes, confirmation). It adds minimal behavioral context beyond the annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two concise sentences, clearly structured and free of unnecessary detail.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description lacks information about expected outcome, error handling, or return value. While no output schema exists, the description does not specify what happens after reporting, leaving some ambiguity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema has zero parameter descriptions, and the tool description only mentions the 'conversation' parameter. Parameters 'context' and 'message' are completely unexplained, providing insufficient guidance for correct usage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
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 is distinct from sibling tools like authenticate, connect, or show_version, which serve different functions.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides a specific usage hint ('Include the conversation array with recent messages for reproduction'), but does not explicitly mention when to use this tool versus alternatives. However, since no similar tools exist, the context is implied.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
show_versionARead-onlyIdempotentInspect
Show the current MCP platform and adapter versions.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, and the description's 'Show' aligns perfectly with those. The description adds the specific scope of what is shown (platform and adapter versions), which is useful context beyond the annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The entire description is a single, front-loaded sentence that communicates the tool's purpose without any filler or redundant information. Every word contributes value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity—zero parameters, no output schema, and read-only/idempotent annotations—the description is fully sufficient for an agent to select and invoke it correctly. There are no hidden behaviors or complex inputs to document.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool takes zero parameters, so there is no parameter ambiguity to clarify. The schema coverage is 100% by virtue of having an empty properties object, and the description needs no additional parameter-level detail.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Show') and a clear resource ('current MCP platform and adapter versions'), making the tool's function immediately clear. It is distinct from the listed sibling tools, none of which appear to be version-reporting utilities.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description clearly implies the tool is for checking current platform and adapter versions. There are no exclusions or prerequisites needed for a simple informational tool, so the lack of explicit alternatives is not a meaningful gap.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
toolkit_infoARead-onlyIdempotentInspect
Returns the current toolkit state: installed MCPs, their connection status, the accounts connected to each one, and how many catalog tools each exposes.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The annotations already indicate readOnlyHint, idempotentHint, and non-destructive behavior, so the description doesn't need to repeat that. The description adds valuable context about the exact content of the return (installed MCPs, status, accounts, tool counts) which goes beyond the annotations and clarifies what 'state' means.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence that is dense with relevant information, listing all the key components of the returned state. It is front-loaded with the core purpose and avoids any unnecessary words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the simplicity of the tool (no parameters, no output schema), the description is complete enough. It specifies the components of the return value sufficiently, and the annotations cover safety. It could arguably offer more detail on the format, but it is adequate.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Since there are zero parameters, the schema provides no parameter details, and the baseline is 4. The description compensates by clearly stating what the tool returns, effectively covering the absence of parameters.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states exactly what the tool does: returns the current toolkit state, listing installed MCPs, connection status, accounts, and catalog tool counts. This is specific and distinct from the sibling tools, which include authentication, connection, market, and reporting functions.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies this is an informational tool to check the state of the toolkit, which is useful before connecting or using other tools. However, no explicit guidance is given about when to use this versus alternatives, though the sibling context makes it clear this is the state-inspection tool.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
No tool schema history has been recorded yet.
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity – fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user, then choose Claim with GitHub. An organization namespace such asio.github.acme/serveralso needs that organization to have installed the Glama AI GitHub App and approved its permissions, because GitHub discloses organization membership only to apps it has installed. Use HTTP or DNS when it has not.HTTP challenge – works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge – works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Connectors
MPT Unificada: Certificate Negativa de Feitos, official-source lookup. Platform-hosted, pay per quer
MPT MS: Certificate Negativa de Feitos, official-source lookup. Platform-hosted, pay per query with
MPT MT: Certificate Negativa de Feitos, official-source lookup. Platform-hosted, pay per query with
MPT SE: Certificate Negativa de Feitos, official-source lookup. Platform-hosted, pay per query with
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceMCP server for querying official negative certificates (Certidão Negativa de Feitos) from MPT AC e RO. Read-only, hosted, pay-per-use with prepaid credits.MIT
- AlicenseNot gradedqualityCmaintenanceMCP server to consult official negative civil and criminal certificates from TRF4 (Brazilian Federal Regional Court). It provides a single read-only tool for querying certificates, with pay-per-use credits.MIT
- AlicenseNot gradedqualityCmaintenanceEmits civil, criminal, and fiscal certificates from Brazilian state courts (Tribunal de Justiça) using CPF or CNPJ and UF. Read-only MCP server accessible via HTTP, pay-per-use with prepaid credits.MIT
- AlicenseNot gradedqualityCmaintenanceEnables read-only consultation of Certidão Negativa de Feitos from official MPT BA sources via a hosted MCP server with pay-per-use credits.MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.