Procuradoria Geral do Estado BA: Dívida Ativa
Server Details
Procuradoria Geral do Estado BA: Dívida Ativa, official-source lookup. Platform-hosted, pay per quer
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- mcp-dir/pge_ba_divida_ativa-mcp
- GitHub Stars
- 0
- Server Listing
- Procuradoria Geral do Estado BA: Dívida Ativa
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. Lowest: 3.5/5.
Each tool has a clearly distinct purpose: authentication, status check, marketplace search, bug reporting, version info, toolkit state, and the single domain consultation. The only potential confusion is between 'connect' and 'toolkit_info' as both provide status, but they focus on different aspects (connection URLs vs. installed MCPs). The mixing of platform-level and domain-specific tools is unusual but does not create ambiguity about what each tool does.
Naming is inconsistent: most tools use English lowercase with underscores (e.g., report_bug, show_version, toolkit_info), but one tool uses Portuguese with a long phrase (pge_ba_divida_ativa_consultar). Conventions also vary between verb_noun (report_bug, show_version), single verb (connect), and noun-only (marketplace). The domain tool completely deviates from the pattern of the others, making the set feel incoherent.
Seven tools is a reasonable count, but the server is specifically about 'Dívida Ativa' from a government entity, yet six of the seven tools are generic platform utilities (auth, marketplace, version, etc.) unrelated to the domain. The one relevant tool is the sole consultation operation. The set is neither well-scoped to the server's purpose nor does each tool earn its place—most belong in a general platform toolkit rather than this domain-specific server.
For a server dedicated to consulting 'Dívida Ativa', there is only a single tool (pge_ba_divida_ativa_consultar) that performs any domain operation. There are no additional capabilities like listing debts, updating records, or handling different query types. The platform tools (authenticate, connect, marketplace, etc.) do not contribute to fulfilling the domain's requirements. This is a severely incomplete surface for the stated purpose, leaving the agent with only one narrow action.
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 adds context beyond the annotations by explaining the two authentication modes (permanent config vs session-only) and the behavior of calling with no args (returns link). It does not contradict the annotations and provides useful side-effect information.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is slightly verbose but well-structured, with 'Best:' and 'Or' delineating options. It conveys all necessary information without excessive fluff, though it could be tightened slightly.
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?
The description covers all essential aspects for using the tool: how to authenticate, the two modes, and the behavior with and without the token. Since there is no output schema, it appropriately focuses on input and usage.
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 description fully explains the 'token' parameter: it is a JWT that the user pastes, and it is optional (since calling with no args is allowed). This goes well beyond the schema, which only defines it as a string without additional context.
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 that the tool is for authentication, explaining the login process and token usage. It is distinct from sibling tools like connect or report_bug, which serve different purposes.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides explicit instructions on when and how to use the tool: either with a token for session-only login or without args to obtain the login link. It also explains the permanent vs session-only options, giving clear usage scenarios.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
connectARead-onlyIdempotentInspect
Returns connection status and URLs. When all providers are connected, returns authenticated:true and empty pending[]. When credentials are missing, returns connect_url for the toolkit and per-install URLs.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already provide readOnlyHint and idempotentHint, so the description doesn't need to restate those. It adds valuable behavioral detail about conditional returns (authenticated:true when all connected, connect_url for missing credentials). This goes beyond the annotations and helps the agent anticipate outputs.
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. Every clause adds value: the first defines the tool, the second explains conditional behavior. No wasted words or repetition of annotations.
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 0-param, read-only status tool, the description fully covers the return values and conditional scenarios. The output schema is absent, so the description's mention of 'authenticated:true' and 'pending[]' is necessary and sufficient. Siblings make the tool's role clear. Complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, so the schema is trivially complete (100% coverage). The description doesn't need to explain parameters. Baseline for 0 params is 4, and the description provides no contradictory or redundant info.
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 'Returns connection status and URLs' with a specific verb and resource. It distinguishes this from sibling tools like 'authenticate' by focusing on status reporting rather than initiating authentication. The conditional details (authenticated:true, pending[], connect_url) make the purpose unmistakable.
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'. There's no clear when/when-not guidance, though the context makes it inferable. This is borderline between implied and explicit, so a 3 is appropriate.
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 adds substantial behavioral context beyond the annotations: invoke works even when the MCP is not installed, runs one-off without bloating the tool list, returns connect/checkout links for auth/payment, and writes require workspace owner/admin. It also explains prompt-library sharing behavior. No contradiction with annotations exists.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is dense but every sentence contributes meaningful guidance for a multiplexed tool. It front-loads the core purpose and flow, then covers invoke behavior, install vs invoke, permissions, and the prompt library. It could be improved with bullet structure, but it is not padded or redundant.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (14 actions, 23 params, no output schema), the description is remarkably complete: it explains the search→describe→invoke flow, one-off invoke behavior, auth/billing link handling, install permanence, permission requirements, and prompt-library operations. Gaps remain for the resume action, immediate/tier_slug semantics, and return-value expectations, but the overall mental model 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?
With 23 parameters and 0% schema description coverage, the description carries a heavy burden. It adds real meaning for the action enum and core workflow (search, describe, invoke, install, list_tools, subscribe, cancel, report_bug, request_mcp, prompt actions). However, several parameters remain unexplained, including resume, immediate, tier_slug, cancel_reason/cancel_comment, arguments format, conversation, and prompt_targets, so it does not fully compensate for the schema gap.
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 identity: 'the official mcp.ai marketplace — the in-platform catalog of every MCP/tool, AND the way to run them.' It clearly states the tool's core flow (search → describe → invoke) and distinguishes it from siblings by positioning it as the catalog/runner plus prompt library, not just another auth or info tool.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives explicit usage guidance: 'prefer invoke for a single/occasional use' vs 'Use install only to make an MCP PERMANENT,' and 'list_tools lists what is callable right now.' It also explains when to use request_mcp ('when nothing fits') and describes the search/describe workflow, making alternatives clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
pge_ba_divida_ativa_consultarARead-onlyIdempotentInspect
Procuradoria Geral do Estado BA: Dívida Ativa, consulta em fonte oficial. Hospedado pela plataforma, sem credenciais da plataforma, pague por consulta com crédito pré-pago. Consulta informação de fontes e órgãos oficiais brasileiros (a mesma disponível ao cidadão), não é dado sigiloso. O cliente é o controlador dos dados e responde pela finalidade legítima (LGPD).
| Name | Required | Description | Default |
|---|---|---|---|
| cpf | No | ||
| renavam | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already provide readOnly, idempotent, and non-destructive hints. The description adds valuable behavioral context beyond those: payment with prepaid credits, no platform credentials needed, data is not confidential, and the caller is LGPD data controller. There is 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?
The description is compact and front-loaded: first the subject/purpose, then cost and credentials, then legal/source caveats. Each sentence adds something, though legal repetition about LGPD could be trimmed.
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?
The description covers important operational context (official source, cost, credentials, consent, LGPD) but lacks enough detail about input selection and output behavior. With no output schema and no parameter descriptions, the agent still has meaningful uncertainty about how 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?
Schema description coverage is 0%, and the description does not explain the CPF and RENAVAM parameters, their formats, optionality, or relationship to a query. Since it does not compensate for the schema gap, an agent receives almost no semantic help for the inputs.
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 explicitly states the action ('consulta') and the resource ('Dívida Ativa' from the Procuradoria Geral do Estado BA), adding that it queries an official source. This clearly distinguishes it from sibling tools like authenticate, marketplace, and show_version, and gives a concrete purpose even without reading the input schema.
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 useful context: no platform credentials required, prepaid per-query cost, official non-confidential source, and LGPD responsibility. However, it does not explicitly state when to prefer this tool over alternatives or when not to use it, so usage guidance is largely implicit.
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 declare idempotentHint=true, readOnlyHint=false, and destructiveHint=false, so the description is not contradicted. The description adds the note about including the conversation array for reproduction, which is a behavioral context beyond the schema. However, it does not disclose side effects like storing the report or any rate limits, though given the annotations, a moderate disclosure is acceptable.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise—two sentences—and front-loaded with the main purpose. The second sentence adds essential usage detail without wordiness. Every sentence contributes to understanding the tool's function and invocation.
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?
The tool is relatively simple with 3 parameters stub and no output schema. The description covers the main purpose and one key requirement (conversation array), but does not explain expected input fields like 'message' or 'context', nor the outcome after reporting. Given the low complexity and lack of output schema, a score of 3 is appropriate—adequate but with gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must explain parameters to add value. It mentions the 'conversation array' which maps to the 'conversation' parameter, but does not explain the 'message' parameter (which is required) or the 'context' parameter. This partial explanation leaves significant gaps for an agent to correctly invoke the tool.
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: 'Report a bug, missing feature, or send feedback.' It uses specific verbs (report, send) and identifies the resource (bug, feature, feedback), distinguishing it from sibling tools like marketplace or toolkit_info which serve different functions.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context for when to use the tool (reporting issues) and advises including the conversation array for reproduction, which is practical usage guidance. However, it does not explicitly exclude alternative approaches or mention when not to use it, though the purpose is clear enough.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
show_versionARead-onlyIdempotentInspect
Show the current MCP platform and adapter versions.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, so the agent knows this is a safe, idempotent read. The description adds minimal but useful context by specifying both MCP platform and adapter versions, but it does not disclose any additional behavioral traits (e.g., caching, failure modes). With annotations covering safety, a score of 3 is appropriate.
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, tightly worded sentence that conveys the exact purpose without any filler. It is appropriately front-loaded and 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 tool with no parameters, no output schema, and comprehensive annotations (readOnly, idempotent), the description is fully sufficient. It clearly states what the tool returns (current versions) and adds no unnecessary complexity. The context is complete for an agent to use 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 tool has zero parameters, and the input schema is empty. Per the rubric, a baseline of 4 applies, and the description does not need to compensate for missing parameter details. No additional meaning is required.
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, using a specific verb ('Show') and precise resource. It is distinct from sibling tools like toolkit_info, which likely provides broader information, but the focus on version details 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?
No usage context is provided. The description does not mention when to use this tool versus alternatives, nor any exclusions or prerequisites. For a simple version check, it may be self-evident, but the lack of explicit guidance means the agent gets no help in deciding between this and similar sibling tools like toolkit_info.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
toolkit_infoARead-onlyIdempotentInspect
Returns the current toolkit state: installed MCPs, their connection status, the accounts connected to each one, and how many catalog tools each exposes.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare this tool as readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is well-covered. The description adds useful content-level transparency by specifying exactly what data will be returned (installed MCPs, connection status, accounts, catalog tool counts). This goes beyond the annotations and gives the agent a concrete expectation of the output, warranting a 4.
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, tightly written sentence that front-loads the purpose ('Returns the current toolkit state') and enumerates the key details without any unnecessary words. Every phrase adds value, there is no fluff, and the structure is optimal for quick parsing.
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 read-only information tool with no parameters and no output schema, the description fully covers what the tool does and what it returns. It lists all categories of information, making the output predictable. There are no hidden surprises, and the description is sufficient for an agent to understand the tool's role without further elaboration.
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 the schema description coverage is 100% (no properties). With no parameters to document, the baseline is 4. The description does not need to elaborate on parameter semantics since there are none, and it correctly focuses on the returned state.
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: it returns current toolkit state, listing specific types of information (installed MCPs, connection status, connected accounts, catalog tool counts). The verb 'returns' plus the resource 'toolkit state' is specific and distinguishes it from sibling tools like authenticate, connect, or marketplace which perform actions rather than read-only queries.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implicitly conveys when to use this tool: whenever you need to inspect the toolkit's state, connections, or the accounts/features exposed by MCPs. It does not explicitly mention alternatives or exclusions, but given the tool's self-explanatory nature and that there is no direct sibling alternative for this exact function, the context is clear enough. A 4 is appropriate—clear context without explicit when-not-to-use.
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
- AlicenseNot gradedqualityCmaintenanceMCP server for querying Dívida Ativa data from the State Attorney General's Office of Ceará (Brazil). It provides a single read-only tool to consult official debt records, hosted and accessed via prepaid credits.MIT
- AlicenseNot gradedqualityCmaintenanceEnables querying of active debt information from the official source of the Attorney General of the State of Mato Grosso. Provides a read-only MCP tool to consult debt status via a hosted HTTP API with prepaid credits.MIT
- AlicenseNot gradedqualityCmaintenanceMCP server for consulting official Rio de Janeiro State Attorney General's active debt (Dívida Ativa) data via a hosted, read-only API with prepaid credits.MIT
- AlicenseNot gradedqualityCmaintenanceMCP server for consulting active debt (Dívida Ativa) from the São Paulo State Attorney General's Office (PGE-SP) via official sources, with read-only access and prepaid per-query credits.MIT
Your Connectors
Sign in to create a connector for this server.