SEFAZ SP: Cupom Fiscal Eletrônico (SAT) - Detalhado
Server Details
SEFAZ SP: Cupom Fiscal Eletrônico (SAT) - Detalhado, official-source lookup. Platform-hosted, pay pe
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- mcp-dir/sefaz_sp_cfe_completa-mcp
- GitHub Stars
- 0
- Server Listing
- SEFAZ SP: Cupom Fiscal Eletrônico (SAT) - Detalhado
TDQS
Scored across 7 tools
The marketplace tool is a grab-bag of search, run, install, billing, and feedback actions, making it hard to tell it apart from dedicated tools like report_bug and connect. authenticate and connect also have overlapping auth-related responsibilities. The single SEFAZ query tool stands out as the only domain-specific one, but the rest blur together.
All tool names use lowercase snake_case, which is consistent, but the style varies between single verbs (connect, authenticate), single nouns (marketplace), and compound names. sefaz_sp_cfe_completa_consultar is a long, descriptive exception that breaks the otherwise short naming pattern.
Seven tools is well within the ideal range and reasonable for a platform-managed MCP toolkit. It's slightly bloated by platform administration tools that don't serve the SEFAZ-specific purpose, but the raw count itself is appropriate.
Despite the server being named after the SEFAZ SP CF-e (SAT) tax document service, only 1 of 7 tools actually queries that domain. There is no way to list, update, delete, or otherwise manage CF-e data, so the core domain surface is severely underrepresented.
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 |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description discloses that the tool can return a login link (when called with no args), and explains the difference between permanent (config header) and session-only authentication, which goes beyond the annotations. It does not conflict with the idempotentHint=true annotation; repeated calls with the same token should be safe. It also implies state change (authentication) consistent with readOnlyHint=false.
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 functional but slightly wordy, providing context about IDE agents (Cursor, etc.) that may not be essential. It could be more concise, but all sentences serve a purpose in explaining the authentication flow.
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 one-parameter tool with no output schema, the description covers the key aspects: how to obtain the token, the two authentication modes, and the parameter usage. It does not describe the return value, but that is less critical here. The guidance is sufficient for an agent to 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 input schema defines a single optional 'token' string with no description, but the description compensates by explaining what the token is ('<jwt>') and how to use it, as well as the behavior when omitted (returns a link). This adds sufficient meaning beyond the 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 with MCP.AI by either returning a browser login link (no args) or accepting a JWT token for session login. It also mentions the alternative of adding the token to server config for a permanent connection. While it doesn't explicitly contrast with sibling 'connect', the verb 'authenticate' and the login context make the purpose clear.
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 instructions: call with no args to get a login link, or with a token for session-only login, and recommends adding the token to the server config as an Authorization header for a permanent connection. It thus provides clear when-to-use guidance for the different invocation modes, though it doesn't discuss alternatives among sibling tools.
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 | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, and non-destructive behavior. The description adds value by specifying the response states: authenticated:true with empty pending[], or connect_url plus per-install URLs when credentials are missing. This provides useful behavioral context beyond the annotations without contradicting them.
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, and contains no filler or redundant restating of the tool name or annotations. Every clause contributes meaningful behavioral detail.
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 status tool, the description provides enough about both success and missing-credential states, including key output fields. It does not fully enumerate an output schema, but no output schema is present, and the behavior is simple enough that the description is largely 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 and schema coverage is effectively complete, so the description cannot add parameter-level meaning. The baseline for zero parameters is 4, and the description appropriately focuses on output rather than 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 uses the specific verb 'Returns' and clearly identifies the resource: connection status and URLs. It differentiates from siblings like authenticate by focusing on status reporting rather than performing authentication.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
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 its output in different connection states, but it never explicitly states 'use this when you need to check whether providers are connected' or explains when not to use it in favor of authenticate. Guidance is inferred rather than explicit.
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 |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations are minimal (readOnlyHint=false, no idempotent/destructive hints), so the description carries the full burden and delivers richly. It discloses that invoke runs a tool one-off without installing it ('without adding the MCP to the toolkit and without bloating the tool list'), that credential/payment gaps return connect/checkout links requiring user action then retry, that install is permanent, and that write operations need workspace owner/admin. This significantly extends behavioral knowledge beyond the structured fields. 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?
This is a dense ~450-word single paragraph with no bullets, line breaks, or sectioning, making it hard to scan. It front-loads the core purpose and flow well, but the invoke explanation is redundant ('runs it pontualmente (one-off)' repeated with 'without adding... without bloating'), and the PROMPT LIBRARY section is appended as a trailing clause. Every sentence carries some information, but the wall-of-text format undermines usability for an agent parsing on the fly.
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 of this complexity (23 params, 14 actions, no output schema, sparse annotations), the description covers the workflow thoroughly: the search→describe→invoke pipeline, install vs invoke tradeoffs, billing/auth links, and the prompt-library sub-flow. However, it omits parameter semantics (limit, tier_slug, prompt_targets, cancel_reason, etc.) and never explains the return value shape — with no output schema, the agent cannot know what invoke or describe returns on success beyond the connect/checkout link mentions. Adequate for workflow, incomplete on data contract.
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 fully, but it does not. It thoroughly explains the action enum (all 14 values are described in prose) and implies mcp_id/tool_id/arguments through the flow narrative, but the remaining ~17 parameters (limit, message, immediate, tier_slug, conversation, cancel_reason, cancel_comment, prompt_body, prompt_slug, prompt_tool, prompt_title, request_name, prompt_targets, report_context, request_details, prompt_description, prompt_category) are completely unexplained in both schema and description. The action field is well-served, but the bulk of parameters are opaque.
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 establishes this as 'the official mcp.ai marketplace — the in-platform catalog of every MCP/tool, AND the way to run them,' with a defined core flow (search → describe → invoke). It names specific capability intents ('find an MCP that does X', 'consulta um CPF') which makes the purpose concrete. However, the tool spans 14 actions plus a prompt library, so the purpose is somewhat diffuse rather than a single verb+resource; the description handles this well overall but doesn't crisply state 'this tool performs one job'.
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?
Exceptionally explicit guidance is provided: the core flow is spelled out step-by-step ('action=search discovers MCPs by intent → describe returns one MCP's full profile... → invoke RUNS that tool'). It gives a clear decision rule for invoke vs install ('Use install only to make an MCP PERMANENT... prefer invoke for a single/occasional use'), states auth requirements ('Writes... require workspace owner/admin'), and covers the retry flow when credentials or payment are needed. It also tells when to use list_tools, subscribe/cancel, report_bug, and request_mcp, including the fallback 'request_mcp asks us to build a NEW MCP when nothing fits.'
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 | [] |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already provide the basic behavioral markers: not read-only, idempotent, and not destructive. The description adds that the conversation is included with the report, which is useful context, but it does not mention authentication requirements, response behavior, or other side effects.
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 short and front-loaded: purpose first, then one relevant usage note. Every sentence contributes information without repetition or filler.
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 simple and has annotations, but the complete lack of parameter documentation in the schema demands more from the description. It covers the reproduction aspect but leaves the required message and optional context underspecified, and the conversation format is ambiguous.
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 tool description must compensate for all parameters. It only hints at the conversation parameter, and does so in a misleading way by calling it an array when the schema defines a string defaulting to '[]'. It does not explain the required message or the context parameter.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description names concrete actions: report a bug, request a missing feature, or send feedback. This goes beyond the tool name and clearly distinguishes it from sibling tools like show_version and marketplace.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It gives clear reporting context and instructs the caller to include recent conversation messages for reproduction. It does not explicitly compare against alternative tools, but no sibling appears to serve the same bug/feedback purpose.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
sefaz_sp_cfe_completa_consultarARead-onlyIdempotentInspect
SEFAZ SP: Cupom Fiscal Eletrônico (SAT) - Detalhado, 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 |
|---|---|---|---|
| chave | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, destructiveHint=false, so the safety profile is clear. The description adds valuable context: it's hosted by the platform, requires no platform credentials, is pay-per-query with prepaid credits, and clarifies data is not confidential. It also addresses LGPD compliance, which is useful behavioral context beyond annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single paragraph but packs essential information: what it does, source, hosting, credentials, pricing, data nature, and LGPD. It's somewhat dense but not verbose. Could be slightly more structured, but it's efficient.
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 simplicity (1 param, no output schema), the description covers the key aspects: purpose, data source, access method, and legal context. It doesn't describe return format, but with no output schema, that's a minor gap. The description is adequate for an agent to understand what this tool does and its constraints.
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 there's only one parameter 'chave' (key). The description doesn't explain what 'chave' means (likely the CF-e access key), but with a single parameter and the tool name indicating CF-e consultation, the meaning is fairly inferable. However, the description could have explicitly stated that 'chave' is the CF-e access key.
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 queries official SEFAZ SP source for detailed Electronic Fiscal Receipt (SAT) information. It distinguishes itself by specifying 'Detalhado' (detailed) and 'consulta em fonte oficial', though it doesn't explicitly contrast with sibling tools (which are mostly unrelated).
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 querying official Brazilian tax data, and mentions it's the same data available to citizens, but doesn't explicitly state when to use this vs alternatives or when not to use it. Sibling tools are unrelated, so no direct comparison is provided.
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 | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, establishing this is a safe, read-only operation. The description reinforces that by saying 'Show' (not 'change' or 'modify'). It adds no contradictory information and is fully aligned with annotations, which is sufficient for a simple version query.
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, clear sentence with no superfluous words. It front-loads the action ('Show') and specifies the exact scope of information, making it extremely concise and structured appropriately.
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 has no parameters, no output schema, and is a simple informational read, the description is complete. It states what versions are returned, and the annotations cover safety. There is no missing information that would hinder correct 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 tool has zero parameters, so the baseline is 4 per the rubric. The description doesn't need to elaborate on parameters, as there are none to explain. It adds value by stating what the output covers (platform and adapter versions), which helps the agent know what to expect.
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: showing the current MCP platform and adapter versions. It uses a specific verb ('Show') and identifies the resource (versions), which is distinct from siblings like authenticate or connect. It could be slightly more specific about what 'adapter' refers to, but the purpose is clear.
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 it (when checking the environment/version), but it doesn't explicitly state exclusions or alternatives among siblings. Given no parameters and a simple informational purpose, the context is clear enough, though it could benefit from an explicit note like 'use when you need to verify compatibility or version details.'
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 | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and destructiveHint=false, so safety is clear. The description adds valuable context about the content of the response, specifying what aspects of toolkit state are returned. This goes beyond the annotations, though it doesn't discuss side effects or auth requirements (which are irrelevant for a read-only tool).
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 core action and lists all relevant output details. No unnecessary words or redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a zero-parameter read-only tool with no output schema, the description fully specifies what the agent can expect to receive. It covers installed MCPs, connection status, accounts, and catalog tool counts—everything needed to understand the tool's return value and purpose.
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 implies that no parameters are needed, and there's nothing more to explain about parameters.
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' with a clear resource 'current toolkit state' and enumerates the exact components (installed MCPs, connection status, accounts, catalog tool counts). This clearly distinguishes it from sibling tools like authenticate, connect, or 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 implicitly communicates when to use this tool: whenever the agent needs to inspect the toolkit's state. However, it does not explicitly mention when not to use it or suggest alternatives, but that's acceptable given the simplicity of the tool and clear context from the description.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
No tool schema history has been recorded yet.
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity – fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user, then choose Claim with GitHub. An organization namespace such asio.github.acme/serveralso needs that organization to have installed the Glama AI GitHub App and approved its permissions, because GitHub discloses organization membership only to apps it has installed. Use HTTP or DNS when it has not.HTTP challenge – works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge – works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
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
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
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 Connectors
SEFAZ SP: Cupom Fiscal Eletrônico (SAT), official-source lookup. Platform-hosted, pay per query with
SEFAZ CE: Cupom Fiscal Eletrônico (SAT), official-source lookup. Platform-hosted, pay per query with
SEFAZ SP: NFC-e, official-source lookup. Platform-hosted, pay per query with prepaid credit.
Receita Federal NFS-e: Notas Recebida (Detalhes), official-source lookup. Platform-hosted, pay per q
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceMCP server for querying official SEFAZ SP electronic receipt (SAT CF-e) data, read-only, hosted with prepaid per-use credits.MIT
- AlicenseNot gradedqualityCmaintenanceEnables users to query official SEFAZ CE Cupom Fiscal Eletrônico (SAT) data through a hosted, read-only MCP server with prepaid per-query credits.MIT
- AlicenseNot gradedqualityCmaintenanceRead-only MCP server for querying Brazilian SEFAZ SP NFC-e tax documents from official sources, with a single tool and prepaid usage.MIT
- AlicenseNot gradedqualityCmaintenanceEnables querying official São Paulo state electronic invoices (NFE) data from SEFAZ SP via a read-only MCP server, using prepaid credits and no platform credentials.MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.