SNCR: Emissão do Certificado de Cadastro do Imóvel Rural (CCIR)
Server Details
SNCR: Issuance do Certificado de Cadastro do Imóvel Rural (CCIR), official-source lookup. Platform-h
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- mcp-dir/sncr_ccir-mcp
- GitHub Stars
- 0
- Server Listing
- SNCR: Emissão do Certificado de Cadastro do Imóvel Rural (CCIR)
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 3.9/5 across 7 of 7 tools scored. Lowest: 2.7/5.
Most tools are distinct (authenticate, connect, marketplace, report_bug, show_version, toolkit_info, sncr_ccir_consultar), but 'connect' and 'toolkit_info' both report connection status and could be confused. 'marketplace' is a large multi-purpose tool that overlaps with 'toolkit_info' in listing tools and with 'sncr_ccir_consultar' in running queries, creating some ambiguity.
Naming is inconsistent: some tools use snake_case (report_bug, show_version, toolkit_info, sncr_ccir_consultar) while others are single words (authenticate, connect, marketplace). The main domain tool 'sncr_ccir_consultar' uses a different pattern (domain prefix + verb) than the rest, and there's no consistent verb_noun structure.
7 tools is a reasonable count for a platform that wraps a single domain query (CCIR) plus platform management. The count is slightly high because several tools (report_bug, show_version, toolkit_info) are generic platform utilities, but they don't bloat the set excessively.
The domain surface is minimal: only one query tool (sncr_ccir_consultar) for CCIR. There's no batch query, no history, no status check specific to the query, and no way to manage credits beyond the generic marketplace. The platform tools cover auth, connection, and catalog, but the actual domain (CCIR) is a single operation with no supporting operations.
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?
Annotations already indicate idempotency and non-destructiveness, so the bar is lower. The description adds valuable behavioral context: browser login flow, session-only vs permanent token, and that calling with no args returns a link. It does not contradict 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 moderately long but every sentence contributes: context, best practice, and usage scenarios. It's front-loaded with the tool's purpose. Slight verbosity but no wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With no output schema, the description should hint at return values; it mentions 'get the link' but doesn't detail the response. It covers all major flows (browser, config, session token) and error handling is absent but acceptable for a simple auth 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?
Schema coverage is 0%, so the description carries full responsibility. It clearly explains the 'token' parameter as a JWT to paste for session login, and describes the no-argument call to get a link. This precisely defines parameter semantics beyond the bare schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: authenticating IDE agents to MCP.AI. It specifies the exact actions (browser login, token paste) and distinguishes itself from sibling tools by focusing solely on authentication. The verb 'log in' and resource 'MCP.AI' are explicit.
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 guidance on when to use the tool: for session-only login via pasted token, or with no args to get a link. It also recommends the alternative of configuring a header for a permanent connection, which acts as a when-not/alternative. While it doesn't explicitly mention sibling tools, the context is sufficient for an agent to decide.
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, idempotentHint, and destructiveHint, and the description adds meaningful response behavior beyond those: the authenticated:true/pending[] state and the connect_url/per-install URL fallback. It does not contradict the annotations and gives useful conditional behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two concise sentences, front-loaded with the core purpose and followed by the two key response states. Every sentence adds meaningful information without 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?
Given the low complexity, zero parameters, and existing annotations, the description is nearly complete. It covers both main response states despite the lack of an output schema, though it could briefly clarify what 'pending' or 'per-install URLs' represent.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, so the baseline is 4. The description correctly focuses on the returned data rather than parameter details, and no parameter semantics are needed.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb and resource: 'Returns connection status and URLs.' It clearly identifies what the tool does and differentiates it from siblings like authenticate by describing a status/URL introspection function rather than an action.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies when to use the tool by describing the two response conditions, but it does not explicitly provide usage guidance or mention alternatives. It does not say 'use authenticate when you need to establish credentials' or clarify when not to use this tool, so the usage context is only implied.
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?
Beyond annotations, it discloses one-off invoke semantics, behavior when credentials are missing (connect link), behavior when payment is needed (checkout/top-up link), permanent vs. temporary install effects, installed_in_toolkit vs. installed_in_workspace flags, and prompt share links opening without login. This is rich, non-obvious behavioral context that the sparse annotations do not provide, and there is 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?
The description is long but organized around core flow, key invoke behavior, install vs. invoke, billing/reporting actions, and the prompt library. Some redundancy and run-on sentences (e.g., 'without adding the MCP to the toolkit and without bloating the tool list') make it less crisp than it could be, but the density is largely justified by the tool's complexity.
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 the main workflow, permission requirements, billing/auth edge cases, installed flags, and prompt-library outputs. However, with no output schema, it leaves some return-value expectations implicit (e.g., success response shape for search, list_tools, and invoke success), so it is not fully complete for a tool of this complexity.
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 optional parameters, so the description carries a heavy burden. It does explain the action enum and key workflow parameters like tool_id, prompt_vars, prompt_slug, and prompt_body, but many parameters (arguments, conversation, immediate, tier_slug, message, request_details, report_context, etc.) are left unexplained. It partially compensates for the schema gap but not fully.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly identifies the tool as the mcp.ai marketplace: a catalog and execution layer for MCPs, plus a prompt library, and lays out the search → describe → invoke flow. It names the main sub-actions precisely, but bundles many capabilities under one tool and does not explicitly distinguish the marketplace's report_bug action from the sibling report_bug tool, so it stops short of a perfect 5.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives explicit guidance: prefer invoke for single/occasional use, use install only to make an MCP permanent, use request_mcp when nothing fits, and use list_tools/search_prompts for their respective purposes. It also notes that writes require workspace owner/admin, making when-to-use and when-not-to-use very clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
report_bugCIdempotentInspect
Report a bug, missing feature, or send feedback. Include the conversation array with recent messages for reproduction.
| Name | Required | Description | Default |
|---|---|---|---|
| context | No | ||
| message | Yes | ||
| conversation | No | [] |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations indicate idempotentHint=true, readOnlyHint=false, destructiveHint=false. The description does not disclose any additional behavioral traits such as network calls, rate limits, or side effects. It does not explain what happens after reporting (e.g., if a ticket is created, if it's asynchronous). The description adds minimal context beyond the annotations, so it falls short.
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, concise, and front-loaded with the primary purpose. Every sentence adds value: the first defines the action, the second gives a usage hint. It is not verbose, though it could be more informative without sacrificing conciseness.
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 complexity (3 params, 0% schema coverage, no output schema) and the lack of annotations, the description is insufficient. It does not explain the expected format of the conversation array, what happens after reporting, or any error handling. The tool is a reporting mechanism, so it should clarify how to structure the input and what the user can expect.
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 for the parameters. It mentions 'conversation array' but does not explain the format of 'context' or the exact structure of 'conversation' (it says 'recent messages' but no JSON format). The 'message' parameter is self-explanatory, but the other two are vague. This is a clear 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 clearly states the tool's purpose: 'Report a bug, missing feature, or send feedback.' It uses a specific verb (report/send) and identifies the resource (bug, feature, feedback). It distinguishes from siblings by the action of reporting, though it doesn't explicitly differentiate from other feedback-related tools, but none seem to overlap.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It only says what the tool does (report bugs/feedback). There is no mention of when not to use it, nor any comparison to sibling tools like sncr_ccir_consultar or toolkit_info. The instruction to include the conversation array is a usage hint, but not enough to score higher.
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 the tool as read-only, idempotent, and non-destructive. The description adds that it reports 'current' platform and adapter versions, but does not describe the response format or any other behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single sentence contains exactly the necessary information: what is shown and for which components. There is no wasted language or redundancy with the title.
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 version query with strong annotations, the description is nearly complete. It states the exact subject of the output (platform and adapter versions), though it omits any detail about result formatting.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, so the baseline is 4. The description appropriately makes no attempt to explain parameters that do not exist.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Show') and names a clear resource ('current MCP platform and adapter versions'). This is more precise than the title 'Show Version' and distinguishes it from sibling tools like authenticate or toolkit_info.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives no explicit guidance about when to use this tool versus any alternative. There are no stated exclusions or context clues about when this version information might be needed.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
sncr_ccir_consultarARead-onlyIdempotentInspect
SNCR: Emissão do Certificado de Cadastro do Imóvel Rural (CCIR), 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 |
|---|---|---|---|
| uf_sede | Yes | ||
| cpf_titular | No | ||
| cnpj_titular | No | ||
| codigo_imovel | Yes | ||
| municipio_sede | Yes | ||
| natureza_juridica | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations declare readOnlyHint, idempotentHint, and destructiveHint. The description goes beyond these by explaining that the tool is hosted on the platform, requires no platform credentials, is paid with prepaid credit, and that the client is the data controller per LGPD. It also clarifies that data is not confidential. This adds valuable behavioral context without contradicting 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 relatively concise for the information it conveys, leading with the main purpose and then adding payment and data responsibility details. It is structured logically and does not contain superfluous text, though it could be slightly tighter.
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 business context (payment, data control, official source) but omits crucial operational details: what the exact input parameters mean, what the output format is (no output schema), and any limitations or expected response structure. For a paid consultative tool with 6 parameters, this is incomplete.
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 coverage is 0%, and the description does not explain any of the 6 parameters (e.g., codigo_imovel, uf_sede, municipio_sede). It only mentions the overall purpose. This is a severe gap for a tool with multiple required inputs, as the agent cannot infer what values are appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function: 'Emissão do Certificado de Cadastro do Imóvel Rural (CCIR), consulta em fonte oficial' (Issuance/consultation of the CCIR certificate in official source). It uses a specific verb and resource, and is distinct from generic sibling tools like authenticate or 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?
While no explicit alternative tools are mentioned, the description provides clear context: this is a paid consultation from an official source, without platform credentials. It implies when to use (when needing CCIR data) but does not explicitly state when not to use or list alternatives. Since no sibling does a similar function, this context is sufficient.
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 readOnlyHint=true and idempotentHint=true, covering safety. The description adds value by specifying exactly what information is returned (installed MCPs, connection status, accounts, catalog tool counts), which is beyond the annotations. It does not mention response format or potential error conditions, but for a read-only status tool, this is adequate.
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 succinct sentence that directly states the purpose and the key pieces of information returned. No unnecessary words.
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 status/read-only tool with no parameters, the description fully covers what is returned: installed MCPs, connection status, accounts, and catalog tool counts. No output schema is present but the description makes the expected result clear.
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 flu. With no parameters to document, the description doesn't need to clarify them. The schema already covers everything (empty properties). Baseline 4 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Returns') and names the resource ('current toolkit state') with clear details: installed MCPs, connection status, accounts, and catalog tool counts. It clearly distinguishes from sibling tools like connect, authenticate, and show_version, 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.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies this tool is used to query the overall toolkit state but does not explicitly state when to use it over alternatives like 'show_version' or 'connect'. There's no exclusionary language or naming of when-not-to-use scenarios. The context is implicitly clear but not explicit.
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 to query Brazil's rural property registry (CAFIR) using the CIB code, providing read-only consultation of rural property data via a hosted API with prepaid credits.MIT
- AlicenseNot gradedqualityCmaintenanceMCP server that issues Certidão Negativa de Débitos e Dívida Ativa da União for rural properties using the CIB, enabling debt status checks through natural language.MIT
- AlicenseNot gradedqualityCmaintenanceEnables querying official SEFAZ GO rural producer data via a single read-only tool, with pay-per-query credit based access.MIT
- AlicenseNot gradedqualityCmaintenanceMCP server for querying official Brazilian federal revenue (Cafir) data, providing a single read-only tool for consulting rural property records via natural language.MIT
Your Connectors
Sign in to create a connector for this server.