Tribunal TRT5: Consulta Processual
Server Details
Tribunal TRT5: Lookup Processual, official-source lookup. Platform-hosted, pay per query with prepai
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- mcp-dir/tribunal_trt5_processo-mcp
- GitHub Stars
- 0
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 |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond the annotations (idempotent, non-destructive, not read-only), the description discloses key behaviors: calling with no args returns a link, passing a token establishes a session-only login, and configuring the header gives a permanent non-expiring connection. It explains the difference between session and permanent authentication, adding useful context on how the tool behaves.
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 slightly verbose but well-structured, with each sentence contributing necessary information. It front-loads the context (MCP.AI for IDE agents) and then guides through configuration options. It could be tightened but is efficient and not redundant.
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 all usage modes: permanent configuration via header, session login via token, and retrieval of the login link. It is complete enough for an agent to invoke correctly in various scenarios.
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 token as a string with no description. The description fully compensates by explaining that token is a JWT obtained from the browser, it is optional (can call with no args to get a link), and it is used for session-only login. This adds rich meaning beyond the raw schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: authenticating MCP.AI for IDE agents by logging in via browser and retrieving an access token. The verb "authenticate" is specific to the login action and is distinguished from siblings like "connect" by focusing on token-based authentication. The resource (MCP.AI access token) is explicitly mentioned.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear usage scenarios: for a permanent connection, add the token as an Authorization header in config; for a session-only login, call with the token; for getting the login link, call with no args. It implicitly contrasts the permanent vs. session approaches but does not explicitly reference sibling tools like "connect" as alternatives. This is clear context without explicit exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
connectARead-onlyIdempotentInspect
Returns connection status and URLs. When all providers are connected, returns authenticated:true and empty pending[]. When credentials are missing, returns connect_url for the toolkit and per-install URLs.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, covering the safety profile. The description adds valuable context beyond that by detailing the conditional return states (authenticated:true with empty pending[] vs connect_url and per-install URLs when credentials are missing). No contradiction with annotations; the description complements them with scenario-specific output 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 two tight sentences, front-loaded with the core purpose ('Returns connection status and URLs') followed by the two conditional states. Every sentence adds distinct value with zero filler words or redundant phrasing.
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 parameterless status tool, the description covers the main behavioral branches well. It could go slightly further by specifying the full response shape (e.g., what fields constitute the connection status, the structure of pending[]), but it places the key details about what happens in each state. Given no output schema exists, the description carries the return-format burden adequately.
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 schema description coverage is trivially 100% (empty properties object). With no params to document, the baseline is 4. The description instead focuses on output behavior, which is appropriate given the parameterless interface.
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 verb+resource ('Returns connection status and URLs') and distinguishes the tool's behavior across two states (all providers connected vs missing credentials). It differentiates well from siblings like authenticate and toolkit_info, making the tool's role as a status/health reporter 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 implies this is a read-only status check to run when you need connection state or URLs, but it never explicitly states when to use this versus authenticate or other siblings. The two-state behavior (connected vs missing credentials) gives contextual hints about what to expect, but no direct guidance on alternatives or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
marketplaceAInspect
The official mcp.ai marketplace — the in-platform catalog of every MCP/tool, AND the way to run them. Covers capability requests like "find an MCP that does X", "consulta um CPF", "is there a tool for Y". Core flow: action=search discovers MCPs by intent → describe returns one MCP's full profile (every tool with its id + params, pricing, auth) so you pick the right tool_id → invoke RUNS that tool. KEY: invoke works even when the MCP is NOT installed — it runs the tool pontualmente (one-off), without adding the MCP to the toolkit and without bloating the tool list. If the MCP needs a credential/login, invoke returns a connect link; if it is paid and the wallet is empty, invoke returns a checkout/top-up link (the user opens it, then you retry). Use install only to make an MCP PERMANENT in the active toolkit (its tools then show up natively in future sessions); prefer invoke for a single/occasional use. list_tools lists what is callable right now. subscribe/cancel handle per-MCP billing; report_bug sends feedback; request_mcp asks us to build a NEW MCP when nothing fits. Search/describe flag installed_in_toolkit vs installed_in_workspace. Writes (install/uninstall/subscribe/cancel and the one-off install behind invoke) require workspace owner/admin. It also carries the mcp.ai PROMPT LIBRARY, which is about ready-made prompt TEXT rather than MCPs: search_prompts finds one, get_prompt returns its full text with {{variables}} filled, and publish_prompt saves a prompt and returns a shareable mcp.ai/p/ link that opens without login.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| query | No | ||
| action | No | search | |
| mcp_id | No | ||
| message | No | ||
| tool_id | No | ||
| arguments | No | {} | |
| immediate | No | ||
| tier_slug | No | ||
| prompt_body | No | ||
| prompt_slug | No | ||
| prompt_tool | No | ||
| prompt_vars | No | {} | |
| conversation | No | [] | |
| prompt_title | No | ||
| request_name | No | ||
| cancel_reason | No | ||
| cancel_comment | No | ||
| prompt_targets | No | ||
| report_context | No | ||
| prompt_category | No | ||
| request_details | No | ||
| prompt_description | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description discloses many important behavioral details beyond the annotations: invoke runs a tool even when the MCP is NOT installed (one-off, without bloating the tool list), invoke returns a connect link when credentials are needed, invoke returns a checkout/top-up link if paid wallet is empty, the one-off install behind invoke requires owner/admin, search/describe flag installed_in_toolkit vs installed_in_workspace, and the separate prompt library (search_prompts/get_prompt/publish_prompt with shareable login-free links). It does not heavily disclose destructive/write risks, but the annotations (openWorldHint=true, destructiveHint=false) already cover some of the trust profile. Minor gap: it could explicitly state the mutating effects of install/uninstall on the toolkit beyond 'permanent', but the existing detail is strong. Note: readOnlyHint is false, so the description's mention of install/uninstall/subscribe as writes is consistent with 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 text is dense and substantial (almost half a page), but most sentences carry unique information about the tool's actions and flows. It is loosely structured in a single paragraph; breaking it into sections (Core flow / invoke behavior / install behavior / billing & admin / prompt library) would improve scanability. The information density is high and not bloated, but the lack of structure reduces readability for an agent doing quick decision-making.
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 25 parameters, no output schema, and many sub-actions (search/describe/install/invoke/subscribe/prompt-library), the description provides an unusually thorough map: the search→describe→invoke flow, the not-installed behavior, the auth/payment edge cases, the admin-required write actions, and the distinction between the MCP catalog and the prompt library. This nearly compensates for the lack of output schema and the 0% parameter schema coverage. It leaves some minor gaps (e.g., exact output/bucket_details per action, list_tools outcome), but for such a complex tool, it is very strong.
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% in the schema, but the description compensates with rich context about the core parameters: action (enum), mcp_id, tool_id, arguments (JSON string), and the prompt parameters (prompt_slug, prompt_body, prompt_vars, etc.). It explains what each major action expects (search uses query, invoke uses tool_id+arguments), and describes the response-driven flows (connect link, checkout link) that inform how arguments should be constructed. It does not explain every one of the 23 parameters (e.g., cancel_reason/cancel_comment, report_context, request_details are not individually described), but the overall coverage is much higher than 0%. Given 23 parameters and 0% schema coverage, the description is doing a substantial job.
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 provides a rich, specific explanation of what the marketplace tool does: it's the in-platform catalog of MCPs/tools and the way to run them. It clearly lists the core flow (search → describe → invoke) and enumerates each action verb with its distinct purpose (install, subscribe, list_tools, etc.), which distinguishes it well from sibling tools. It even mentions capability requests like "find an MCP that does X" and "consulta um CPF", giving a concrete sense of scope.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives explicit guidance on when to use each action: use invoke for single/occasional use (even when the MCP is not installed), use install only to make an MCP permanent, use list_tools for what's callable now, subscribe/cancel for per-MCP billing, report_bug for feedback, request_mcp for new MCPs. It also states the core flow (action=search discovers → describe returns full profile → invoke RUNS) and notes that writes require workspace owner/admin. This is far more than a typical description.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
report_bugCIdempotentInspect
Report a bug, missing feature, or send feedback. Include the conversation array with recent messages for reproduction.
| Name | Required | Description | Default |
|---|---|---|---|
| context | No | ||
| message | Yes | ||
| conversation | No | [] |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description adds little beyond the annotations. It mentions including the conversation array for reproduction, which gives some context about expected input, but it does not disclose side effects, confirmation, or post-submission behavior. It does not contradict 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 extremely concise, consisting of two short sentences. It directly states the purpose and gives a key instruction without any redundant or verbose content. The structure is clean and efficient.
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 and the annotations, the description is incomplete. It does not explain the expected format of the 'conversation' field, what 'context' should contain, or any constraints on the input. It also omits any information about the return value or confirmation of submission.
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 defines parameters (context, message, conversation) but the description provides no explanation for any of them. It mentions 'conversation array' but the schema declares conversation as a string, which could cause confusion. No parameter is clarified, leaving the user to guess their meaning and format.
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: reporting a bug, missing feature, or sending feedback. It is a specific verb-resource combination and implicitly distinguishes from sibling tools like authenticate or connect, though it does not explicitly contrast them.
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 does not specify scenarios such as encountering an error or needing to submit feedback, nor does it mention any exclusions or preferred contexts.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
show_versionARead-onlyIdempotentInspect
Show the current MCP platform and adapter versions.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already provide readOnlyHint, idempotentHint, and destructiveHint, which cover safety. The description adds no extra behavioral context like output format or dependencies, but it does not contradict the annotations either.
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, front-loaded sentence with no unnecessary words, perfectly matching the tool's simplicity.
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 parameter-less tool with rich annotations and no output schema, the description adequately conveys the purpose. It could specify what format the version info returns, but that is not critical for a version check.
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 parameters, schema coverage is trivially 100%, and the baseline is 4. The description does not add parameter-specific details, but none are needed.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool shows MCP platform and adapter versions, using a specific verb ('Show') and resource. It is distinct from siblings like 'toolkit_info' which likely provides broader information.
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 given on when to use this tool versus alternatives. There is no mention of 'use this when you need version info' or contrast with similar tools like 'toolkit_info'.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
toolkit_infoARead-onlyIdempotentInspect
Returns the current toolkit state: installed MCPs, their connection status, the accounts connected to each one, and how many catalog tools each exposes.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, and destructiveHint=false, establishing a safe read operation. The description enriches this by detailing exactly what state information is returned (MCPs, status, accounts, tool counts), which goes beyond the annotations and gives the agent a clear picture of the return content.
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, well-structured sentence that is front-loaded with the verb 'Returns' and packs all relevant details efficiently. No wasted words; every element contributes to understanding the tool's purpose.
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 provides sufficient detail for an agent to understand its exact purpose and expected return. The scope of the tool is fully covered without any noticeable 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 tool has zero parameters, so the baseline is 4. The description fully compensates by explaining what information the tool provides, leaving no ambiguity about the tool's function despite 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?
The description uses the specific verb 'Returns' and clearly names the resource ('current toolkit state'), enumerating the exact information provided (installed MCPs, connection status, accounts, catalog tool counts). This unambiguously differentiates it from sibling tools like connect, authenticate, or show_version.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description clearly implies that this tool is for querying toolkit state, which is distinct from the action-oriented siblings (connect, authenticate). However, it does not explicitly state when to use this tool over others or mention exclusions, though the context signals make the intended use evident.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
tribunal_trt5_processo_consultarBRead-onlyIdempotentInspect
Tribunal TRT5: 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 |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, destructiveHint=false, and idempotentHint=true. The description adds meaningful context beyond these: no platform credentials required, pay-per-query prepaid billing model, data is non-confidential public data, and LGPD controller responsibilities. The payment model in particular is valuable operational info that would affect whether an agent warns the user about cost. No contradiction between description and 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 core function is front-loaded ('Consulta em fonte oficial'), which is good, but the rest is a dense run-on mixing legal, commercial, and platform details into a single paragraph of clauses. Every sentence carries some information, but the structure forces the reader to untangle functional purpose from compliance disclaimers. Could be broken up or pruned.
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 and no description of return values, the agent has no idea what data the query returns (case status, parties, movement history, etc.) or what 'grau' filters. The description heavily over-indexes on legal compliance while under-specifying the functional contract. For a tool with a single required parameter and no documented response, more functional detail is expected despite needing to cover its legal bases.
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 adds no clarification for either parameter. While 'numero_processo' is reasonably self-explanatory, 'grau' (court instance/degree) is a domain-specific Brazilian legal term whose allowed values and format are never clarified. With zero schema coverage and no compensation in the description, the agent is left to guess at the semantics of an ambiguous optional parameter.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly identifies the tool's purpose: 'Consulta Processual' (case lookup) against 'Tribunal TRT5' (the 5th Region Labor Court), specifying a concrete verb+resource. However, the purpose is somewhat diluted within compliance/commercial boilerplate about LGPD and prepaid credit, and there's no explicit sibling differentiation (though siblings are all system tools, making confusion unlikely).
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 scopes usage: it queries non-confidential, citizen-accessible data from official Brazilian sources, for which the client is the LGPD data controller with legitimate purpose. This implies appropriate use cases (lawful public record lookups) but never explicitly states when to use this tool over an alternative or specifies exclusions. The guidance is present but implied rather than direct.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
No tool schema history has been recorded yet.
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity — fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user, then choose Claim with GitHub. An organization namespace such asio.github.acme/serveralso needs that organization to have installed the Glama AI GitHub App and approved its permissions, because GitHub discloses organization membership only to apps it has installed. Use HTTP or DNS when it has not.HTTP challenge — works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge — works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Connectors
Tribunal TRT7: Lookup Processual, official-source lookup. Platform-hosted, pay per query with prepai
Tribunal TRT6: Lookup Processual, official-source lookup. Platform-hosted, pay per query with prepai
Tribunal TRT8: Lookup Processual, official-source lookup. Platform-hosted, pay per query with prepai
Tribunal TRT2: Lookup Processual, official-source lookup. Platform-hosted, pay per query with prepai
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceProvides read-only consultation of Brazilian TSE electronic judicial processes (PJe) from official sources, with prepaid per-query access and no platform credentials required.MIT
- AlicenseNot gradedqualityCmaintenanceRead-only MCP server to query legal process information from the Brazilian Federal Regional Court of the 2nd Region (TRF2) from official sources. Pay-per-use with prepaid credits.MIT
- AlicenseNot gradedqualityCmaintenanceEnables 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
- AlicenseNot gradedqualityCmaintenanceMCP server for consulting legal process information from the Tribunal Regional do Trabalho da 6ª Região (TRT6). It provides read-only access to case details via a hosted HTTP API with prepaid credits.MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
The tribunal lookup tool is clearly distinct, and most platform tools have individual roles. However, marketplace is a broad multifunction tool that includes its own report_bug, connect, list_tools, and invoke behaviors, and connect/toolkit_info both report connection status, so an agent may need to read carefully to avoid picking the wrong entry point.
Names like report_bug, show_version, and toolkit_info are clear snake_case, but the set mixes bare verbs (authenticate, connect), bare nouns (marketplace), and a long Portuguese domain name (tribunal_trt5_processo_consultar) that reverses the usual verb_noun order. The style is readable but not consistently patterned.
Seven tools is a reasonable count overall, but only one tool actually addresses the named Tribunal TRT5 purpose. The other six are generic platform and toolkit-management tools, so the toolset feels padded for a server that presents itself as a Brazilian court-case consultation service.
The single tribunal tool likely supports a basic case consultation, but the domain surface is thin: there is no clear support for different consultation modes, expanded case detail endpoints, or follow-up actions such as downloading or saving process information. Minor context writing around the main query could be enough for read-only use, but the missing tool shapes are notable.