Antecedentes (Polícia Civil)
Server Details
Looks up a person's criminal record certificate at the state police (Polícia Civil), from the CPF, R
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- mcp-dir/antecedentes_policia_civil-mcp
- GitHub Stars
- 0
- Server Listing
- Antecedentes (Polícia Civil)
Available Tools
7 toolsantecedentes_policia_civil_consultarARead-onlyIdempotentInspect
Consulta a certidão de antecedentes criminais de uma pessoa na Polícia Civil, a partir do CPF, RG, UF e nome. Feito para o titular consultar os próprios antecedentes. Hospedado pela plataforma, sem credenciais, pague por consulta com crédito pré-pago. Consulta informação de ACESSO PÚBLICO em bases e fontes oficiais (a mesma disponível ao cidadão), não é dado privado nem sigiloso. O cliente é o controlador dos dados e responde pela finalidade legítima (LGPD).
| Name | Required | Description | Default |
|---|---|---|---|
| Rg | Yes | ||
| Uf | Yes | ||
| CPF | Yes | ||
| Nome | Yes | ||
| NomeMae | Yes | ||
| completo | No | ||
| DataNascimento | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnly, idempotent, and non-destructive. The description adds behavioral context beyond annotations: no authentication is needed, each query consumes prepaid credit, and the data is public access. It also explains the data privacy role under LGPD, which is useful for agent decision-making.
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 few clear sentences in Portuguese, front-loaded with the main function. It includes relevant details about cost, credentials, and data publicness. The LGPD sentence is somewhat tangential but still pertinent for compliance. Overall, it is efficient and well-structured for its length.
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 tool has 7 parameters and no output schema. The description covers purpose, target user, data nature, access model, and cost, which is good context. However, it omits parameter semantics and does not mention what the tool returns (e.g., the certificate content or a status). This is a moderate gap given the absence of an 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 schema descriptions are absent (0% coverage), so the description must compensate. It names only CPF, RG, UF, and nome, but the schema requires NomeMae, DataNascimento, and includes an optional 'completo' flag, which are not explained. This partial coverage leaves the agent without guidance on required fields or the meaning of 'completo'.
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 explicitly states it queries the criminal record certificate ('certidão de antecedentes criminais') from the Civil Police, using CPF, RG, UF, and name. It also clarifies the intended user (the record holder), which distinguishes it from background-check tools and clearly differentiates it from sibling platform 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 provides clear usage context: it is intended for the data subject to consult their own records, it requires no credentials but charges prepaid credit, and it imposes LGPD responsibilities on the client. It does not explicitly state when not to use the tool or reference alternatives, but sibling tools are unrelated, so the guidance is adequate.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
authenticateAIdempotentInspect
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?
Beyond annotations, the description reveals key behaviors: token is a JWT, can be permanent or session-only, and calling with no args returns a login link. It does not contradict readOnlyHint: false or idempotentHint: true, and it adds meaningful context about token lifetime and configuration.
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 three sentences long with a clear structure ('Best:' and 'Or') that makes it easy to follow. While it is a bit wordy, every sentence adds value, so it earns a 4 rather than a 5.
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 tool with one optional parameter and no output schema, the description is complete: it covers the authentication workflow, configuration options, token semantics, and what to expect (a link) when calling with no args. It fully equips the agent to use the tool correctly.
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 provides only 'token: string' with no description. The description compensates fully by explaining the token's format (JWT), its optionality, and exact usage: call with { token: '<jwt>' } or with no args to get the link. This is excellent semantic coverage.
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 opens with 'MCP.AI for IDE agents (Cursor, etc.): log in in the browser, copy the access token,' clearly identifying the tool's purpose as authentication. It distinguishes itself from siblings like 'connect' by focusing on token-based login for IDE agents.
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 explicit usage guidance: 'Best: add it to this server's config as a header ... for a permanent, non-expiring connection' and 'Or paste it here for a session-only login.' It gives clear context for two methods but does not explicitly mention when not to use the tool or alternative tools, hence a 4.
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 read-only and idempotent behavior. The description adds valuable context about conditional responses based on connection state (authenticated vs. missing credentials), which goes beyond the annotations. It does not mention side effects or required auth, but these are covered by 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 sentences, front-loaded with the core purpose, and every sentence provides useful information without redundancy or fluff.
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 params, no output schema), the description covers the main expected outcomes. However, it only describes the two extreme states (all connected vs. credentials missing) and does not address partial connection states, which could be a minor gap.
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, so there is no parameter information to add. Per baseline, a description is not expected to compensate for parameter documentation when there are none. The description correctly focuses on behavior.
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, with specific conditions for different outputs. It distinguishes itself from siblings like 'authenticate' by focusing on status checking rather than performing authentication.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implicitly explains when to use this tool: it tells the user what to expect when credentials are missing, implying this is the tool to check current connectivity. However, it does not explicitly name alternatives or state when not to use 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 |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Goes well beyond annotations by disclosing key behaviors: invoke works even when MCP is not installed, runs the tool 'pontualmente (one-off)' without adding to toolkit, returns connect/checkout links for auth/payment with retry instruction, and writes require workspace owner/admin. 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.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is long but appropriately structured: summary sentence, core flow with arrows, key invoke behavior, billing/permissions, prompt library. It's dense but every section adds value for a 14-action tool; it could be split into bullets for easier scanning but remains effective.
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 complexity (14 actions, 23 parameters), the description covers most critical behaviors: search/describe/invoke/install, billing, prompts, and permissions. However, it omits explanation of the 'resume' action and some parameters, and with no output schema it doesn't specify return structures (beyond the connect/checkout links), leaving minor 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?
With 0% schema description coverage, the description compensates by explaining the action enum semantics and several key parameters (mcp_id, tool_id, arguments, prompt_*). However, some parameters like 'immediate', 'tier_slug', 'conversation' are left unmentioned, though many are self-evident from their names.
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 role: 'The official mcp.ai marketplace — the in-platform catalog of every MCP/tool, AND the way to run them.' It distinguishes itself from siblings by covering a wide range of actions (search, describe, invoke, install, prompts) with a coherent core flow, whereas siblings like authenticate/connect are narrowly scoped.
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 explicit usage guidance: 'prefer invoke for a single/occasional use' and 'Use install only to make an MCP PERMANENT'. It outlines a step-by-step flow (search → describe → invoke) and explains when to use other actions (list_tools, subscribe/cancel, report_bug, request_mcp, prompt actions). Also clarifies permission requirements for writes.
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 already declare readOnlyHint=false, destructiveHint=false, and idempotentHint=true, so the description doesn't need to restate these. It adds context about including the conversation array for reproduction, but doesn't disclose what happens after reporting (e.g., ticket creation). No contradiction found.
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, front-loaded sentence with no fluff. It wastes no words and delivers the core instruction clearly.
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 3 params and no output schema, the description covers the primary purpose and one key parameter. However, it leaves 'message' and 'context' semantics vague and doesn't mention expected outcomes or side effects beyond what annotations imply.
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 adds some meaning for the 'conversation' parameter ('Include the conversation array with recent messages for reproduction') but leaves the required 'message' and optional 'context' unexplained, providing insufficient 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 with a specific verb ('Report') and resource (bug/feature/feedback). It distinguishes itself from unrelated sibling tools like 'authenticate' and 'marketplace'.
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 provides a clear when-to-use guideline ('Report a bug, missing feature, or send feedback') and instructs the agent to include the conversation array. However, it doesn't explicitly mention alternatives or exclusions, though siblings are unrelated.
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, so the safety profile is established. The description adds behavioral context by specifying 'current' versions and narrowing scope to MCP platform and adapter versions, which is useful beyond the annotation-only view. 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 a single sentence, directly front-loaded with the action and object. Every word adds value, with no repetition of the name or unnecessary qualifiers. It is optimally concise.
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 has no parameters, no output schema, and annotations covering read-only/idempotent behavior, the description is sufficient for an agent to select and invoke it. The only missing detail might be the return format, but for a version tool this is not a critical gap. The combination of description and annotations makes the tool's behavior fully predictable.
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, so the input schema is fully covered at 100% and there is nothing for the description to add. Per the baseline for 0-parameter tools, this is appropriately scored as 4. The description correctly omits parameter details since none exist.
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 clearly identifies the resource: 'current MCP platform and adapter versions.' It is unambiguous and distinct from siblings like toolkit_info, which would cover broader toolkit information. No confusion 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.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies the tool is for checking version information, but it does not explicitly compare to sibling tools like toolkit_info or state when to use this instead of alternatives. However, the tool's purpose is self-evident and there is little ambiguity in a version-checking context.
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?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false. The description adds meaningful context by specifying exactly what state information is returned (installed MCPs, connection status, accounts, catalog tool counts), which goes beyond the annotations and gives the agent a clear expectation of the tool's output.
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 front-loaded with the main action ('Returns the current toolkit state') and then efficiently lists the included elements. Every word contributes value, with no redundancy or filler.
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, zero-parameter, read-only tool with no output schema, the description fully covers what the agent needs to know: what the tool does and what information it returns. The annotations cover the safety profile, so nothing else is 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?
The tool has zero parameters, so the description doesn't need to explain parameter usage. The baseline for 0-param tools is 4, and no additional parameter information is required.
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 identifies the tool's function with the verb 'Returns' and specifies the resource: the current toolkit state. It enumerates exactly what is included (installed MCPs, connection status, accounts, catalog tool counts), which distinguishes it from sibling action-oriented tools like authenticate or connect.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context that this is a state-inspection tool, implying it should be used when you need an overview of the toolkit's MCPs, connections, and accounts. It does not explicitly name alternatives or exclusions, but the nature of the tool makes its use case obvious and distinct from the action-oriented siblings.
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
Looks up a person's criminal record certificate at the Federal Police, from the CPF and name. Built
Checks for open arrest warrants in the CNJ national database for a person, from the CPF and name. Pl
Issues a person's electoral crimes clearance at the Electoral Court (TSE) from the name, CPF, voter
Issues a person's voter good-standing clearance at the Electoral Court (TSE) from the name, CPF, vot
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceProvides read-only access to official criminal records from Minas Gerais, Brazil, via a single query tool.MIT
- AlicenseNot gradedqualityCmaintenanceEnables querying first-degree criminal certificates from the São Paulo Court of Justice (TJSP) using natural language.MIT
- AlicenseNot gradedqualityCmaintenanceEnables querying the Brazilian Superior Electoral Court (TSE) for electoral crimes certificates of individuals using personal data like name, CPF, voter ID, and birth date.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
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
The single domain tool (antecedentes_policia_civil_consultar) is clearly distinct from the platform utility tools, which have well-separated purposes (authentication, connection status, marketplace search/invoke, bug reporting, version info, toolkit state). No two tools appear to perform the same action.
The domain tool uses a long Portuguese noun-phrase verb (antecedentes_policia_civil_consultar) while all other tools use short English imperative or noun phrases (authenticate, connect, marketplace, report_bug, show_version, toolkit_info). This mixture of languages and naming patterns is inconsistent and makes the set feel disjointed.
Seven tools is within a typical range, but the set is heavily weighted toward generic MCP platform tools that have nothing to do with the server's stated domain (criminal background checks). Only one tool actually serves the domain, making the count feel inflated and unfocused for the apparent purpose.
The platform tools are comprehensive, covering authentication, connection, marketplace discovery, invocation, bug reporting, versioning, and toolkit state. However, the domain surface is severely thin—only a single query operation with no supporting options (e.g., validation, different certificate types, or status tracking). For a server named 'Antecedentes', this leaves notable domain gaps.