Tribunal TRF5: Certidão Negativa Cível e Criminal
Server Details
Tribunal TRF5: Certificate Negativa Cível e Criminal, official-source lookup. Platform-hosted, pay p
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- mcp-dir/tribunal_trf5_certidao-mcp
- GitHub Stars
- 0
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/5 across 6 of 7 tools scored. Lowest: 3.2/5.
Most tools have clearly separate responsibilities: authentication, connection status, marketplace operations, bug reporting, versioning, toolkit state, and the domain query are distinct. The main possible confusion is between `connect` and `toolkit_info`, since both report connection/toolkit status, but their descriptions resolve that overlap.
The naming pattern is inconsistent: bare verbs (`authenticate`, `connect`), verb_noun forms (`report_bug`, `show_version`), noun labels (`marketplace`, `toolkit_info`), and one Portuguese domain-specific name (`tribunal_trf5_certidao_consultar`) are mixed together. There is no single predictable convention across the set.
Seven tools is not an unreasonable count, but six of them are generic platform/marketplace/toolkit administration tools and only one is actually specific to the certificate domain. The server appears bloated for its apparent purpose while also offering just one specialist action.
The core domain workflow, querying a TRF5 negative certificate, is covered by `tribunal_trf5_certidao_consultar`, and payment/connection concerns are handled by the supporting platform tools. There are minor gaps such as no explicit history or validation tools, but the primary certificate-query path is usable.
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 adds context beyond annotations by mentioning permanent non-expiring vs session-only login, giving insight into persistence and side effects, though it doesn't explicitly describe all mutation details.
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 yet dense, organized with clear steps and options, and every sentence adds value without redundancy.
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 authentication tool, it covers the essentials: how to obtain the token, two ways to use it, and the outcome of calling with no arguments, making it sufficiently complete.
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 fully explained: it is the JWT from the browser, used for session-only login, and the behavior with no args (get link) is also described, covering the only parameter.
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 authentication purpose with specific actions (log in, copy token) and distinguishes from sibling tools like connect or show_version.
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 explicit instructions on how to use (browser login, token handling) and describes two usage scenarios (permanent config vs session-only), but does not explicitly contrast with alternatives or state when not to use.
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?
Annotations already indicate readOnlyHint, idempotentHint, and non-destructive behavior. The description adds meaningful conditional context: returns authenticated:true with empty pending[] when connected, and connect_url plus per-install URLs when credentials are missing. This goes beyond the annotations without contradicting them.
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 sentences, fully front-loaded with the core purpose, followed by conditional detail. Every sentence 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?
With no parameters and no output schema, the description adequately explains both possible return states and the URLs involved. It is complete for a simple status tool, though it could mention how this relates to 'authenticate' for fuller contextual guidance.
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 schema description coverage is trivially 100%. Per the baseline rule for 0-parameter tools, a score of 4 is appropriate; the description adds no parameter semantics because none are needed.
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 a specific action ('Returns connection status and URLs') tied to a clear resource (connection status), and distinguishes itself from sibling 'authenticate' by focusing on read-only status 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 when to use the tool (to check connection status and retrieve URLs) and describes conditional behavior, but it does not explicitly contrast with 'authenticate' or state when not to use it. Usage guidance is 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 |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations only state readOnlyHint=false, openWorldHint=true, idempotentHint=false, destructiveHint=false. The description adds substantial behavioral context: invoke works even when the MCP is not installed, returns connect/checkout links conditionally, and writes require workspace owner/admin. It also explains the one-off vs permanent installation behavior and the semantics of the prompt library. This goes far beyond the annotations by describing side effects, permissions, and edge cases.
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 and unstructured (multiple run-on paragraphs), but it is densely packed with useful information and avoids fluff. Every sentence adds value. Given the tool's complexity (14 actions, two domains), the length is justified, though better organization (e.g., bullet points or sections) would improve scannability.
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?
Despite 23 parameters, 14 actions, and no output schema, the description covers the full workflow, permissions, billing, edge cases (connect link, checkout link), and the prompt library. It explains what each action returns (e.g., 'invoke returns a connect link', 'get_prompt returns its full text'), so the agent has enough context to operate correctly. The description is remarkably complete for such a multifaceted tool.
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 for the 23 parameters. It explains the concept of 'action' by listing all possible actions and their purposes, but it does not directly map parameter names to usage (e.g., not saying 'query' is the search term or 'limit' caps results). Some parameters like 'tool_id' and 'arguments' are implicitly covered through the invoke flow, but many (e.g., 'conversation', 'prompt_vars') are left undocumented. The description provides partial meaning but not complete parameter semantics.
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: 'The official mcp.ai marketplace — the in-platform catalog of every MCP/tool, AND the way to run them.' It distinguishes itself from sibling tools by covering both MCP discovery/execution and a prompt library, and further clarifies sub-actions like search, describe, invoke, and install. This is a specific verb+resource with clear scope.
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: 'Core flow: action=search discovers MCPs by intent → describe returns one MCP's full profile... invoke RUNS that tool.' It also gives when-not-to-use guidance: 'Use install only to make an MCP PERMANENT... prefer invoke for a single/occasional use.' It further distinguishes each action (list_tools, subscribe, report_bug, request_mcp, etc.) and explains the prompt library sub-actions, so the agent knows exactly when to use each mode.
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?
Annotations already convey this is a write operation (readOnlyHint=false), idempotent (idempotentHint=true), and non-destructive (destructiveHint=false). The description adds context about including a conversation for reproduction, which is useful but does not disclose additional behavioral traits beyond what annotations provide. 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?
The description is two sentences, front-loaded with purpose, and contains no fluff. Every word adds value, providing the core purpose and a specific usage instruction.
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 low-complexity tool with 3 parameters and no output schema, the description is minimally sufficient. It states the purpose and hints at the conversation parameter, but omits explanations for the other parameters. While not lacking major context, it could be more complete by clarifying all fields.
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 mentions the 'conversation array' and its purpose ('recent messages for reproduction'), which partially clarifies the 'conversation' parameter. However, it does not explain the required 'message' field or the optional 'context' field, leaving them unexplained. This is insufficient given zero schema 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 clearly states the tool's purpose: 'Report a bug, missing feature, or send feedback.' It uses specific verbs and a distinct resource (bug/feature/feedback), which is unambiguous and differentiates it from unrelated sibling tools like authenticate or 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?
The description gives a direct usage hint: 'Include the conversation array with recent messages for reproduction.' This implies when to use the tool (to report issues) but does not provide exclusions, alternatives, or when not to use it. Given there are no closely related siblings, this is adequate but not explicit.
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 declare readOnlyHint=true, idempotentHint=true, destructiveHint=false. The description adds the specific output content (platform and adapter versions) but doesn't go beyond that. It doesn't disclose return format or any potential side effects, but annotations already cover the safety profile. The description adds a bit of context about what versions are shown, so a 3 is appropriate.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence, front-loaded with the action, and contains no fluff. It is concise and clear. Perfectly appropriate for this simple tool.
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 (no parameters, no output schema, basic read-only operation), the description is complete. It states what the tool does. Annotations cover safety traits. Siblings are unrelated, so no additional disambiguation needed. The description could be considered slightly sparse for transparency, but for a version check, this is sufficient.
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 0 parameters, and schema description coverage is 100% (vacuously, since there are no properties). The description doesn't need to elaborate on parameters. Baseline for 0 params is 4, and the description is clear about what it returns. No additional param information needed.
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: it shows current MCP platform and adapter versions. The verb 'show' is specific and the resource (platform and adapter versions) is named. While it doesn't explicitly differentiate from siblings, the sibling tools have unrelated purposes (auth, connection, marketplace, bug reporting, etc.), so no real confusion arises.
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 conveys usage: call this when you need to know version information. It doesn't explicitly state when not to use it or mention alternatives, but given the sibling tools have distinct functions, context implies the tool is for version queries. No explicit exclusion is provided, but the simplicity makes it adequate.
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?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, which are consistent with this read-only operation. The description adds value by detailing exactly what information is returned (installed MCPs, connection status, accounts, catalog tool counts), 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?
Single sentence, clearly enumerates the returned data. No fluff, perfectly front-loaded.
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 state-query tool with no parameters and no output schema, the description fully captures what the caller can expect. It mentions all key return elements and is self-contained.
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?
No parameters exist, so the schema provides full coverage. The description doesn't need to elaborate on parameter semantics; a baseline of 4 is appropriate 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 it returns toolkit state, listing specific elements (installed MCPs, connection status, accounts, catalog tool counts). This is specific and distinguishes it from sibling tools like show_version or authenticate, which serve different purposes.
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 when to use (to check toolkit state) but doesn't explicitly discuss alternatives or when not to use. No exclusions or comparison to sibling tools, so guidance is adequate but not explicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
tribunal_trf5_certidao_consultarBRead-onlyIdempotentInspect
Tribunal TRF5: Certidão Negativa Cível e Criminal, 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 | ||
| orgao | No | ||
| birthdate | No | ||
| tipo_certidao | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate read-only, idempotent, and non-destructive behavior, and the description is consistent with them. It adds meaningful context: no credentials required, prepaid usage, official public-sourced data, and the client's LGPD data-controller responsibility. It does not disclose rate limits or failure modes, but the core behavioral profile is transparent.
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 compact, using a few sentences without rambling. It front-loads the purpose and then adds relevant payment, credential, and LGPD context. It is efficient given the amount of background information it conveys.
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 five parameters, no output schema, and no parameter-level documentation, yet the description does not explain how to build a valid request or what the returned certidão would look like. It is richly contextual about pricing and legal posture but insufficient, for independently invoking the call, especially because required tipo_certidao is never documented.
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% and the description does not explain any of the five parameters. It never clarifies what 'cpf', 'cnpj', 'orgao', 'birthdate' or 'tipo_certificacao' should contain, nor what values the required tipo_certificao should take. The description completely fails to compensate for the lack of parameter 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 identifies the resource ('Tribunal TRF5', 'Certidão Negativa Cível e Criminal') and the operation ('consulta em fonte oficial'), which is more specific than the bare tool name. It does not explicitly distinguish this tool from potential alternative court/certidade lookup tools, but the scope is still unmistakable.
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 useful usage context: it is a paid, prepaid-credit consultation, requireslement no platform credentials, and returns data available to citizens. However, it does not say explicitly when to use this tool instead of another, nor does it mention disallowed or alternative usage cases.
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
- Alicense-qualityCmaintenanceIssues civil, electoral, or criminal certificates from Brazilian Federal Regional Courts (TRF) using CPF/CNPJ and region, via a hosted, read-only MCP server.MIT
- -license-quality-maintenanceConsulta certidões negativas cíveis e criminais do TRF1 em fonte oficial, por meio de uma ferramenta de leitura.
- -license-quality-maintenanceConsulta oficial de certidões do Tribunal de Justiça do Rio de Janeiro (TJRJ) em fonte oficial, com ferramenta de leitura única e pagamento por uso via créditos pré-pagos.
- -license-quality-maintenanceProvides access to official civil and criminal negative certificates from TRF2 through a read-only MCP tool, enabling queries from any MCP-compatible client.