MPT SP Campinas: Certidão Negativa de Feitos
Server Details
MPT SP Campinas: Certificate Negativa de Feitos, official-source lookup. Platform-hosted, pay per qu
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- mcp-dir/mpt_sp_campinas_cnf-mcp
- GitHub Stars
- 0
- Server Listing
- MPT SP Campinas: Certidão Negativa de Feitos
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
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.
Tool Definition Quality
Average 4.1/5 across 7 of 7 tools scored.
Most tools serve distinct purposes (auth, connection, marketplace, reporting, version, toolkit state), but 'marketplace' and 'connect' both relate to installation/connection flows, and 'marketplace' is overloaded with many sub-actions (search, invoke, install, subscribe, etc.) inside a single tool, creating potential confusion with 'toolkit_info' regarding installed vs callable tools.
Names mix styles: 'authenticate', 'connect', 'marketplace' are generic verbs/nouns, while 'mpt_sp_campinas_cnf_consultar' is a long domain-specific noun with no verb, and 'report_bug', 'show_version', 'toolkit_info' follow distinct patterns. No consistent verb_noun or naming convention across the set, with the specific tool name standing out as inconsistent.
Seven tools is a reasonable count for a platform that combines platform-level utilities (auth, version, report, toolkit state) with a single domain-specific tool (the MPT SP Campinas query). The count feels slightly heavy because 'marketplace' is a mega-tool covering many actions, but overall not excessive.
For a server named 'MPT SP Campinas: Certidão Negativa de Feitos', the main domain tool is present (consultar), but the rest are platform infrastructure rather than domain operations. The domain surface is essentially a single query tool with no related capabilities (e.g., history, batch, status) and the inclusion of a 'marketplace' tool suggests scope creep beyond the stated purpose.
Available Tools
7 toolsauthenticateAIdempotentInspect
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 |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description discloses important behavioral details: using the config provides a permanent, non-expiring connection, while pasting gives a session-only login. It also mentions calling with no args returns a link. These go beyond the annotations, which only state idempotency and non-destructive nature. The side effect of modifying config is implied and addressed.
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 lengthy and rambling, mixing instructions, best practices, and alternatives in a single block. It lacks clear structure (e.g., bullets or steps) and could be shortened significantly while retaining key information. The phrasing 'log in in the browser' is awkward and repetitive.
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 authentication context, the description covers all necessary steps: how to obtain a token, two usage options (config vs. session), and behavior when no args are provided. It does not mention output schema, but none is defined, so that's acceptable. The description is complete enough for a user to understand the tool's functionality.
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 single parameter 'token' is well explained: providing it uses the token, omitting it returns a link. The description clarifies both usage modes, effectively covering the parameter's semantics despite the schema not having a description. This adds meaningful context beyond the raw schema.
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 as authentication, explaining how to log in and obtain a token. It distinguishes itself by focusing on the token retrieval and usage, which is specific enough. However, the phrase 'MCP.AI for IDE agents' is somewhat vague and could be clearer.
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 instructions on how to use the tool: either add the token to the server config for permanent access or paste it for a session. It implies when to use it (authentication) but does not explicitly mention alternatives or when not to use it. The guidance is present but not comprehensive.
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 | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With readOnlyHint, idempotentHint, and destructiveHint already declared, the description adds genuine value by specifying exact response shapes for different system states (empty pending[], connect_url, per-install URLs). It reinforces the read-only contract without contradicting 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?
Exactly three sentences, each carrying distinct weight: core function, success condition, and failure/fallback condition. There is zero redundancy. The structure mirrors the tool's internal logic, making it highly scannable and easy to reason about.
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 parameterless, side-effect-free tool with a rich set of annotations and a detailed prose description, this is very complete. The only gap is a potential 'partial connection' edge case that the binary framing ('all connected' vs 'missing credentials') might not fully cover.
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 zero parameters, the baseline is 4. The description wisely communicates that the tool requires no arguments — it derives state itself. The behavioral description of what varies (connection state, URLs) is all the semantic context an agent needs for a 0-arg tool.
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+resource ('Returns connection status and URLs') and enriches it with state-dependent behavior ('When all providers are connected... When credentials are missing...'). The conditional return values clearly distinguish this status-check tool from siblings like 'authenticate' without any ambiguity.
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?
While the description never explicitly names alternatives (e.g., 'use authenticate to initiate'), the clear state-outcome mapping ('returns authenticated:true', 'returns connect_url') implicitly teaches the agent that this is the go-to gor status polling. It provides clear context for when to call this (to check connection state), even if it never explicitly says when *not* to call it.
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 |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Adds key behavioral context beyond annotations: invoke runs uninstalled MCPs one-off without bloating the toolkit, returns connect/checkout links for auth/payment, and writes require owner/admin. No contradiction with readOnlyHint=false or other 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?
Long but well-structured: purpose, core flow, KEY invoke behavior, action distinctions, auth note, prompt library. Every section adds value, though the density and the stray Portuguese example make it slightly less crisp than ideal.
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?
Covers the main search/describe/invoke loop, install vs invoke, billing actions, prompt library, and auth requirements. However, it omits the 'resume' action entirely and doesn't clarify several params, which is a gap for a 23-param dispatcher with no output schema.
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 description explains the meaning of many action values and core parameters (mcp_id, tool_id, arguments, prompt_slug, prompt_vars) through the flow. However, with 23 params and 0% schema coverage, several params (immediate, tier_slug, conversation, cancel_reason, report_context, request_details, prompt_targets, etc.) are left unexplained. It compensates partially 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 it is the official mcp.ai marketplace catalog and execution layer, then outlines the search→describe→invoke flow and the prompt library. This strongly differentiates it from sibling tools like authenticate, connect, and toolkit_info.
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?
It explicitly instructs when to use invoke vs install ('prefer invoke for a single/occasional use'), names list_tools for currently callable tools, subscribe/cancel for billing, request_mcp for new MCPs, and notes owner/admin requirements for writes. This is strong 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.
mpt_sp_campinas_cnf_consultarARead-onlyIdempotentInspect
MPT SP Campinas: Certidão Negativa de Feitos, 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 |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate read-only and non-destructive. The description adds significant context: prepaid credit payment, no platform credentials required, official Brazilian sources, data non-confidentiality, and LGPD responsibility. This goes 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.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is moderately concise, with the main purpose front-loaded. It includes several clauses about hosting, payment, and privacy, but each adds relevant context. It is not overly verbose, though slightly run-on.
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 query tool, it covers payment and data handling, but it omits parameter requirements and expected return behavior. With no output schema provided, the description should explain what the tool expects or returns, making it incomplete.
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 description does not explain the cpf and cnpj parameters, their purpose, or whether at least one is required. The input schema shows both as optional, and the description carries no clarification, leaving the agent without essential parameter 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 function: querying a Certidão Negativa de Feitos from MPT SP Campinas using the verb 'consulta'. It names the specific resource and is distinct from sibling tools that are platform-level operations (e.g., authenticate, connect).
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 negative certificates and mentions payment, but it does not explicitly state when to use this tool versus alternatives or any exclusions. It lacks clear 'when-to-use' guidance beyond context.
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 | [] |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description does not contradict annotations (idempotent, non-destructive, non-read-only). It adds the requirement to include conversation for reproduction, but does not disclose what happens upon calling (e.g., creates a ticket, sends an email) or mention idempotency, which is already covered by the idempotentHint 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?
Two concise sentences, front-loaded with the core purpose and a practical instruction. No filler or redundant 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 simple tool with only 3 parameters and no output schema, the description is adequate but incomplete: it covers the main purpose and flags the key parameter (conversation), but does not define 'message' or 'context', nor describe expected outcomes or error cases. This is acceptable but not comprehensive.
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?
Schema description coverage is 0%, so the description must compensate. It explains the 'conversation' parameter (include array with recent messages for reproduction) but does not clarify 'message' or 'context'. This is partial compensation; without describing all parameters, it leaves some ambiguity.
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?
Purpose is clear: 'Report a bug, missing feature, or send feedback' uses a specific verb (report) and resource (bug/feature/feedback). This clearly distinguishes itself from sibling tools like authenticate and show_version, which serve unrelated 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?
Provides context by instructing to include the conversation array with recent messages for reproduction, implying when to use (when reporting bugs/feedback). However, it does not explicitly mention exclusions or alternatives, but given sibling tools are unrelated, this is acceptable.
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 | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already mark it read-only and idempotent. The description adds that it returns MCP platform and adapter versions, which goes beyond the annotations and clarifies the output. 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.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single, clear, front-loaded sentence with zero fluff. Every word earns its place.
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, no-output-schema version tool, the description is fully complete. No additional behavioral or contextual details are needed.
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?
There are zero parameters and schema coverage is trivially 100%. Per the rubric, a baseline of 4 is appropriate when no params exist, and the description needs no further elaboration.
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 resource ('MCP platform and adapter versions'), making the tool's purpose immediately clear. It distinguishes itself from siblings like 'connect' or 'toolkit_info' by stating exactly what information is returned.
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 this is for retrieving version info, and no alternatives need consideration. While it doesn't explicitly name when-not-to-use or alternatives, the context is unambiguous for a version-checking tool.
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 | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The annotations already declare readOnly, idempotent, and non-destructive behavior. The description adds output details but does not elaborate on behavior beyond 'returns state'. It is consistent with annotations, but adds no extra behavioral context 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.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, concise sentence that directly states what is returned without any unnecessary fluff or redundancy. It is well-structured and immediately understandable.
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?
Since there is no output schema, the description adequately explains the return value by listing the key components (installed MCPs, connection status, accounts, catalog tools). It gives a complete picture of what the caller can expect.
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 input schema has zero parameters and 100% coverage, so the baseline is 3. The description adds no parameter-specific information because there are none to elaborate on. No extra meaning is provided beyond the schema itself.
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 what the tool does: returns the current toolkit state with specific details (installed MCPs, connection status, accounts, catalog tools). This is a specific verb-resource combination that distinguishes it 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.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context about the tool's purpose (fetching toolkit state) without explicit alternatives. While it does not mention when to use versus other tools, the unique functionality makes the usage implicit. Slight deduction for not explicitly stating exclusions or alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
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
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 Servers
- AlicenseNot gradedqualityCmaintenanceConsulta oficial de Certidão Negativa de Feitos do MPT SP em fonte oficial, com pagamento por uso e integração via MCP.MIT
- 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 gradedqualityCmaintenanceEnables querying official MPT RS records for negative certificates of proceedings (Certidão Negativa de Feitos) via a single read-only tool, with prepaid per-query pricing.MIT
- AlicenseNot gradedqualityCmaintenanceMCP server for querying negative certificates of court proceedings (Certidão Negativa de Feitos) from MPT DF e TO via official sources, with prepaid credit and read-only access.MIT
Your Connectors
Sign in to create a connector for this server.