Tribunal TRT17: Consulta Processual
Server Details
Tribunal TRT17: Lookup Processual, official-source lookup. Platform-hosted, pay per query with prepa
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- mcp-dir/tribunal_trt17_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.1/5 across 7 of 7 tools scored. Lowest: 3.2/5.
The tool set mixes platform-level utilities (authenticate, connect, marketplace, report_bug, show_version, toolkit_info) with a single domain-specific tool (tribunal_trt17_processo_consultar). The platform tools have overlapping purposes: authenticate and connect both deal with connection/auth status, and marketplace's search/describe/invoke/list_tools/subscribe/cancel overlap with toolkit_info's reporting of installed MCPs. An agent could easily confuse which tool to call for connection vs. catalog vs. toolkit state.
Naming is highly inconsistent: platform tools use generic verbs (authenticate, connect, marketplace, report_bug, show_version, toolkit_info) with no consistent pattern, while the domain tool uses a long snake_case prefix (tribunal_trt17_processo_consultar). The mix of single-word verbs, noun phrases, and a domain-specific prefixed name makes the naming chaotic.
Seven tools is a reasonable count, but the scope is muddled: six tools are platform/utility functions and only one is the actual domain tool (TRT17 consultation). The count feels inflated for the stated purpose of 'Consulta Processual' because most tools are unrelated to that purpose, yet the count itself is not extreme.
For the stated domain (TRT17 process consultation), the surface is severely incomplete: only one tool performs the actual consultation, with no supporting operations like listing processes, getting details, or handling multiple queries. The other tools are platform utilities that don't contribute to the domain, so an agent trying to accomplish process consultation has almost no coverage.
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?
Beyond the annotations, the description explains that a no-arg call returns a login link, that pasting a token gives a session-only login, and that config-header tokens provide a permanent non-expiring connection. This is useful behavioral context beyond the schema and annotations, though it does not describe the exact response payload or error cases.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is information-dense and every sentence contributes to understanding how to use the tool. It is slightly unstructured, opening with 'MCP.AI for IDE agents (Cursor, etc.)' rather than a clean purpose statement, but it remains reasonably concise for the range of behaviors it describes.
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 low complexity, one optional parameter, and no output schema, the description is largely sufficient. It covers the main flows: getting a link, passing a token for session login, and the recommended permanent header configuration. It could be more explicit about what happens after a successful token call, but overall it provides enough context for an agent to invoke it 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?
The schema only defines an optional 'token' string with 0% description coverage, so the description carries the full burden. It clarifies that the token is a JWT, how it should be passed, and that omitting it triggers the login-link flow. This adds meaningful semantics to the single 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 conveys that this tool handles authentication for the MCP server: the agent should direct the user to log in via browser and copy an access token, then call this tool with that token. It distinguishes from siblings by focusing specifically on the auth flow, though it never explicitly says 'authenticate this server'.
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 concrete usage modes: no args to obtain a login link, or pass { token: '<jwt>' } after the user pastes the token. It also recommends the preferred permanent setup via config header versus the session-only paste route. It does not explicitly discuss when not to use this tool, but it provides clear actionable guidance.
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 provide readOnlyHint: true and destructiveHint: false, so the safety profile is known. The description adds meaningful context by explaining the conditional output (authenticated:true with empty pending[] vs. connect_url when credentials are missing). It does not contradict annotations and goes beyond them by detailing the response variations, which helps the agent anticipate results.
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 ('Returns connection status and URLs'), followed by conditional details. Every sentence adds value with no redundancy or fluff. It is 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?
Given the simplicity (no parameters, no output schema), the description covers the main behaviors: it explains the output when all providers are connected and when credentials are missing. However, it does not address partial connection states or define what 'pending' contains, leaving some ambiguity. For a simple tool, this is adequate but could be more thorough.
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% and the description needs no parameter explanation. Per the rubric, a tool with 0 parameters gets a baseline of 4. The description adds no param-specific info, but none is required. It focuses on output behavior, which is appropriate.
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: 'Returns connection status and URLs.' It specifies the verb ('Returns') and the resource (connection status and URLs), and provides conditional outcomes based on connection state. This distinguishes it from sibling tools like 'authenticate' (which performs authentication) and 'show_version' (which shows version info).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies when to use this tool: when needing connection status and URLs. It describes two scenarios (all providers connected vs. credentials missing) and the associated returns, which gives context for expected behavior. However, it does not explicitly state alternative tools or when NOT to use it, though sibling names like 'authenticate' suggest a complementary role.
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 goes far beyond the minimal annotations (readOnlyHint=false, openWorldHint=true) by disclosing important behaviors: invoke works even when MCP is not installed, runs one-off without bloating the toolkit, returns connect/checkout links for auth/payment, and retries after user action. It also notes permission requirements for writes. No contradictions 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 a dense but well-organized paragraph that front-loads the core purpose and flow, then systematically covers actions, edge cases (auth/payment), and the prompt library. It is lengthy, but given the tool's complexity (14 actions, 23 params), every sentence contributes value. A bulleted breakdown could improve scannability, but it's appropriately detailed.
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 of this complexity with no output schema and 23 optional parameters, the description is remarkably complete. It covers all major actions, explains invocation behavior (including auth and payment flows), differentiates install vs invoke, notes permission requirements, and details the prompt library. It leaves few ambiguities about how 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?
With 0% schema description coverage, the description adds crucial meaning to the parameters, especially action, query, mcp_id, tool_id, arguments, and prompt-related fields, by explaining them through the workflow (e.g., action=search, describe returns profile, invoke runs tool). However, not all 23 parameters are explicitly explained (e.g., immediate, conversation, prompt_targets), leaving some gaps for less common fields.
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, a platform for discovering, describing, and invoking MCP tools, plus a prompt library. It specifies the core flow (search → describe → invoke) and distinguishes itself from siblings, which are specific standalone tools (e.g., authenticate, 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 provides explicit when-to-use guidance for each action: use search to find MCPs, describe for profiles, invoke for one-off runs, install for permanent toolkit additions, and it even says 'prefer invoke for single/occasional use' vs 'use install only to make an MCP PERMANENT'. It also covers the prompt library actions and mentions that writes require owner/admin.
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 declare readOnlyHint=false, destructiveHint=false, and idempotentHint=true, so the description does not need to repeat these. The description adds the reproduction context for the 'conversation' parameter, which is a minor behavioral insight. However, it doesn't mention response behavior, rate limits, or any side effects beyond what annotations convey.
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 crisp sentences. The first front-loads the purpose, the second provides actionable guidance. No fluff, every word earns its place.
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 bug-report tool with no output schema and safe annotations, the description is mostly adequate. It covers what to do and hints at reproduction steps. However, it could benefit from a note on whether the tool returns any feedback or if invocations are fire-and-forget, especially since idempotentHint=true implies repeated calls are acceptable.
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 is expected to clarify parameters. It does explain that 'conversation' should contain recent messages for reproduction, adding value. However, it refers to it as an 'array' while the schema defines it as a string with a JSON-array default, which could confuse. The required 'message' field and optional 'context' are not elaborated, leaving some 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 purpose with a specific verb and resource: 'Report a bug, missing feature, or send feedback.' This unambiguously differentiates it from sibling tools like 'show_version' or 'authenticate', which serve entirely different functions. The scope is immediately evident.
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 a clear context for use by listing three valid scenarios (bug, missing feature, feedback) and gives a concrete usage guideline: 'Include the conversation array with recent messages for reproduction.' While it doesn't explicitly name alternative tools, the context is clear and the tip instructs on how to use it effectively.
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 and idempotentHint, and the description adds specificity by stating it returns current platform and adapter versions. No contradictions exist, and for a read-only getter, no further disclosure is necessary.
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, tight sentence that front-loads the action ('Show') and clearly specifies the object. No fluff, perfectly sized for the tool's trivial nature.
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 tool with no output schema, the description fully covers its purpose and behavior. No gaps exist that could mislead an agent.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With zero parameters, the schema provides no semantic load, and the description adds the context of what is returned. The baseline of 4 for 0-param tools applies here, as there is nothing more 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 uses a specific verb ('Show') and resource ('MCP platform and adapter versions'), making its purpose immediately clear. It distinguishes itself from siblings like authenticate, connect, and marketplace, which address entirely different functions. No ambiguity about what this tool does.
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 whenever version information is needed, which is contextually clear given the tool's simplicity. However, it does not explicitly state when not to use it or name alternatives, but the sibling set contains no competing version tool, so the context is sufficient for a 4.
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 comprehensively cover the safety profile (readOnlyHint: true, idempotentHint: true, destructiveHint: false), and the description adds value by detailing what the returned state contains. No contradiction — the description's read-verb matches the read-only annotation. It doesn't disclose additional behaviors like auth requirements or rate limits, but for a stateless inspection tool the bar is mostly met by the annotation coverage.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence, front-loaded with the verb and resource, and uses a colon-led enumeration to pack the full return description into one compact line. Every word earns its place; zero filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With no output schema present, the description compensates by enumerating the return content (installed MCPs, connection statuses, accounts, catalog counts). Annotations cover the safety profile. It could mention when to invoke (e.g., pre-connection check), but for a no-parameter state-inspection tool the coverage is 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?
The tool has zero parameters secret: special, schema coverage is trivially 100% (empty properties). Per rubric, 0 params = baseline 4. There is no parameter meaning for the description to add beyond what the schema already implies.
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 a specific verb ('Returns') with a clear resource ('toolkit state') and enumerates exactly what it returns: installed MCPs, connection status, accounts, and catalog tool counts. This clearly distinguishes it from sibling tools like authenticate and connect, which are about establishing connections rather than inspecting 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 makes the purpose evident (inspecting current toolkit state) but offers no explicit when-to-use or when-not-to-use guidance. The context is reasonably clear — an agent would call this to check what's installed/connected — but it doesn't name alternatives or exclusions, relying on the reader to infer the division of labor among siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
tribunal_trt17_processo_consultarBRead-onlyIdempotentInspect
Tribunal TRT17: 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 declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the description's 'consulta' is consistent. The description adds valuable context beyond annotations: it specifies payment requirements, clarifies that the data is official and non-confidential, and notes the client's LGPD responsibility. These details enrich the behavioral profile beyond what annotations provide.
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 paragraph with several clauses covering purpose, hosting, payment, and legal disclaimers. It is front-loaded with the primary intent, but the legal and payment details add length. While not overly verbose, it could be more concise by separating essential usage info from disclaimers. Still, it's reasonably 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?
There is no output schema, yet the description does not explain what the response will contain, such as case details, status, or parties. It also lacks information on error handling, limitations, or expected result format. Given the tool's purpose and lack of an output schema, this is a significant gap that prevents full understanding of the tool's behavior.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 0% description coverage for its two parameters, and the description does not compensate by explaining 'numero_processo' (process number) or 'grau' (degree). The description only mentions 'Consulta Processual' but gives no hints about parameter formats, required vs optional usage, or examples. This leaves the agent to infer from the tool name, which is insufficient.
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 this is a procedural consultation for TRT17 in an official source. The tool name and first sentence ('Tribunal TRT17: Consulta Processual, consulta em fonte oficial') distinguish it from the generic sibling tools (authenticate, connect, etc.). It could be more specific about what the consultation returns, but the core purpose is 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 mentions practical details like payment (pague por consulta com crédito pré-pago) and that no platform credentials are needed, which implies conditions for use. However, it does not explicitly state when to use this tool versus alternatives, nor does it mention when not to use it. Since there are no sibling tools for tribunal queries, the usage context is implied but not clearly articulated.
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