Skip to main content
Glama

Processos Judiciais (Completa)

Server Details

Full lookup of a person's or company's lawsuits from the CPF or CNPJ, with per-case detail. Platform

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
mcp-dir/processos_judiciais_completa-mcp
GitHub Stars
0
Server Listing
Processos Judiciais (Completa)

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

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.

100% free. Your data is private.
Tool DescriptionsA

Average 4.2/5 across 7 of 7 tools scored.

Server CoherenceC
Disambiguation3/5

Most tools have distinct purposes (authenticate, connect, report_bug, show_version), but 'marketplace' is a catch-all with many sub-actions and overlaps with 'connect' and 'toolkit_info' in terms of status/installed state. The legal consultation tool is unique, but the platform tools create some boundary confusion.

Naming Consistency2/5

Naming mixes English and Portuguese, single-word verbs (authenticate, connect), nouns (marketplace, toolkit_info), and verb_noun snake_case (report_bug, show_version, processos_judiciais_completa_consultar with the verb at the end). There is no consistent convention.

Tool Count3/5

Seven tools is a reasonable count, but the server is named 'Processos Judiciais' while most tools are generic platform management tools, making the scope feel mismatched. The count itself is not excessive, but the tool-to-purpose relationship is weak.

Completeness2/5

For a legal process domain, only one tool directly addresses the purpose; there are no other legal-specific operations beyond the single consultation. The remaining tools are unrelated to legal processes, so the completeness of the stated domain is severely lacking. If considered as a platform server, coverage is broader but still ad-hoc.

Available Tools

7 tools
authenticateA
Idempotent
Inspect

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
tokenNo
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description discloses key behaviors: calling with no args returns a link, calling with token validates a session, and the distinction between permanent and session-only. It goes beyond the annotations (idempotentHint=true) by explaining the two-flow nature and the external browser step. 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.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single paragraph but packed with necessary instructions. It front-loads the purpose, then structures the two usage methods with 'Best:' and 'Or'. Every sentence earns its place, though slightly long, it remains clear and well-organized.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the lack of output schema and minimal annotations, the description covers the essential flow: browser login, token retrieval, two usage modes, and how the agent should call the tool. It omits error handling or invalid-token scenarios, but for an authentication tool it is adequately complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema has one undocumented token parameter (0% coverage). The description compensates fully by explaining that token is the JWT pasted by the user, and how omitting it triggers the link-returning behavior. This adds critical meaning beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

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 to the MCP server via browser login and token. It uses specific verbs ('log in', 'copy', 'call') and explains the resource (the server's authentication). It distinguishes from siblings by being the only auth-related tool among the listed siblings.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides explicit usage modes: permanent via config header or session-only via token parameter. It explains when to call with no args (to get the link) and when to call with token (after user pastes). While it doesn't name alternative tools, it gives clear context for the agent to decide when to use this tool.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

connectA
Read-onlyIdempotent
Inspect

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.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description discloses behavior beyond annotations by explaining the response structure for different scenarios (all connected vs. missing credentials). It adds context about the returned URLs and authenticated flag, which annotations do not provide.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two concise sentences, front-loaded with the main purpose and then detailing conditional behavior. Every sentence adds value without redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple status tool with no parameters and no output schema, the description covers key outcomes (authenticated vs. missing credentials). However, it does not mention intermediate states (e.g., partial connectivity) or clarify what 'pending[]' contains, leaving minor gaps.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

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 does not need to explain parameter semantics, and it does not add any unnecessary parameter information.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

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, with specific details about response values. It distinguishes itself from siblings like 'authenticate' by focusing on status rather than performing authentication.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage for checking connection status, but does not explicitly mention when to use this tool over alternatives or provide exclusions. It is clear enough for a status-checking tool, but lacks explicit guidance.

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
queryNo
actionNosearch
mcp_idNo
messageNo
tool_idNo
argumentsNo{}
immediateNo
tier_slugNo
prompt_bodyNo
prompt_slugNo
prompt_toolNo
prompt_varsNo{}
conversationNo[]
prompt_titleNo
request_nameNo
cancel_reasonNo
cancel_commentNo
prompt_targetsNo
report_contextNo
prompt_categoryNo
request_detailsNo
prompt_descriptionNo
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description goes well beyond the annotations: it discloses that invoke runs tools one-off without installing, install makes permanent, writes require owner/admin, invoke returns connect/checkout links, and it explains billing, prompt-library behavior, and installed-in-toolkit vs workspace flags. No contradiction with the provided annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a dense single paragraph but logically organized around the core flow (search → describe → invoke) and then extended to install, billing, and prompts. Every sentence contributes value, though the length and lack of formatting (e.g., bullets) make it slightly harder to scan. Appropriate for the tool's complexity.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a multi-action tool with 23 parameters and no output schema, the description covers the main flows, permission requirements, and special return behaviors (connect/checkout links). Minor gaps remain for exact return formats of search/list_tools and some action-specific parameters, but the overall picture is well-rounded.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

With 0% schema description coverage, the description compensates substantially by explaining the meaning of key parameters through the action flow: query/intent for search, mcp_id for describe, tool_id/arguments for invoke, and prompt_slug/vars for prompt functions. However, several parameters such as immediate, tier_slug, limit, cancel_reason, and report_context remain unexplained, so coverage is not exhaustive.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

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, encompassing discovery, description, and execution of MCPs/tools, plus a prompt library. It uses specific verbs and an action-flow narrative, and distinguishes it from sibling tools by its unique marketplace role.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives explicit guidance: 'prefer invoke for a single/occasional use' vs 'Use install only to make an MCP PERMANENT', and outlines when to use search, describe, list_tools, subscribe/cancel, report_bug, request_mcp, and prompt functions. It also specifies auth requirements and alternatives, making usage conditions very clear.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

processos_judiciais_completa_consultarA
Read-onlyIdempotent
Inspect

Consulta completa dos processos judiciais de uma pessoa ou empresa a partir do CPF ou CNPJ, com detalhes por processo. Hospedado pela plataforma, sem credenciais, pague por consulta com crédito pré-pago. Consulta informação de ACESSO PÚBLICO em bases e fontes oficiais (a mesma disponível ao cidadão), não é dado privado nem sigiloso. O cliente é o controlador dos dados e responde pela finalidade legítima (LGPD).

ParametersJSON Schema
NameRequiredDescriptionDefault
CpfYes
CnpjYes
completoNo
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint. Beyond these, the description adds critical behavioral context: no credentials required, prepaid credit/payment model, data is public access (not private), and LGPD compliance responsibilities. This goes beyond the annotations by addressing authentication, financial implications, and data handling, which are valuable for the agent.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise at three sentences, front-loading the core purpose. The additional sentences about hosting, payment, and LGPD are informative and not redundant. A minor issue is the legal disclaimer, but it's relevant for compliance and not excessive.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool has 3 parameters, no output schema, and the description covers many contextual aspects (payment, auth, data subject). However, it fails to explain the 'completo' parameter and does not resolve the contradiction between 'ou' in the description and the schema's required both Cpf and Cnpj. With no output schema, more detail on response structure would help, though 'com detalhes por processo' gives a hint. Overall, the description is incomplete for a tool with this complexity.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 0%, so the description must explain parameters. It mentions 'CPF ou CNPJ' but this conflicts with the schema, where both Cpf and Cnpj are required. The boolean 'completo' parameter is not explained at all, despite the description's phrase 'com detalhes por processo' possibly alluding to it. The description adds little semantic value and leaves parameter usage ambiguous.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: 'Consulta completa dos processos judiciais de uma pessoa ou empresa a partir do CPF ou CNPJ, com detalhes por processo.' It names a specific verb (consultar), resource (processos judiciais), and input scope (CPF/CNPJ). It also distinguishes from siblings, as none of the listed siblings (authenticate, connect, marketplace, etc.) relate to judicial process consultation.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Provides clear usage context: 'Hospedado pela plataforma, sem credenciais, pague por consulta com crédito pré-pago' and 'Consulta informação de ACESSO PÚBLICO em bases e fontes oficiais.' It sets expectations for authentication and payment but does not explicitly state when not to use the tool or name alternatives. Since there are no similar sibling tools, the lack of exclusion criteria is acceptable.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

report_bugA
Idempotent
Inspect

Report a bug, missing feature, or send feedback. Include the conversation array with recent messages for reproduction.

ParametersJSON Schema
NameRequiredDescriptionDefault
contextNo
messageYes
conversationNo[]
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already provide idempotentHint=true, readOnlyHint=false, and destructiveHint=false. The description adds a behavioral detail beyond annotations by specifying that the conversation array should be included 'for reproduction,' implying the tool will use that data to understand the issue. However, it does not disclose other behaviors like whether a confirmation is returned or how the report is processed, so there is moderate added value.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, clear sentence followed by a practical instruction. It is concise and front-loaded with the primary action, wasting no words. Every part is essential for understanding the tool's purpose and a key usage detail.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple feedback/report tool with three parameters and no output schema, the description covers the core functionality and provides a key usage hint (conversation array). It could mention what happens after reporting, but it is reasonably complete for the tool's simplicity and the annotations fill in safety metadata (idempotent, non-destructive).

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema has 0% description coverage, so the description carries the burden of explaining parameters. It explicitly explains the 'conversation' parameter ('Include the conversation array with recent messages') and implies 'message' is the content of the report. However, the 'context' parameter is not explained, and the description doesn't mention parameter types or defaults beyond what the schema already shows. This is partial compensation for the schema gap.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's function: 'Report a bug, missing feature, or send feedback.' It uses a specific verb ('report'/'send') and resource ('bug', 'missing feature', 'feedback'). It is obviously distinct from sibling tools, which focus on authentication, connection, marketplace, legal consultation, version, and toolkit info, so no confusion arises.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides clear context for when to use the tool: when there is a bug, missing feature, or feedback to send. It does not explicitly mention alternatives or exclusions, but since none of the sibling tools are similar, the intended usage is unambiguous. The instruction to include the conversation array also gives practical guidance 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_versionA
Read-onlyIdempotent
Inspect

Show the current MCP platform and adapter versions.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior3/5

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 clear. The description adds a small detail about reporting both platform and adapter versions but doesn't provide additional behavioral context beyond that.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Single sentence, front-loaded with the verb, no wasted words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

This is a trivial read-only tool with no params, strong annotations, and no output schema. The description completely covers the tool's function; nothing else is needed.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema is empty with 100% schema description coverage, and there are no parameters. As per the rubric, a zero-parameter tool gets a baseline of 4; the description correctly doesn't attempt to document nonexistent params.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses the specific verb 'show' and clearly identifies the resources ('current MCP platform and adapter versions'). It effectively distinguishes itself from sibling tools like 'toolkit_info' by focusing specifically on version information.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies the tool is for retrieving version info but provides no explicit guidance on when to prefer it over siblings. Since it's a simple, unconditional call, the usage is self-evident, but no alternatives or exclusions are mentioned.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

toolkit_infoA
Read-onlyIdempotent
Inspect

Returns the current toolkit state: installed MCPs, their connection status, the accounts connected to each one, and how many catalog tools each exposes.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, idempotentHint=true, destructiveHint=false. The description adds useful behavioral context by specifying exactly what 'state' includes (installed MCPs, connection status, connected accounts, tool counts), which goes beyond the bare name. No hidden side effects or constraints are implied, and nothing contradicts 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.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, well-structured sentence that front-loads the action and then lists the key output components. Every word contributes meaning, with no fluff or repetition of the schema (which is empty).

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's simplicity (zero params, no output schema), the description fully captures its behavior and scope. It tells the agent exactly what to expect: a snapshot of MCPs, connection status, accounts, and tool counts, which is sufficient for a read-only informational tool. No gaps remain.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

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 appropriately explains what the tool returns, leaving no need for parameter documentation. It adds no redundant parameter info because none exist.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('Returns') and identifies the exact resource ('current toolkit state') with enumerated details (installed MCPs, connection status, accounts, catalog tool counts). This clearly distinguishes it from sibling tools like authenticate or marketplace, which have different purposes.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description conveys the tool's role as a state/info snapshot, making its use obvious for checking toolkit status. It does not explicitly state when not to use it or list alternatives, but no overlapping sibling exists, so the context is clear enough. A minor omission is the lack of explicit 'use this when you need a summary' guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

  • -
    license
    -
    quality
    -
    maintenance
    Enables interaction with Brazil's Electronic Judicial Process (PJe) system to search for legal processes, view case details, and download court documents. Supports secure JWT authentication and process lookup by CPF/CNPJ or party name.
  • A
    license
    -
    quality
    C
    maintenance
    Enables querying public Brazilian court proceedings metadata and movements via the CNJ/DataJud API, covering multiple courts.
    2
    MIT

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.