Tribunal TRT10: Certidão Eletrônica de Ações Trabalhistas (CEAT)
Server Details
Tribunal TRT10: Certificate Eletrônica de Ações Trabalhistas (CEAT), official-source lookup. Platfor
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- mcp-dir/tribunal_trt10_ceat-mcp
- GitHub Stars
- 0
- Server Listing
- Tribunal TRT10 CEAT MCP Server
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.
Each tool has a clearly distinct purpose: authentication, connection status, marketplace operations, bug reporting, version display, toolkit info, and the CEAT query. There is no overlap or ambiguity between them.
Tool names follow no consistent pattern: some are single verbs (connect, authenticate), some are snake_case nouns (report_bug, toolkit_info), and one is a long prefixed snake_case (tribunal_trt10_ceat_consultar). This mixing makes naming unpredictable.
Seven tools is a reasonable count, but the set is misaligned with the server's declared purpose (CEAT tribunal query). Six tools are generic platform management utilities, leaving only one domain-specific tool; the scope feels unfocused and the tribunal-specific functionality is under-served.
The single CEAT tool covers only a basic query with no supporting operations (e.g., history, formatting options, or error handling helpers). The platform tools are unrelated to the domain, creating a significant gap in the tribunal-specific surface and making the server feel incomplete for its claimed purpose.
Available Tools
7 toolsauthenticateAIdempotentInspect
MCP.AI for IDE agents (Cursor, etc.): log in in the browser, copy the access token. Best: add it to this server's config as a header Authorization: Bearer <token> for a permanent, non-expiring connection. Or paste it here for a session-only login: call with { token: "" } after the user pastes, or with no args to get the link.
| Name | Required | Description | Default |
|---|---|---|---|
| token | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already provide readOnlyHint=false and destructiveHint=false, but the description adds important behavioral context: that it involves browser login and token generation, that the token can be permanently configured, and that calling without args returns a link. It also implicitly communicates that this is an interactive flow requiring user action. This goes beyond the annotations, though it could disclose side effects like potential session persistence or security implications more deeply.
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, two sentences long, and front-loaded with the tool's purpose. Each sentence adds value: first explains the core mechanism, second gives two usage paths. Slight room for improvement: some redundancy between 'log in in the browser' and 'call with no args to get the link' could be trimmed, but it's appropriately sized and not overly verbose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has one optional parameter and no output schema, the description covers the essential flow: how to use it, both invocation modes, and the recommended permanent setup. It doesn't explain the return value (likely a link) explicitly, but that's inferable from 'get the link'. It also lacks details on error handling or token validation, but for a simple auth tool, it is adequately 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 schema only defines a 'token' parameter with no description coverage (0%), so the description must compensate. It does: it explains the 'token' parameter is a JWT that the user pastes for session-only login, and that omitting it triggers a link generation. This adds semantic meaning beyond the bare schema, though it could specify format or constraints more explicitly.
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: to authenticate with MCP.AI by logging in via browser and capturing an access token. It distinguishes itself from siblings by focusing on authentication, while siblings like 'connect' or 'marketplace' imply different actions. The verb 'authenticate' with explicit resource (MCP.AI) and method (browser login) 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?
The description explicitly provides when to use this tool and how: it gives two usage modes (session-only with a token argument, or permanent with config header), and even instructs to call with no args to get the link. It also suggests the best practice (config header) and distinguishes between session and permanent options, covering alternatives within the tool's scope. It doesn't pit it against siblings but clearly defines usage scenarios.
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, idempotentHint=true, and destructiveHint=false, covering safety. The description adds value by detailing state-dependent responses (authenticated:true vs. connect_url), which is behavior beyond 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?
Two concise sentences with no filler. The description is front-loaded with the primary function and then clarifies conditional behavior.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a zero-parameter, read-only status tool with strong annotations and no output schema, the description sufficiently covers what the tool does and the possible return states. It could mention the specific format of URLs but it's adequate.
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?
Tool has zero parameters, so baseline is 4. The description provides all necessary semantic context since no parameters exist to explain.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool returns connection status and URLs, which is specific and distinguishes it from sibling tools like 'authenticate' that likely initiate the connection flow. However, it doesn't explicitly mention alternatives, so it lacks the perfect clarity of naming siblings.
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 explains when each output appears (all providers connected vs. missing credentials), which gives context for when this tool is useful. It doesn't explicitly state when to use it over 'authenticate', but the implied usage is clear enough for a status-check 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 description discloses critical behavioral traits beyond the annotations. It explains that invoke works even when the MCP is not installed ('runs it pontualmente (one-off)') and avoids bloating the tool list. It details that invoke returns a connect link if credentials are needed and a checkout/top-up link if the wallet is empty, instructing to retry after user action. It also states that writes require workspace owner/admin. These details align with the annotations (readOnlyHint=false, openWorldHint=true) and add significant 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 dense but efficient, packing the core flow, key exceptions, permission requirements, and the prompt library into a single paragraph. It is front-loaded with the primary purpose and flow, and every sentence adds value. However, the long run-on structure could be broken into clearer sections for readability, though it remains appropriately sized given the tool's complexity.
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 no parameter descriptions, the description is remarkably complete. It covers the entire decision tree: how to search, describe, invoke, install, handle credentials, handle payments, and manage billing. It also explains the prompt library side. The absence of return value details is acceptable since there is no output schema, and the description gives enough context for an agent to know what to expect from each action.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 23 parameters with zero descriptions, so the description carries the burden of explaining how to use them. It does so by describing the action enum values (search, describe, install, invoke, etc.) and their roles, and clarifies key parameters like mcp_id, tool_id, and arguments through the core flow. It also explains the special behaviors of invoke (connect/checkout links) that map to arguments and prompt_vars. While it doesn't detail every parameter (e.g., prompt_title), it compensates significantly for the schema gap by providing the conceptual framework needed to use the tool correctly.
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 'The official mcp.ai marketplace' and explains its dual role as a catalog of every MCP/tool and the mechanism to run them. It enumerates specific capabilities (search, describe, invoke, install, prompt library) and includes example intents like "find an MCP that does X" and "consulta um CPF". This distinguishes it from sibling tools like authenticate or toolkit_info, which have narrower 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 provides explicit usage guidance, including a core flow: 'action=search discovers MCPs by intent → describe returns one MCP's full profile ... → invoke RUNS that tool.' It also states when to use install vs invoke: 'Use install only to make an MCP PERMANENT in the active toolkit ... prefer invoke for a single/occasional use.' It explains subscribe/cancel, report_bug, request_mcp, and the prompt library actions, offering clear context for when each action is appropriate.
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 provide idempotentHint=true and destructiveHint=false, and the description does not contradict them. The instruction to include the conversation array adds useful reproduction context, but it does not disclose external side effects, what happens after submission, or any potential duplicate-report concerns.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two concise sentences: the first states the purpose, the second provides key usage guidance. No wasted words or repetition, and the most important information is 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 simple feedback-reporting tool with no output schema, the description covers the core purpose and one key input. However, it omits expected behavior after submission and leaves two parameters undefined, making it only minimally viable.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With 0% schema description coverage, the description must compensate for explaining parameters. It only clarifies the purpose of the conversation field. The required message parameter and the context parameter receive no explicit semantic explanation, leaving the agent to infer their roles.
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 starts with a clear verb and resource: report a bug, missing feature, or send feedback. This clearly differentiates it from the unrelated sibling tools (authenticate, show_version, toolkit_info, etc.).
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 explicitly identifies when to use the tool (bug, feature request, feedback) and instructs to include the conversation array for reproduction. It gives clear context without exclusions, which is acceptable given that no sibling is a feedback/reporting tool.
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, idempotentHint, and destructiveHint, so the safety profile is covered. The description adds the 'current' nuance and clarifies it reports both platform and adapter versions, but does not disclose return format or any other 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?
A single, front-loaded sentence delivers the complete purpose with no filler. Every word contributes meaning.
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 trivial zero-parameter tool with rich annotations, the description is sufficiently complete. It could mention the output format, but given the simplicity and the read-only/idempotent annotations, the current level is adequate.
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 and 100% schema coverage, so the baseline is 4. The description does not need to explain parameters; it appropriately focuses on what the tool returns.
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 action ('Show') and specific resource ('current MCP platform and adapter versions'). It distinguishes itself from sibling tools like authenticate or marketplace, which are unrelated to version reporting.
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?
No guidance is provided on when to use this tool versus alternatives or whether any prerequisites exist. For a simple version query this is understandable, but the description offers no explicit context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
toolkit_infoARead-onlyIdempotentInspect
Returns the current toolkit state: installed MCPs, their connection status, the accounts connected to each one, and how many catalog tools each exposes.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description adds meaningful context beyond the annotations by detailing precisely what the returned toolkit state includes. It aligns with the readOnlyHint and idempotentHint, confirming a side-effect-free read operation. It does not describe the return format or refresh behavior, but the annotations already cover the safety profile.
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, information-dense sentence that front-loads the verb and resource, then lists specific elements without any filler or redundancy. Every word contributes to the meaning, making it highly concise and well-structured.
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 no parameters and no output schema, the description is sufficiently complete, clearly listing what information is returned. It could mention whether the state is cached or real-time, but such details are not critical for a basic status-reporting tool. The description covers the essential context needed for an agent to use 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?
The tool has zero parameters, so the description has nothing to explain about parameter semantics. The schema is empty, and the baseline of 4 for 0-parameter tools is appropriate. The description does not need to compensate for any parameter documentation gaps.
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 with a specific verb ('Returns') and resource ('current toolkit state'), then enumerates the exact items returned (installed MCPs, connection status, accounts, catalog tool counts). This distinguishes it from sibling tools like show_version or connect, 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 usage for checking toolkit state but provides no explicit guidance on when to use this tool versus alternatives. It does not mention any conditions, prerequisites, or exclusions, leaving the usage context to be inferred.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
tribunal_trt10_ceat_consultarARead-onlyIdempotentInspect
Tribunal TRT10: Certidão Eletrônica de Ações Trabalhistas (CEAT), 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 | ||
| nome | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, and the description adds meaningful behavioral context: prepaid payment, official-source limitation, non-confidential status, and LGPD controller responsibility. It does not cover response format or failure modes, but the annotation coverage lowers the burden.
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 one dense, front-loaded sentence that packs purpose, payment model, data source, and legal context without filler. It earns a high score, though a slight redundancy exists between "fonte oficial" and "fontes e órgãos oficiais brasileiros," preventing a 5.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With no output schema, the description only implies the return is the CEAT certificate and does not explain what information the result contains. It is adequate for a simple read-only query but leaves gaps around parameter usage and expected response, so it is not fully 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?
Schema description coverage is 0%, so the description must compensate, but it does not explain the relationship between cpf, cnpj, and nome, nor that none are required. Parameter names are self-explanatory, but the agent is left without guidance on valid combinations, cardinality, or minimum identifier requirements for a CEAT lookup.
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 CEAT (Certidão Eletrônica de Ações Trabalhistas) query for TRT10, using the resource-specific verb "consulta em fonte oficial." It is unambiguous and stands apart from the sibling tools by explicitly stating "sem credenciais da plataforma," distinguishing it from authentication/platform 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 provides clear context: the tool is hosted by the platform, requires no platform credentials, charges prepaid credits per query, and is limited to non-confidential official data. It gives legal usage context (LGPD) but does not explicitly state when not to use it or name alternative tools, which would make it a 5.
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-qualityCmaintenanceConsulta de Certidão Eletrônica de Ações Trabalhistas (CEAT) em fonte oficial do Tribunal TRT21, com ferramenta de leitura que permite verificar dados diretamente.MIT
- Alicense-qualityCmaintenanceConsulta em fonte oficial da Certidão Eletrônica de Ações Trabalhistas do TRT12.MIT
- Alicense-qualityCmaintenanceEnables querying official labor action certificates (CEAT) from the TRT4 court in Brazil, with read-only access via a single tool.MIT
- Alicense-qualityCmaintenanceMCP server for querying electronic labor court certificates (CEAT) from TRT10, providing read-only access to official data via HTTP.MIT
Your Connectors
Sign in to create a connector for this server.