JUCESP: REDESIM, Acompanhamento de Protocolo
Server Details
Tracks a REDESIM protocol at JUCESP (company opening, change or closure). Platform-hosted, no creden
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- mcp-dir/jucesp_redesim_protocolo-mcp
- GitHub Stars
- 0
- Server Listing
- JUCESP: REDESIM, Acompanhamento de Protocolo
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4.2/5 across 7 of 7 tools scored.
Each tool has a distinct purpose: authentication, connection status, protocol consultation, marketplace access, bug reporting, version info, and toolkit state. No two tools appear to do the same thing, though connect and toolkit_info both report connection-related information.
Names mix lowercase verbs (authenticate, connect), underscore-separated verbs (report_bug, show_version), nouns (marketplace, toolkit_info), and a long snake_case domain-specific name (jucesp_redesim_protocolo_consultar). The conventions are inconsistent and do not follow a single pattern.
7 tools is a reasonable count for a platform server that includes both domain-specific functionality and administrative utilities. It is within the typical 3-15 range, though the presence of generic marketplace and utility tools alongside a single domain tool makes the scope slightly mixed.
The server's stated domain is JUCESP REDESIM protocol tracking, but it offers only one consultation tool (jucesp_redesim_protocolo_consultar) with no list, update, or cancel operations. The remaining tools are platform-level utilities, so the domain-specific surface is severely limited for a dedicated server.
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?
The description reveals practical behavior beyond annotations: token format ('<jwt>'), session-only versus persistent config-based auth, and the no-arguments behavior of returning the login link. It states that config-header auth is 'permanent, non-expiring', which is useful context not derivable from idempotentHint or readOnlyHint.
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 compact and front-loaded with the tool's purpose before providing actionable details. It contains several semicolon-connected clauses, making it slightly dense but every part adds usable guidance.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given there is no output schema and a single optional parameter, the description is sufficient for an agent to both select this tool and use each invocation mode. It covers persistent, session, and no-argument cases. It does not explicitly state return values in detail, but 'get the link' is enough for this simple auth flow.
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 provides only a bare optional 'token' string with 0% description coverage, so the description carries the full burden. It explains that the token is pasted after user login, is expected to be a JWT, and that omitting it returns the login link. This fully resolves the meaning and behavior of the only 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 this as an authentication tool: users log in through the browser and supply an access token as a JWT, or retrieve a login link with no arguments. It is specific about the resource (MCP.AI server for IDE agents) but does not explicitly contrast it with sibling tools like 'connect'.
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?
It provides explicit onboarding guidance: 'Best: add it to this server's config as a header' for permanent access, 'Or paste it here for a session-only login', and 'or with no args to get the link'. It clearly tells an agent how to invoke different modes, though it does not name alternative tools to use instead.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
connectARead-onlyIdempotentInspect
Returns connection status and URLs. When all providers are connected, returns authenticated:true and empty pending[]. When credentials are missing, returns connect_url for the toolkit and per-install URLs.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and destructiveHint=false, so the agent knows this is a safe read operation. The description adds value by explaining the two possible response shapes: authenticated:true with empty pending[] when all providers are connected, and connect_url with per-install URLs when credentials are missing. This clarifies the tool's output logic beyond annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences long, front-loaded with the primary purpose, and efficiently adds the key behavioral distinctions. Every sentence contributes meaningful information without waste or repetition.
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 parameterless tool with no output schema and strong annotations, the description is fully complete. It covers both primary states (all connected vs. missing credentials) and explains what the response includes. There are no gaps in understanding when or how to invoke the tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, and schema coverage is 100% since there is nothing to document. The baseline for zero params is 4, and the description does not need to add parameter details. It correctly focuses on the output behavior rather than parameter explanation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool returns connection status and URLs, which is a specific verb+resource combination. It also distinguishes between the fully-connected state and the missing-credentials state, making it unambiguous. This differentiates it from siblings like 'authenticate', which initiates an action rather than reporting status.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for checking connection status, but it does not explicitly state when to use this tool versus alternatives like 'authenticate'. It describes behavioral outcomes based on connection state, but does not include direct guidance on when to call it or what to do after seeing the results. The context is somewhat evident but not fully explicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
jucesp_redesim_protocolo_consultarARead-onlyIdempotentInspect
Acompanha o andamento de um protocolo REDESIM na JUCESP (abertura, alteração ou baixa de empresa). Hospedado pela plataforma, sem credenciais, 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 |
|---|---|---|---|
| login_cpf | No | ||
| protocolo | Yes | ||
| login_senha | No | ||
| pkcs12_cert | No | ||
| pkcs12_pass | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnly, idempotent, and non-destructive behavior, and the description adds useful context about billing, public-source data, and LGPD responsibility. However, the claim 'sem credenciais' is potentially misleading given the schema includes login_cpf, login_senha, pkcs12_cert, and pkcs12_pass, so the description is not fully transparent about the role of these parameters.
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 composed of three short, front-loaded sentences. The first sentence states the core purpose, while the remaining sentences cover pricing, data source, and compliance without excessive padding or redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
No output schema exists, so the description should indicate what the consultation returns or what 'andamento' includes, but it does not. It also fails to explain four optional parameters, leaving a significant gap for a tool with five parameters and no structured output information.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate, but only 'protocolo' is inferable from the text as a REDESIM protocol identifier. The optional credential-related parameters (login_cpf, login_senha, pkcs12_cert, pkcs12_pass) are entirely unexplained, and the statement 'sem credenciais' adds confusion rather than resolving their purpose.
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 opens with a specific verb and resource: 'Acompanha o andamento de um protocolo REDESIM na JUCESP' and clarifies the covered business types (abertura, alteração ou baixa de empresa). This clearly differentiates the tool from the general sibling tools like authenticate, connect, and marketplace.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It provides clear contextual guidance: the tool is hosted by the platform, requires no credentials, uses prepaid credit, and returns the same non-confidential data available to Brazilian citizens. It does not explicitly name when-not-to-use alternatives, but the context is sufficient for the given sibling set.
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?
Annotations only provide generic flags (readOnlyHint=false, destructiveHint=false), so the description carries the burden. It adds rich behavior: invoke runs one-off 'without adding the MCP to the toolkit and without bloating the tool list', returns a connect link if credentials are needed, returns a checkout/top-up link on empty wallet, and states writes require workspace owner/admin. This substantially exceeds what annotations disclose, with no contradiction.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
At roughly 350 words in a single wall-of-text paragraph, it is dense but genuinely valuable for a 14-action tool. It uses inline markers like 'Core flow:', 'KEY:', and 'Search/describe flag' to aid scanning, but a bulleted or sectioned structure would dramatically improve navigability for an agent parsing 14 distinct actions.
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 highly complex tool (14 actions, 23 params, no output schema), the description covers the main behavioral surface: the orchestration flow, one-off vs permanent semantics, auth/payment link returns, workspace permissions, and the prompt library sub-feature. Minor gaps remain: no error-handling guidance, no pagination behavior, and no explicit mention of what list_tools returns — but it is strong overall.
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% with 23 parameters, so the description must compensate fully. It maps roughly half: action (flow), query (search), message (capability requests), mcp_id (describe/install), tool_id (invoke), arguments, prompt_slug/prompt_vars (prompt library), tier_slug (subscribe). But limit, immediate, conversation, request_name, cancel_comment, report_context, prompt_targets, prompt_category, request_details, prompt_description, and prompt_title are documented nowhere.
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 states a specific purpose: the official in-platform catalog of every MCP/tool AND the way to run them, with explicit capability examples ('find an MCP that does X', 'consulta um CPF'). It clearly distinguishes itself from siblings like authenticate/connect and report_bug by owning the search→describe→invoke flow and the prompt library.
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?
Explicit when-to-use guidance is present: 'use install only to make an MCP PERMANENT... prefer invoke for a single/occasional use', 'list_tools lists what is callable right now', and 'request_mcp asks us to build a NEW MCP when nothing fits'. It also clarifies the retry-after-checkout flow and that limit applies to search/publish.
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 cover idempotency and non-destructive behavior. The description adds context that the conversation details are used for reproduction, but it does not disclose side effects (e.g., data delivery method, whether a response is expected) or any other operational nuances. No contradiction with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two concise sentences front-load the purpose and then give one necessary usage note. No redundant language or repetition of schema-field names.
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 3-parameter tool with no output schema, this description is minimally adequate. It says what the report is and how to improve reproducibility, but omits guidance for the 'context' parameter and does not describe what happens after submission or any possible errors.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must clarify all parameters. It partially explains 'message' by implication (bug/feedback text) and 'conversation' by telling users to include recent messages, but it leaves 'context' completely undefined and does not specify formats or examples for conversation beyond 'array'.
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 exact purpose: 'Report a bug, missing feature, or send feedback.' This is specific and distinct from all sibling tools, which cover unrelated actions like authenticate, connect, and marketplace.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It provides clear user-facing context for when to use the tool (bug, missing feature, feedback) and even gives a usage hint about including the conversation array. However, it does not explicitly discuss when not to use it or compare with alternatives, though none of the siblings compete.
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 read-only and idempotent behavior; the description adds the word 'current' implying real-time data, slightly enhancing transparency. However, it does not mention whether a network call is made or if it relies on cached data. Given the annotations, this is adequate but not exceptional.
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-formed sentence of 10 words. No filler, no redundancy, directly front-loaded with the verb. Perfectly concise.
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, side-effect-free query tool, the description fully covers what an agent needs to know. No output schema is necessary, and annotations handle safety. Nothing is missing.
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, there is nothing to explain. Per rubric, 0 params yields a baseline of 4, and the description correctly adds no unnecessary parameter details.
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 current MCP platform and adapter versions, with a specific verb ('Show') and resource. It is unambiguous and distinct from all sibling tools, which focus on authentication, connections, protocol consultation, marketplace, or bug reporting.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Usage is immediately clear for a version-check utility; when you need version info, this is the tool. However, it does not explicitly mention any exclusions or alternatives, though none are necessary given its self-contained nature.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
toolkit_infoARead-onlyIdempotentInspect
Returns the current toolkit state: installed MCPs, their connection status, the accounts connected to each one, and how many catalog tools each exposes.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The annotations already declare it as read-only, idempotent, and non-destructive. The description adds meaningful context about what information it returns (installed MCPs, connection status, accounts, catalog counts), which is beyond the annotations. It does not contradict any annotation, and the combination of annotations and description provides a clear behavioral picture.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, focused sentence that front-loads the purpose and enumerates the returned data. No filler or redundant phrasing; every word contributes.
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 explains what the tool returns crossing all relevant aspects. It covers the essential information an agent needs to decide when to invoke it.
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 per the rubric is 4. Schema coverage is 100% (vacuously true). The description doesn't need to add parameter details since there are none, and it accurately describes the tool's output.
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') and identifies the resource ('current toolkit state') with enumerations of what it includes (installed MCPs, connection status, accounts, catalog counts). It clearly distinguishes from sibling tools like show_version and jucesp_redesim_protocolo_consultar, which serve other purposes.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
While the description doesn't explicitly state when not to use it, the purpose strongly implies it's the go-to for a high-level overview of the toolkit's configuration. It could benefit from a note that it doesn't perform actions or authenticate, but given the sibling list and the clear scope, the context is adequate.
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
- -license-qualityCmaintenanceFetches simplified company registration data from JUCESP (São Paulo state trade board) by CNPJ, NIRE, or company name. Read-only, hosted, no credentials, with pay-per-use prepaid credits.
- -license-qualityCmaintenanceEnables advanced search of companies in JUCESP by corporate name, object, capital, address, and other filters, returning the NIRE. Works with any MCP client via HTTP.
- Alicense-qualityCmaintenanceEnables querying public Brazilian court proceedings metadata and movements via the CNJ/DataJud API, covering multiple courts.2MIT
- -license-quality-maintenanceEmits simplified company certificates from JUCESP (Brazilian state registry) via CNPJ, NIRE, or name. Read-only, hosted MCP server with pay-per-use credit system.
Your Connectors
Sign in to create a connector for this server.