Tribunal TST: CNDT
Server Details
Tribunal TST: CNDT, official-source lookup. Platform-hosted, pay per query with prepaid credit.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- mcp-dir/tribunal_tst_cndt-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.1/5 across 7 of 7 tools scored.
Tools are mostly distinct, but 'connect' and 'toolkit_info' overlap in reporting connection status, and 'marketplace' is a catch-all for multiple functions (search, describe, invoke, install, subscribe), creating potential ambiguity about which tool to use for a given task.
All tool names use snake_case consistently, but there is a mix of verbs (authenticate, connect, report_bug, show_version) and nouns (marketplace, toolkit_info, tribunal_tst_cndt_consultar). While readable, the inconsistency in part-of-speech is a minor deviation from a strict verb_noun pattern.
With 7 tools, the server fits well within the ideal 3-15 range. The number of tools is appropriate for the stated purpose of tribunal query and platform management without being excessive or too sparse.
The server covers core operations: authentication, connection status, tribunal query, version, and toolkit state. However, the 'marketplace' tool bundles many sub-actions (search, describe, invoke, install, subscribe) into a single tool, which could be considered a design gap for fine-grained control, but overall the domain is covered with no critical missing operations.
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 behavioral aspects beyond annotations, such as persistence (permanent vs. session) and the need for user input (pasting token). It doesn't explicitly mention potential side effects, but annotations already indicate it is idempotent and not read-only, so the description adds useful context without contradiction.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise and well-structured, fitting into three sentences. It avoids redundancy and clearly separates the two use cases. The structure flows logically from general purpose to specific instructions.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description is complete enough for the tool's purpose. It explains the authentication process and the two ways to use it, but does not specify the return value or what happens after successful login (e.g., whether a session is established). This is acceptable given there is no output schema, and the tool name 'authenticate' makes the outcome implicit.
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 sole parameter 'token' is explained as a JWT, and its optional nature is clarified by describing two calling patterns (with token for session login, without for obtaining the link). This adds meaningful detail beyond the schema's basic type and optionality.
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: authentication for MCP.AI IDE agents. It explains the two main workflows (permanent config vs. session login) and is unambiguous about the action (log in, get token).
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 guidance on when to use each mode: 'Best: add it to this server's config... for a permanent, non-expiring connection' and 'Or paste it here for a session-only login.' It also explains the argument variations (with token vs. no args).
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 declare readOnlyHint=true and idempotentHint=true. The description adds valuable behavioral context by specifying the exact return payloads: authenticated:true and empty pending[] when all connected, and connect_url when credentials are missing. This explains what the agent will receive, which goes beyond the annotation hints. It does not contradict any 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. Every sentence provides useful information without redundancy. It is concise and well-structured, with no fluff or unnecessary detail.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the low complexity (0 params) and the presence of annotations detailing safety, the description adequately explains the return values. It covers the two main states (all connected vs. missing credentials) and what the response includes. While it does not detail the exact structure of pending[] or connect_url, it provides sufficient context for an agent to understand the tool's output without 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 tool has 0 parameters, so the description does not need to explain any parameter semantics. The baseline for 0 params is 4, and the description does not need to add any parameter-specific information. The absence of parameters makes this dimension non-applicable beyond the baseline.
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: 'Returns connection status and URLs.' This is a specific verb (returns) with a clear resource (connection status and URLs). It also distinguishes from siblings like 'authenticate' by focusing on status retrieval rather than initiating authentication, and provides specific conditional behaviors (connected vs. missing credentials).
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 it (when you need to check connection status) but does not explicitly mention alternatives or exclusions. It notes different return conditions based on credential status, which gives context, but there is no direct guidance on 'use this instead of authenticate' or 'use this when you need a read-only status check.' Thus, it relies on implied usage.
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?
Beyond annotations (readOnlyHint=false, openWorldHint=true), the description discloses key behaviors: invoke runs tools one-off without adding to the toolkit, returns connect/checkout links when credentials/payment are needed, and writes require workspace owner/admin. It also explains the installed_in_toolkit vs installed_in_workspace flags and the fact that invoke includes a hidden one-off install. This adds substantial actionable context.
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 every sentence adds unique, non-redundant value. It is front-loaded with the core purpose, then flows into key distinctions (invoke vs install), permission notes, and the prompt library. It could be slightly more concise, but the density is justified given the tool's complexity. The structure is logical and scannable.
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 23 parameters, no output schema, and multiple sub-actions, the description is remarkably complete. It covers the full workflow, behavioral edge cases (credentials, payment), permission model, the prompt library, and even gives examples of capability requests. It does not detail every return value, but the core outcomes are stated (e.g., describe returns full profile, invoke returns connect/checkout link). This ensures an agent can operate the tool effectively.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With 23 parameters and 0% schema description coverage, the description carries a heavy burden. It mentions the action enum implicitly via the flow (search, describe, invoke) and explains that describe returns tool id + params, pricing, auth, but it does not explain individual parameters like limit, query, immediate, tier_slug, prompt_vars, etc. Some parameters are self-evident from the schema, but many subtle ones (immediate, tier_slug, prompt_targets) remain undocumented. The description provides a conceptual layer but not parameter-level 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 is the official mcp.ai marketplace for discovering and running MCPs/tools, and it enumerates specific actions (search, describe, invoke, install, etc.). It distinguishes itself from sibling tools by outlining the core search→describe→invoke flow and the prompt library. The verb+resource pairing is specific and unambiguous.
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 provides when-to-use guidance: 'prefer invoke for a single/occasional use', 'Use install only to make an MCP PERMANENT in the active toolkit', and describes alternatives like list_tools for what is callable now. It also notes permission requirements for writes (workspace owner/admin) and differentiates MCP vs prompt library usage.
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 annotation already indicates this is a write operation (readOnlyHint=false) and non-destructive. The description adds the behavioral nuance that the conversation array is used for reproduction, which is useful. However, it does not disclose what happens after reporting (e.g., ticket creation, notifications) or any side effects, leaving a moderate gap.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two concise, well-structured sentences. It front-loads the purpose and adds the key usage detail about the conversation array. No extraneous words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple tool with three parameters and no output schema, the description covers the core purpose and one parameter's role. It lacks an explanation of the context parameter and does not describe expected results or post-submission behavior. While sufficient for basic use, it leaves some gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description explains the purpose of the conversation parameter ('with recent messages for reproduction') and implicitly describes the message parameter as the bug/feedback content. However, the context parameter is completely unaddressed, and with 0% schema description coverage, the description does not fully compensate for all three parameters.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Report a bug, missing feature, or send feedback.' This is a specific verb-resource combination that distinguishes it from sibling tools like authenticate, marketplace, and toolkit_info, which serve different functions.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implicitly defines when to use the tool: whenever there is a bug, missing feature, or feedback to report. It also provides a usage hint by instructing to include the conversation array. However, it does not explicitly name alternatives or state when not to use it, which prevents a 5.
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 declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, covering the safety profile. The description adds specificity about what is displayed (platform and adapter versions) but offers no additional behavioral context such as output structure or error conditions. This matches the baseline for annotation-supported tools.
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 with no filler or redundancy. It immediately and efficiently communicates the tool's purpose, earning the highest score for conciseness.
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, and strong annotations—the description is sufficiently complete. It tells the agent exactly what the tool does, and nothing more is needed for a version check operation.
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%. There is no need for the description to explain parameter semantics, and the baseline score of 4 is appropriate given the absence of parameters.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description uses the specific verb 'show' and identifies the precise resource ('current MCP platform and adapter versions'), making its purpose unambiguous. It clearly distinguishes itself from sibling tools like authenticate, report_bug, and marketplace, which serve different functions.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It simply states what it does, leaving the agent to infer usage. There are no mentions of when to invoke it, when not to, or which sibling tools might be more appropriate for related tasks.
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 description is consistent with annotations (read-only, idempotent) but does not add extra behavioral insights beyond what annotations already cover. It doesn't mention side effects, rate limits, or other traits that could affect agent decisions.
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, clear sentence with no redundant information. It efficiently conveys the tool's purpose without unnecessary details.
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 (read-only status retrieval), the description provides sufficient detail about what state it returns. It doesn't specify the exact output structure, but that may not be necessary for this low-complexity 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?
The tool has no parameters, so there is nothing to describe. The schema is empty, and the description does not need to elaborate on parameter usage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function: returning the current toolkit state with specific details, using a specific verb ('Returns') and resource ('toolkit state'). It distinguishes from sibling tools like 'authenticate' or 'connect' by focusing on a read-only status overview.
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 no guidance on when to use this tool versus alternatives. It lacks explicit context, exclusions, or mention of alternative tools, leaving the intended usage partially implied.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
tribunal_tst_cndt_consultarARead-onlyIdempotentInspect
Tribunal TST: CNDT, 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?
The annotations already declare read-only and idempotent behavior, and the description adds significant context: no platform credentials are required, each query costs prepaid credit, the data is not confidential, and the client bears LGPD responsibility. This goes well beyond the annotation hints and helps the agent understand the tool's operational implications, though it stops short of detailing rate limits or exact return behavior.
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 at just three sentences, front-loading the core purpose before addressing cost, hosting, and legal aspects. Each sentence contributes distinct information without redundancy, though the LGPD sentence adds length and might be streamlined.
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 two-parameter read-only tool with no output schema, the description covers purpose, data source, hosting, cost, and data protection obligations. The lack of return-value documentation is a minor gap, but the provided context is otherwise sufficient to understand the tool's behavior.
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 schema description coverage, the description needed to compensate by explaining the cpf and cnpj parameters, but it does not. While the variable names are self-explanatory, the description neither details their formats nor clarifies how they relate (e.g., required fields, mutual exclusivity). Since both are optional in the schema, an agent has insufficient guidance to construct valid requests.
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 as a query ('consulta') against the official CNDT source at Tribunal TST, providing a specific verb and resource. It distinguishes itself from generic platform siblings like authenticate or show_version by naming the exact domain and purpose. The scope is unambiguous: retrieving citizen-accessible data from official Brazilian sources.
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 through context—this is for querying CNDT data from official sources, with a pay-per-query model and no platform credentials. However, it does not explicitly state when to use or not use this tool, nor does it name alternatives among the sibling tools. The guidance is only implicit.
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-qualityCmaintenanceEnables querying labor lawsuits (processos trabalhistas) in Brazilian Regional Labor Courts (TRT) using CPF or CNPJ, with read-only access and pay-per-use credits.MIT
- Alicense-qualityCmaintenanceEmits Brazilian labor debt clearance certificates (CNDT) from TST for individuals or companies using CPF or CNPJ. Provides read-only access via a single MCP tool for any MCP-compatible client.MIT
- Alicense-qualityCmaintenanceProvides negative certificate of ineligible bidder from TCU for a person or company using CPF or CNPJ. Hosted on the platform, no credentials required, pay per query with prepaid credits.MIT
- Alicense-qualityCmaintenanceEmits 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