SEFAZ RS: Débitos Veiculares
Server Details
SEFAZ RS: Debts Veiculares, official-source lookup. Platform-hosted, pay per query with prepaid cred
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- mcp-dir/sefaz_rs_debitos-mcp
- GitHub Stars
- 0
- Server Listing
- SEFAZ RS: Débitos Veiculares
TDQS
Scored across 7 tools
Each tool has a generally distinct function: authentication, connection status, marketplace operations, bug reporting, version info, toolkit state, and the actual SEFAZ lookup. Some overlap exists between connect, authenticate, and toolkit_info around connection/auth state, but descriptions mostly clarify boundaries.
Naming is mixed: generic English verbs like authenticate, connect, and show_version sit alongside snake_case names like report_bug, toolkit_info, and the Portuguese sefaz_rs_debitos_consultar. There is no consistent verb_noun pattern and the one domain-specific tool uses a different language and style.
Seven tools is a reasonable raw count, but only one tool relates to the server's stated purpose of SEFAZ RS vehicle debts. The other six are platform/marketplace management utilities, making the set feel inflated and misaligned with the server name.
For the apparent SEFAZ debts domain, only a single read-only consultation tool is present; there is no debt history, payment, export, or broader vehicle-related workflow. The platform meta-tools do not contribute to domain coverage, leaving significant functional gaps.
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?
Adds behavioral context beyond annotations: describes permanent vs session modes, the need to log in via browser, and that calling with no args returns a link. Annotations (readOnlyHint false, idempotentHint true) are consistent with this; the description enriches without 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?
Two sentences cover a multi-step process efficiently. The first fronts the action, the second details the two modes. While somewhat dense, every clause adds necessary 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 no output schema, the description adequately covers the workflow: how to obtain the token, how to use it (permanent vs session), and how to initiate login (with or without token). It lacks explicit response descriptions but remains complete for the core interaction.
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 has 0% description coverage, so the description must compensate. It explains that the 'token' parameter is a JWT for session login and that it is optional (used only when pasting). This clarifies both the format and conditional usage 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 with MCP.AI for IDE agents. It explains the login process (browser, token capture) and distinguishes from siblings like 'connect' by focusing on the specific authentication workflow with this server.
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?
Explicitly provides usage guidance: recommends adding the token to the server config for a permanent connection, or pasting it for session-only login. It also clarifies two calling conventions: with a token argument or with no arguments to retrieve a link.
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?
Despite annotations already indicating readOnly/idempotent, the description adds valuable behavioral details: it discloses the conditional return values based on authentication statehare. It does not contradict annotations and explains exactly what the tool will return, which exceeds the baseline.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise, two sentences, front-loaded with the main purpose, and explains the two possible outcomes efficiently. Every sentence adds value; no fluff or repetition.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with no parameters and no output schema, the description adequately covers the behavior, including the two distinct return scenarios. It doesn't elaborate on potential errors or side effects (but none expected due to readOnlyHint). Sibling tools like 'authenticate' might be relevant, but the context is sufficient for basic usage. A perfect score would require more explicit guidance on edge cases, but this is close.
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?
There are zero parameters)Skip, and schema description coverage is 100% (no properties). Per the rule, 0 params gives a baseline of 4. The description doesn't add parameter info (none needed). No issues.
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 verb 'Returns' and the resource 'connection status and URLs'. It distinguishes from sibling tools by specifying the exact output (authenticated:true and empty pending[] when connected, connect_url when missing credentials). This is specific and unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explains what the tool does and under what conditions it returns certain results, providing clear context. However, it does not explicitly mention when to use it versus alternatives like 'authenticate', although the purpose is inferred. No exclusions or alternatives are stated, so it falls short of a 5.
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 sparse (readOnlyHint=false, openWorldHint=true, idempotentHint=false, destructiveHint=false), leaving the description to carry the behavioral burden, and it does so richly. It discloses that invoke runs one-off without installing, returns a connect link when credentials are needed and a checkout/top-up link when the wallet is empty, requires owner/admin for writes, and flags installed_in_toolkit vs installed_in_workspace. This adds safety and side-effect context far beyond the bare annotations, with no contradiction.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is roughly 430 words in a single unbroken paragraph with no headers, bullets, or section breaks. While nearly every sentence is information-dense and earns its place, the wall-of-text structure is hard to parse for an agent that needs to quickly locate the action for a given intent. Given the tool's complexity some length is justified, but the formatting does not front-load or organize the critical distinctions.
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?
Complexity is very high (23 params, 14 actions, no output schema, no per-param docs), and the description covers the primary search→describe→invoke flow, the install-vs-invoke distinction, billing/credential handling, permission requirements, and the prompt library well. But it never mentions the 'resume' action from the enum, leaves return/output format entirely unspecified, and omits semantics for immediate, tier_slug, and the prompt_vars/prompt_targets mechanics. Adequate for the headline flows but incomplete for full coverage.
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 23 undocumented parameters. It substantially explains the action enum by narrating all 14 values (search, describe, install, unsubscribe, etc.) in context, and it clarifies tool_id and mcp_id roles. However, the remaining ~19 parameters (limit, immediate, tier_slug, prompt_vars, prompt_targets, cancel_reason, report_context, request_details, etc.) receive no semantic explanation in either the schema or the description, leaving a large gap for a 0% coverage case.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a specific, multi-faceted statement: 'The official mcp.ai marketplace — the in-platform catalog of every MCP/tool, AND the way to run them.' It clearly defines the resource (MCPs/tools + prompt library) and the verbs (catalog, discover, run, install). It distinguishes itself from siblings by contrasting with authenticate/connect/report_bug/toolkit_info and by explicitly separating its MCP catalog function from the prompt-library feature, which no sibling covers.
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, actionable flow guidance: 'Core flow: action=search discovers MCPs by intent → describe returns one MCP's full profile... so you pick the right tool_id → invoke RUNS that tool.' It provides explicit when-not guidance by contrasting invoke vs install: 'Use install only to make an MCP PERMANENT in the active toolkit...; prefer invoke for a single/occasional use.' It even names the alternatives and the retry behavior on credential/payment links, plus permission prerequisites for writes.
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 indicate non-read-only (readOnlyHint: false) and idempotent (idempotentHint: true), so the description isn't the sole carrier of safety info. It adds that the conversation array is needed for reproduction, implying data will be transmitted, but it doesn't explain side effects, persistence, or confirmation. This adds some context but leaves behavioral gaps.
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: first states the purpose, second gives a specific instruction. No redundant content, front-loaded with action, and 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?
The tool is simple, but the description omits parameter details and doesn't mention any return behavior or confirmation. Given there's no output schema and annotations are minimal, the description could be more complete, especially for a tool that likely sends data. It's adequate for a basic bug-report tool but leaves gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description should explain each parameter. It only mentions the 'conversation array' (corresponding to the 'conversation' parameter), leaving 'message' and 'context' unexplained. The required 'message' parameter, the core input, lacks any description of its format or role. This is a significant 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 action: report a bug, missing feature, or send feedback. It also instructs to include the conversation array for reproduction, which reinforces the purpose. Sibling tools like authenticate or connect are unrelated, so there's no ambiguity.
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 explicitly mentions the scenarios (bug, missing feature, feedback) and provides a guideline to include the conversation array for reproduction. While it doesn't list exclusions or alternatives, the sibling set makes the appropriate usage obvious, so the context is clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
sefaz_rs_debitos_consultarARead-onlyIdempotentInspect
SEFAZ RS: Débitos Veiculares, 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 |
|---|---|---|---|
| placa | Yes | ||
| renavam | Yes | ||
| login_cpf | No | ||
| login_senha | No | ||
| pkcs12_cert | No | ||
| pkcs12_pass | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already mark the operation as read-only and idempotent. The description adds behavioral context beyond that: no platform credentials needed, pay-per-query with prepaid credit, data is not confidential, and the client is LGPD controller. This enriches safety and legal expectations 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 a compact paragraph of four sentences, each contributing distinct value: purpose, hosting/payment, data source nature, and LGPD responsibility. It is front-loaded with the core purpose and avoids redundancy, though slightly longer than the minimal ideal.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a read-only query tool with annotations and a clear purpose, the description covers the essentials (official source, payment model, legal role). However, it omits any guidance on the optional authentication parameters (login/pkcs12) and the expected return structure, which leaves gaps given the rich schema and no output schema.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, and the description provides no information about the six parameters (placa, renavam, login_cpf, login_senha, pkcs12_cert, pkcs12_pass). Since the schema is bare and the description must compensate for low coverage, this is a critical gap.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with 'SEFAZ RS: Débitos Veiculares, consulta em fonte oficial', clearly stating the tool queries vehicle debts from an official source. The verb 'consulta' and specific resource distinguish it from generic platform sibling tools like authenticate or 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 provides clear context: it queries official Brazilian sources available to citizens, is hosted by the platform, and requires prepaid credit per query. It implies when to use this tool but does not explicitly name alternatives or exclusions, slightly lowering from a perfect score.
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?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is clear. The description adds the specific scope (MCP platform and adapter versions) but doesn't disclose behavior beyond that, such as whether it returns structured JSON or what 'adapter' exactly refers to. Given the annotations cover the key behavioral traits, a 3 is appropriate — it adds some context but not rich detail.
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 extremely concise — a single sentence, front-loaded with the main action. It contains no filler or redundancy, making it highly efficient for an agent to parse. It fully deserves a 5 for appropriate sizing.
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: no parameters, no output schema, and rich annotations that cover safety and idempotency. The description provides the essential context (what versions are shown) and is complete enough for an agent to understand the purpose. It doesn't need more detail about return format because there's no output schema, but the version names are clear. A 4 is justified given the low complexity and good annotations.
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 description doesn't need to explain parameter meaning. The schema is empty and coverage is 100%, meaning there is nothing undocumented. According to the rubric, 0 params = baseline 4, and the description correctly implies no input is needed, so it earns a 4.
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: 'Show the current MCP platform and adapter versions.' It specifies the verb 'show' and the resource (versions), and it is distinct from sibling tools like authenticate or connect. A slight, but not fatal, gap is that it doesn't explicitly mention what is NOT shown (e.g., toolkit-specific details), but it's clear enough.
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 context: it's a read-only informational tool with no parameters, so the agent can infer it's safe to call anytime. However, it provides no explicit guidance on when to use it versus alternatives like toolkit_info, which might also provide version-related information. With no exclusions or alternatives mentioned, it's a minimal but acceptable guidance.
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 idempotentHint: true, so the description's safety profile is well-covered. The description adds value by disclosing exactly what information is returned (installed MCPs, status, accounts, catalog counts), offering behavioral context beyond the schema. 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 a single, well-structured sentence that front-loads the primary action ('Returns the current toolkit state') and then lists the key data points. Every word contributes meaning, with no fluff 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 informational tool with no output schema, the description thoroughly covers what the tool returns: installed MCPs, their connection status, connected accounts, and catalog tool counts. This is sufficient for an agent to decide when to call it, and no critical information is missing given its simplicity.
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?
There are zero parameters, and schema coverage is 100% (vacuously). The description correctly does not attempt to explain parameters. With no parameters, the baseline is 4, as there is no need for additional compensation.
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 defines the resource as 'the current toolkit state' with detailed specifics (installed MCPs, connection status, accounts, catalog counts). This clearly distinguishes it from sibling tools like 'show_version' or 'connect', making its purpose unmistakable.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies use when you need to inspect toolkit state, but it does not explicitly state when to use it over alternatives or mention any exclusions. There is no direct comparison to siblings or 'use this when' guidance, so it relies on inference rather than explicit direction.
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: Debts de Vehicle, official-source lookup. Platform-hosted, pay per query with prepaid cred
DETRAN RS: Vehicle, official-source lookup. Platform-hosted, pay per query with prepaid credit.
SEFAZ RS: Clearance Certificate (Debts), official-source lookup. Platform-hosted, pay per query with
DETRAN RS: Traffic Fines, official-source lookup. Platform-hosted, pay per query with prepaid credit
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceA hosted read-only MCP server that enables querying IPVA (vehicle property tax) information from the official SEFAZ Bahia source, with prepaid credit-based usage and no platform credentials.MIT
- AlicenseNot gradedqualityCmaintenanceProvides a read-only MCP tool to query IPVA (vehicle tax) information from the official Ceará state revenue service (SEFAZ) via prepaid credits.MIT
- AlicenseNot gradedqualityCmaintenanceEnables read-only consultation of RENAJUD judicial vehicle restrictions from an official source, with pay-per-use prepaid credits.MIT
- AlicenseNot gradedqualityCmaintenanceMCP server for querying official Brazilian vehicle data (SENATRAN), offering a read-only consultation tool via hosted API with prepaid credits.MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.