Prefeitura SP Araçariguama: NFS-e (Nota Fiscal Eletrônica de Serviços)
Server Details
Prefeitura SP Araçariguama: NFS-e (Nota Fiscal Eletrônica de Serviços), official-source lookup. Plat
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- mcp-dir/pref_sp_aracariguama_nfs-mcp
- GitHub Stars
- 0
- Server Listing
- Prefeitura SP Araçariguama: NFS-e (Nota Fiscal Eletrônica de Serviços)
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.
The tools mix administrative/platform functions (authenticate, connect, marketplace, report_bug, show_version, toolkit_info) with the single domain tool (pref_sp_aracariguama_nfs_consultar). There is significant overlap between connect, toolkit_info, and authenticate in terms of session/connection status, and marketplace has a very broad multi-purpose description that overlaps with many platform utilities. The only clearly distinct domain tool is the NFS-e consultation, but its name is highly obscure and its description mixes with the marketplace's CPF consultation mention.
Tool names are wildly inconsistent: lowercase verbs without nouns (authenticate, connect, marketplace, report_bug, show_version, toolkit_info) mixed with a long snake_case Portuguese name (pref_sp_aracariguama_nfs_consultar). There is no pattern—some are generic English verbs, one is a resource noun, and the domain tool breaks convention entirely. The naming does not reflect a coherent system.
With 7 tools, the count is within a typical range, but it feels inflated by platform admin tools that are not directly related to the server's stated purpose (NFS-e consultation). Only one tool addresses the actual domain, while the others are generic platform mechanics, making the set feel both over and under-scoped depending on perspective.
The server's stated purpose is NFS-e consultation, but it only offers a single consult tool—no authentication for the specific provider, no listing, no history, no issuance. The other tools are platform plumbing (connect, marketplace, etc.) and do not fill domain gaps. The domain surface is severely incomplete, though the platform tools do cover some operational needs.
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 (readOnlyHint=false, destructiveHint=false, idempotentHint=true) are supplemented by the description, which clarifies the authentication flow and side effects like creating a permanent config header vs. session-only token. The description adds transparency about the token's lifespan (non-expiring vs. session-only) and the fact that calling with no args returns a login link, which is beyond what the annotations reveal.
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, somewhat run-on block of text with colons and 'Best:' and 'Or' to separate ideas, which could be better structured with line breaks or bullets for scanability. Every piece of information is relevant, but the flow is a bit tangled, making it less concise than it could be.
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 tool with one optional parameter, the description covers the main usage patterns (config header, token paste, no-arg) and enough context to invoke it correctly. It does not describe the response format, but the absence of an output schema and the low complexity keep this from being a critical gap.
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?
Despite 0% schema description coverage, the description explicitly explains the `token` parameter as a JWT to paste, and clarifies that calling with no arguments retrieves a login link. This directly adds meaning beyond the bare schema (which only states 'string'), effectively covering the parameter's semantics in prose.
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: to authenticate MCP.AI for IDE agents by logging in, copying an access token, and making it available via a config header or session token. It includes a specific flow (browser login, copy token) and differentiates between permanent (config header) and session-only (paste token) usage, which distinguishes it from sibling tools like 'connect' and 'report_bug'.
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 clearly explains when to use the tool (authentication) and provides instructions for the recommended permanent config method versus a session-only approach, including when to call with a token and when to call with no arguments. However, it does not explicitly contrast with siblings like 'connect' or mention alternative tools to consider, leaving a small gap in guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
connectARead-onlyIdempotentInspect
Returns connection status and URLs. When all providers are connected, returns authenticated:true and empty pending[]. When credentials are missing, returns connect_url for the toolkit and per-install URLs.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate read-only and idempotent. The description adds context about the return values and conditions (authenticated:true vs connect_url), which is useful transparency beyond the annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two concise sentences, no fluff. Clearly structured with conditions and expected returns.
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?
Without an output schema, the description explains the expected return structure and two possible states. It adequately covers the functionality, though it doesn't mention error scenarios.
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?
No parameters, so schema coverage is complete. Description doesn't need to explain parameters. Baseline for zero params is 4, and description doesn't need to add more.
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, and explains two distinct scenarios. It's a specific verb+resource (returns status) and distinguishes from sibling 'authenticate' which is about authentication.
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 (checking connectivity) but does not explicitly state when to use this tool versus alternatives like 'authenticate'. No explicit guidance for when not to use it.
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 the annotations, it discloses major behavioral traits: invoke runs tools even when the MCP is not installed, one-off invocations do not bloat the toolkit, writes require workspace owner/admin, and credential or payment gaps trigger connect/checkout links. It also describes the prompt library's behavior, including shareable unauthenticated links, adding substantial context not present in the annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is long but justified by the tool's 14-action dispatcher and 23 parameters. It front-loads the core purpose and flow, uses arrow notation for the main path, and separates the prompt library subsection. Some density and lack of formatting make it moderately heavy to parse, but every major behavior 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 highly complex tool with no output schema, the description covers the essential discovery, invocation, installation, billing, permission, and prompt-library behaviors. It explains return behaviors such as connect links, checkout links, full prompt text, and shareable slugs, but it does not describe response shapes for actions like search, list_tools, report_bug, or request_mcp, leaving some gaps for the agent.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With 0% schema description coverage, the description carries the parameter-semantics burden and does so well for the core workflow: it explains action values, mcp_id, tool_id, arguments, prompt_slug, prompt_body, and prompt_vars via the search/describe/invoke and prompt-library flows. However, some parameters remain unexplained, such as immediate, tier_slug, conversation, prompt_targets, and cancel_reason, so it is not fully exhaustive.
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 catalog and execution layer, with specific verbs like 'discovers MCPs by intent', 'returns one MCP's full profile', and 'invoke RUNS that tool.' It also distinguishes its scope from sibling tools by explaining that it spans catalog search, execution, installation, billing, and prompt-library operations.
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 direction: 'prefer invoke for a single/occasional use' and 'Use install only to make an MCP PERMANENT in the active toolkit.' It also provides the core flow (search → describe → invoke) and notes credential/payment link behaviors that tell the agent how to proceed on connect/checkout responses.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
pref_sp_aracariguama_nfs_consultarARead-onlyIdempotentInspect
Prefeitura SP Araçariguama: NFS-e (Nota Fiscal Eletrônica de Serviços), 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 |
|---|---|---|---|
| numero_nota | Yes | ||
| cnpj_prestador | Yes | ||
| codigo_verificacao | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already mark the operation as readOnly, idempotent, and non-destructive. The description adds non-redundant transparency about payment, lack of platform credentials, the non-confidential public nature of the data, and LGPD controller responsibility. It does not describe failure modes or return format, but the annotation layer already covers the safety profile.
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 front-loaded with the core purpose and then gives compact operational and legal context. It is a few sentences long, but each clause contributes non-obvious information about credentials, pricing, data sensitivity, and LGPD obligations.
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 parameterized query, the description covers purpose, access, cost, and data confidentiality well. However, with no output schema, it does not describe the returned data or common input validation requirements, leaving a notable gap for an agent deciding whether the tool's result satisfies a request.
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 provides no explanation of the three required parameters (cnpj_prestador, numero_nota, codigo_verificacao), their formats, or how they relate. With 0% schema description coverage, the description was expected to compensate, but it leaves the parameter semantics entirely to the schema property names.
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 consults NFS-e information from the official Prefeitura SP Araçariguama source. It uses a specific action (consulta) and resource (NFS-e), and it is easily differentiated from the generic sibling tools like connect, marketplace, and report_bug.
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 clear operational context: the tool is an official-source lookup, needs no platform credentials, and is billed per query with prepaid credit. It does not explicitly name alternatives or exclusions, but the context makes the intended use case clear enough.
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 read-only, destructive, and idempotent hints. The description adds useful behavioral context by explaining that the conversation array should contain recent messages to help reproduce the issue. It does not go into storage or external delivery, but the safety-relevant traits are already handled by 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 short sentences communicate the tool's purpose, scope, and key reproduction guidance with no filler or repetition. The structure is front-loaded and easy for an agent to parse.
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: one required string parameter, no output schema, and descriptive annotations. The description adequately covers what to provide and why, though it just mention what happens after submission or how the response is formatted. Given the low complexity, this is complete enough.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With 0% schema description coverage, the description must compensate for parameter docs. It adds meaningful semantics for 'conversation' (recent messages for reproduction) and indirectly clarifies 'message' as the content being reported. However, 'context' remains undefined, and the description calls conversation an array while the schema types it as a string, leaving format ambiguity.
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 ('Report') and explicitly names the targets: a bug, missing feature, or feedback. This clearly distinguishes it from sibling tools such as authenticate, connect, marketplace, and show_version.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives clear usage context: use this tool to report bugs, missing features, or send feedback, and include recent conversation messages for reproduction. It does not explicitly state alternative tools or exclusions, but siblings are unrelated enough that this is not a significant gap.
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=true, idempotentHint=true, and destructiveHint=false, so the safety profile is clear. The description adds the scope of 'platform and adapter versions' but does not disclose any further behavioral traits such as output format, latency, or whether network calls occur.
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 sentence that directly and fully conveys the tool's purpose. There is no redundant wording, filler, or repetition of the tool name.
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, idempotent version-inspection tool with rich annotations, the description is sufficient. No output schema exists, but the description's claim to show versions is clear enough for an agent to select and invoke the tool 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 schema description coverage is effectively complete since there are no properties to document. The description does not need to explain parameter semantics, so the baseline of 4 applies.
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') with a clear resource ('current MCP platform and adapter versions'). It is unambiguous and sufficiently distinct from sibling tools like 'toolkit_info' or 'connect', as it focuses specifically on version information.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
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, nor any exclusions or prerequisites. For a zero-parameter version tool this is somewhat less critical, but explicit usage context is still absent.
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 declare readOnlyHint=true, destructiveHint=false, and idempotentHint=true, which already inform the agent that this is a safe, repeatable read operation. The description adds value by specifying exactly what the returned state includes (installed MCPs, connection status, accounts, catalog tool count). This exceeds the minimum transparency and effectively communicates the output shape.
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, complete sentence that front-loads the key information ('Returns the current toolkit state') and then lists the details in a clean, readable manner. There is no fluff or repetition, making it exemplary in conciseness and structure.
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 zero parameters, no output schema, and a straightforward read-only purpose, this description covers everything needed: what the tool returns and the components of that return. There are no missing prerequisites or side-effects to state, as the annotations already communicate the safe, non-destructive nature. The description entirely fulfills its role.
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 provides 100% coverage by having no properties. The description appropriately focuses on the return value rather than parameters. Per the guideline, zero parameters receive a baseline of 4, and the description does not need to add parameter information.
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 function: 'Returns the current toolkit state' and then enumerates the specific information returned (installed MCPs, connection status, accounts, catalog tools count). This leaves no ambiguity about what the tool does, and it is distinct from 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?
The description is self-contained for a zero-parameter read-only tool)Skip the generic usage note. It clearly indicates the tool's purpose without requiring additional guidance. While it doesn't explicitly say 'use this to check status before connecting,' the intuitive semantics make the call natural. A higher score would require an explicit alternative or prerequisite mention, but none are needed here.
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 gradedqualityCmaintenanceRead-only MCP server for consulting municipal electronic service invoices (NFS-e) from Sumaré, SP, through official sources, with a single query tool.MIT
- AlicenseNot gradedqualityCmaintenanceConsulta de dados oficiais da Prefeitura SP Mogi das Cruzes (CPOM) em fonte oficial, com ferramenta de leitura para agentes de IA via HTTP.MIT
- AlicenseNot gradedqualityCmaintenanceEnables read-only consultation of electronic service invoices (NFS-e) from São Paulo city hall via an official source, using a single tool and pay-per-use credits.MIT
- AlicenseNot gradedqualityCmaintenanceAllows consultation of NFS-e (electronic service invoices) from the Brazilian Federal Revenue official source, with a single read-only tool.MIT
Your Connectors
Sign in to create a connector for this server.