Tribunal TRT24: Consulta Processual
Server Details
Tribunal TRT24: Lookup Processual, official-source lookup. Platform-hosted, pay per query with prepa
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- mcp-dir/tribunal_trt24_processo-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.2/5 across 7 of 7 tools scored.
The tools are mostly distinguishable, but `marketplace` bundles several responsibilities that overlap with `connect`, `toolkit_info`, and even `report_bug`. An agent could be unsure whether to call `connect`, `authenticate`, or `marketplace` for credential/connection issues.
Names mix imperative verbs (`authenticate`, `connect`, `show_version`), noun-style commands (`marketplace`, `toolkit_info`), and a long Portuguese domain name (`tribunal_trt24_processo_consultar`). They are readable and mostly snake_case, but the conventions and vocabularies are inconsistent.
Seven tools is a reasonable count by itself, but six of them are generic platform/admin utilities while only one is specifically about Tribunal TRT24 case consultation. The set feels padded for the named domain and only mildly well-scoped.
For a read-only 'processo consulta' service, the combination of the one TRT24 query tool plus the connection, authentication, marketplace, and payment plumbing covers the main workflow. Minor gaps remain around alternative query types or official-document details, but no major dead end is obvious.
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?
Annotations already indicate readOnlyHint=false and idempotentHint=true. The description adds valuable behavioral context: it explains that using config results in a non-expiring connection while pasting a token gives a session-only login. It also describes the interaction flow (browser login, copying token). This goes beyond the annotations by clarifying the permanence and session semantics, without contradicting any annotation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise (about 80 words) and front-loaded with the target audience ('MCP.AI for IDE agents'). It efficiently structures the two authentication modes and invocation calls. A minor structure issue is that it reads as a single long sentence with multiple clauses, which slightly reduces readability, but it remains appropriately sized for the content.
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 one optional parameter and no output schema, the description covers the essential scenarios: how to authenticate permanently via config, how to authenticate for a session via token, and how to request the login link. It does not mention error cases or what happens after a token is provided, but given the low complexity and existing annotations, it is adequately complete for an agent to use 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?
Schema has a single optional 'token' property with no description and 0% coverage, so the description must compensate. It explicitly explains the token parameter: it is a JWT to paste from the user, and when omitted, the tool returns the login link. This fully clarifies the parameter's meaning and usage, exceeding the schema's minimal information.
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 IDE agents, specifically obtaining an access token via browser login. It distinguishes itself from siblings like 'connect' by focusing on token-based authentication for MCP.AI, with explicit mention of two authentication flows (permanent config vs session token). The verb 'log in' and resource 'access token' are specific.
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: it recommends adding the token to config for permanent connection, or pasting a token for session-only login. It also instructs how to invoke the tool (with token or no args to get the link). However, it does not explicitly mention when not to use this tool versus alternatives like 'connect', though the context makes it clear this is for authentication.
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 readOnly, idempotent, and non-destructive, so the safety profile is covered. The description adds meaningful behavioral context by detailing the response shape for both success (authenticated:true, empty pending[]) and failure (connect_url, per-install URLs) cases, which is valuable beyond the annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, front-loaded with the core purpose, and each sentence adds essential information about conditional behavior. There is no wasted wording, and it is easy to parse.
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, lack of parameters, and lack of an output schema, the description provides sufficient detail about the two main scenarios. It covers the key return fields (authenticated, pending, connect_url, per-install URLs) and leaves no critical ambiguity for an agent selecting or invoking this 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 zero parameters, so the schema provides no constraints. The description correctly implies that no inputs are needed and focuses on output behavior. Baseline for 0 params is 4, and the description fully avoids needing parameter explanations.
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 a specific action: 'Returns connection status and URLs.' It also specifies the output under different conditions (all connected vs missing credentials), which makes the tool's purpose unambiguous and distinguishes it from siblings like authenticate.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description clearly implies usage as a connection status check by describing what it returns and when. It doesn't explicitly exclude alternatives, but the context (sibling tools like authenticate) makes it evident when to use this tool. No explicit exclusions are needed for such a straightforward read-only status tool.
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?
The annotations only carry readOnlyHint=false with no safety detail, so the description carries full weight — and it delivers. It discloses the one-off invoke behavior ('runs the tool pontualmente... without adding the MCP to the toolkit'), the connect-link and checkout/top-up retry semantics for missing auth/empty wallet, and the owner/admin requirement for writes. All that goes well beyond the structured annotation block with no 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?
A dense ~350-word single paragraph with no line breaks, bullets, or a crisp front-loaded summary. Nearly every sentence earns its place given the 14-action surface pinned to a single tool, so it is information-dense rather than padded, but the wall-of-text presentation seriously hurts scannability for an agent parsing it.
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 14-action router with no output schema, it covers the primary flows well: the search→describe→invoke pipeline, install vs invoke trade-offs, auth/payment edge cases (connect link, top-up link, retry), permission requirements, and the separate prompt library. It partially discloses return behavior (connect/checkout links, prompt text, shareable slug), though it never details what describe or list_tools return.
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 params at 0% schema coverage, the description must compensate heavily. It does explain the pivotal action enum and its values (search, describe, invoke, install, list_tools, prompt actions) and ties tool_id/arguments to the invoke flow. But individual parameter semantics — limit, immediate, tier_slug, cancel_reason, conversation, prompt_vars — remain undocumented, leaving gaps the schema does not fill.
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?
States its full role explicitly: 'the official mcp.ai marketplace — the in-platform catalog of every MCP/tool, AND the way to run them.' It then enumerates all 14 dispatch actions, making the broad surface unambiguous. Clearly distinct from siblings like authenticate, connect, and tribunal_trt24_processo_consultar, so there is no confusion about when to reach for this tool.
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 an explicit recommended flow: 'action=search discovers MCPs by intent → describe returns one MCP's full profile... → invoke RUNS that tool.' Also gives a clear decision rule between the two overlapping actions — 'prefer invoke for a single/occasional use' vs 'Use install only to make an MCP PERMANENT' — and points to list_tools for what is callable right now.
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 indicate readOnlyHint=false, destructiveHint=false, and idempotentHint=true, covering basic safety. The description adds no behavioral details beyond usage (e.g., what happens after submission, authentication needs, or side effects). It does not contradict annotations, but it also does not enrich the agent's understanding of the tool's runtime behavior. With annotations present, the bar is lower, yet the description is still thin.
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 consists of two clear sentences with no superfluous content. The first sentence states the action, the second gives a critical input instruction. It is front-loaded and highly efficient for an AI agent.
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 is relatively simple, and the description covers the basic purpose and the most important parameter (conversation). However, it omits any explanation of the 'context' field, and the schema/description mismatch on conversation could mislead an agent. With no output schema, the description could clarify expectations after submission (e.g., confirmation or ticket ID), but it does not. Overall adequate but with notable 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?
Schema coverage is 0%, so the description must clarify parameters. It explicitly mentions the conversation parameter and instructs to include recent messages, which adds meaning. However, it defines conversation as an 'array' while the schema declares it as a string with default '[]', creating confusion. The 'message' parameter is implied as the report content, and 'context' is completely unexplained. Thus, partial compensation is provided, but significant gaps remain.
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 a specific verb (report/send) and resource (bug/feature/feedback), and it is distinct from sibling tools like authenticate or connect. No ambiguity.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description conveys when to use the tool ('report a bug, missing feature, or send feedback') and gives explicit guidance to include the conversation array for reproduction. It does not mention alternatives or exclusions, but the context is clear enough for typical use. A higher score would require explicit when-not-to-use or alternative tool references.
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?
The annotations already declare readOnlyHint, idempotentHint, and destructiveHint, covering safety behavior. The description adds no additional behavioral context beyond stating what versions are shown, which is consistent with the annotations. No contradictions or missing side-effect disclosures.
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, focused sentence with no filler or redundancy. It is front-loaded with the action and resource, making it immediately understandable.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's extreme simplicity (no parameters, no output schema, clear annotations), the description is fully complete. It covers the entire purpose without needing additional details.
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 coverage is trivially 100%. Per the rubric, baseline for 0 params is 4. The description does not need to add parameter details, and it does not attempt to.
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 the specific verb 'show' and names the precise resources ('current MCP platform and adapter versions'), making it clear what the tool does. It distinguishes itself from sibling tools like authenticate or marketplace, which are clearly unrelated operations.
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 when you need version information, but it does not explicitly state when to use this tool versus alternatives or include any exclusions. Since the tool is simple and self-explanatory, the implied context is adequate but not fully spelled out.
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, so the description need not restate safety. It adds value by specifying exactly what state is returned, including connection status and account details, but it does not disclose potential variability, latency, or whether the state snapshot is consistent across all MCPs.
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, well-structured sentence that front-loads the purpose and then lists the specific data returned. Every phrase carries informational weight, with no filler or 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?
With no parameters and no output schema, the description carries the full burden of explaining the tool's return value. It does so comprehensively by naming all major categories of returned state: installed MCPs, connection status, accounts, and catalog tool counts, making the tool's output expectations clear.
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 are no parameter semantics to explain. Per the rubric, this warrants a baseline of 4, and no description-based clarification is 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 identifies the tool as a status/inspection resource with a specific verb ('Returns') and enumerates its contents: installed MCPs, connection status, connected accounts, and catalog tool counts. This distinguishes it from sibling tools like connect or authenticate, which perform actions rather than report state.
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 a clear use case: checking the current toolkit state, especially before or after connecting/authenticating MCPs. It doesn't explicitly name alternatives or exclusions, but for a zero-parameter read-only info tool, the context is sufficiently clear and non-misleading.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
tribunal_trt24_processo_consultarARead-onlyIdempotentInspect
Tribunal TRT24: Consulta Processual, 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 |
|---|---|---|---|
| grau | No | ||
| numero_processo | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already provide read-only and idempotent hints. The description adds valuable behavioral context beyond annotations: hosted by the platform, no platform credentials required, pay-per-query with pre-paid credits, official/non-confidential data source, and LGPD data-controller responsibilities. 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 reasonably concise and front-loaded with the primary purpose. The additional sentences about payment, official sourcing, and LGPD add useful context, though some legal boilerplate could be trimmed without losing core invocation guidance.
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 no output schema and the description does not explain return values or parameter semantics. While it covers data source, payment, and legal context, it fails to describe the 'grau' parameter or expected 'numero_processo' format, leaving a significant gap for correct invocation.
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 offers no explanation of the parameters 'grau' or 'numero_processo'. It does not compensate for the schema's lack of descriptions, leaving the agent without guidance on required formats or possible values.
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 performs procedural consultation for TRT24 from official sources, with a specific verb ('Consulta') and resource ('Processo'). It also differentiates itself from the sibling platform tools, which are generic utilities 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?
The description gives clear context about when to use the tool: for consulting official Brazilian public court data, with pre-paid credits and no platform credentials needed. It does not explicitly name alternatives or exclusion conditions, but sibling tools are unrelated, making the intended use fairly unambiguous.
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-qualityCmaintenanceEnables simplified consultation of Brazilian judicial cases for individuals or companies using CPF or CNPJ, read-only, hosted, and paid 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
- Alicense-qualityCmaintenanceEnables complete judicial process lookup for individuals or companies via CPF/CNPJ, returning detailed case information. Works with any MCP client over HTTP.MIT