ECRVSP ATPV (Intenção de Venda): Incluir
Server Details
ECRVSP ATPV (Intenção de Venda): Incluir, official-source lookup. Platform-hosted, pay per query wit
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- mcp-dir/ecrvsp_atpv_incluir-mcp
- GitHub Stars
- 0
- Server Listing
- ECRVSP ATPV (Intenção de Venda): Incluir
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/5 across 7 of 7 tools scored. Lowest: 2.2/5.
The tools are a mix of platform-level utilities (authenticate, connect, marketplace, report_bug, show_version, toolkit_info) and a single domain-specific tool (ecrvsp_atpv_incluir_consultar). The domain tool has a verbose and ambiguous name that overlaps with the server name, and the platform utilities have overlapping purposes (e.g., connect and toolkit_info both report connection state; marketplace and authenticate both handle credentials).
The tool names follow no consistent convention. Some use a single verb (connect, authenticate, marketplace), others use snake_case (report_bug, show_version), and one uses a complex multi-part name with Portuguese terms (ecrvsp_atpv_incluir_consultar) that doesn't match the rest. The names are a mix of verbs, nouns, and abbreviations with no clear pattern.
Seven tools is a borderline count. The server combines a generic MCP platform toolkit with a single domain-specific query tool, so the count feels reasonable but not cohesive. The platform utilities (authenticate, connect, marketplace, report_bug, show_version, toolkit_info) dominate, leaving little room for domain tools.
For a server named 'ECRVSP ATPV (Intenção de Venda): Incluir', only one tool (ecrvsp_atpv_incluir_consultar) actually performs a domain operation. There is no create, update, delete, or list operation for the domain, despite the 'Incluir' (include) hint. The rest are generic platform utilities unrelated to the core purpose, so the domain surface is severely incomplete.
Available Tools
7 toolsauthenticateAIdempotentInspect
MCP.AI for IDE agents (Cursor, etc.): log in in the browser, copy the access token. Best: add it to this server's config as a header Authorization: Bearer <token> for a permanent, non-expiring connection. Or paste it here for a session-only login: call with { token: "" } after the user pastes, or with no args to get the link.
| Name | Required | Description | Default |
|---|---|---|---|
| token | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare idempotentHint=true and destructiveHint=false, and the description adds meaningful behavioral context: browser login flow, permanent vs session-only token handling, and the non-expiring nature of the config header approach. It does not mention token storage or error behavior, but the description and annotations together give a solid transparency profile 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?
The description is three sentences with a logical flow: purpose, recommended permanent approach, and session-only fallback. It is slightly wordy but every sentence adds distinct, actionable information. The use of 'Best:' and 'Or' structures the decision clearly.
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 string parameter and no output schema, the description covers the main behavior, both invocation modes, and the expected workflow. It lacks explicit return-value/error details, but the auth flow is sufficiently complete for an agent to invoke it correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema only defines an optional 'token' string with no description, so the description carries the full explanatory burden. It clearly explains that the token is a JWT pasted by the user, and that omitting arguments returns the login link. This fully compensates for the 0% schema description coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states that the tool authenticates the user for MCP.AI by logging in through the browser and obtaining an access token. It specifies the two concrete actions: outputting a login link or accepting a pasted JWT token. This differentiates it from siblings like connect or marketplace by focusing specifically on authentication flow.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives explicit usage guidance: prefer adding the token as a permanent Authorization header in the server config, or use a session-only login by pasting the JWT. It also explains when to call with no args (to get the link) versus with a token. This is an exemplary level of practical instruction.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
connectARead-onlyIdempotentInspect
Returns connection status and URLs. When all providers are connected, returns authenticated:true and empty pending[]. When credentials are missing, returns connect_url for the toolkit and per-install URLs.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, and non-destructive. The description adds value by explaining the return values in different states (authenticated true vs connect_url), which is not covered 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?
The description is two sentences, clear, and front-loaded with the primary purpose. Every sentence adds value: the first states the action and the second explains conditional return values.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with no parameters, no output schema, and simple functionality, the description covers the key states (authenticated vs pending) and the response structure (connect_url). It's adequate for an agent to know what to expect. Could mention that it's a status check only, but annotations already imply read-only.
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 doesn't need to explain parameters but provides meaningful output semantics related to the connection status.
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' with specific behavioral details about authenticated state and pending connections. It differentiates from siblings like 'authenticate' by focusing on status rather than establishing connections, making the purpose 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?
It describes two scenarios—all providers connected vs missing credentials—providing context on expected outcomes. However, it does not explicitly state when to use this over alternatives like 'authenticate', though the read-only nature is implied.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
ecrvsp_atpv_incluir_consultarCRead-onlyIdempotentInspect
ECRVSP ATPV (Intenção de Venda): Incluir, 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 |
|---|---|---|---|
| a3 | Yes | ||
| placa | Yes | ||
| a3_pin | Yes | ||
| chassi | Yes | ||
| renavam | Yes | ||
| hodometro | Yes | ||
| login_cpf | Yes | ||
| login_senha | Yes | ||
| venda_valor | Yes | ||
| comprador_uf | Yes | ||
| comprador_cep | Yes | ||
| comprador_nome | Yes | ||
| comprador_email | Yes | ||
| comprador_bairro | Yes | ||
| comprador_numero | Yes | ||
| comprador_cpf_cnpj | Yes | ||
| proprietario_email | Yes | ||
| comprador_municipio | Yes | ||
| comprador_logradouro | Yes | ||
| comprador_complemento | No | ||
| proprietario_cpf_cnpj | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description explicitly states 'Incluir' (include/insert) which implies a write operation, but the annotations declare readOnlyHint: true. This is a direct contradiction. Therefore, the description fails to align with the annotation and receives a score of 1.
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 to the point, but it is dense and mixes technical, legal, and business information in one sentence. It covers the payment model and data source but lacks clear structure and front-loading of the core action. No redundancy, but could be better organized.
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 21 required parameters, no output schema, and a tool that appears to both create and query, the description is woefully incomplete. It fails to explain the workflow (how 'incluir' and 'consultar' interact), what credentials are needed (a3, a3_pin, login_senha), or what the response contains. The tool's complexity demands much more detail.
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 zero explanation of the 21 parameters. With 0% schema coverage, the description must compensate but does not. The prefixes (comprador_, proprietario_) offer only weak hints, and the description adds no semantic meaning beyond parameter 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's domain (Brazilian vehicle sale intention/ATPV) and that it includes and queries official sources. It distinguishes itself from generic platform tools (authenticate, connect, etc.) by naming the specific vehicle-related purpose. However, the dual action (incluir and consultar) is not fully clarified—it could be a write or read operation or both, and the description doesn't explicitly separate these behaviors.
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 mentions it is hosted by the platform, uses pre-paid credits, and queries official Brazilian sources, which gives some usage context. However, there is no explicit guidance on when to use this tool versus alternatives, nor any conditions or exclusions. It doesn't state typical scenarios or 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?
The description adds significant behavioral context beyond the annotations (readOnlyHint=false, destructiveHint=false): invoke's one-off behavior without toolkit bloat, the connect-link-on-auth and checkout-link-on-empty-wallet retry semantics, 'Writes (install/uninstall/subscribe/cancel and the one-off install behind invoke) require workspace owner/admin', and the installed_in_toolkit vs installed_in_workspace distinction. No contradiction with annotations — uninstall/cancel being non-destructive flags is consistent with the description not claiming data destruction. Credential/permission requirements are disclosed in 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 250+ word description is front-loaded with the core purpose and three-step flow, then branches to invoke's key behavior, install vs invoke, auxiliary actions, and the prompt library. For 23 params and 14 actions, the density is justified — every sentence covers a distinct actionable concept. Minor redundancy: 'pontualmente' repeats the one-off idea already stated, and the prompt-library section (while necessary) adds a second semantic domain that lengthens the text.
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 extreme complexity (23 params, 14 actions, no output schema, no required params), the description is remarkably thorough: it covers auth requirements, persistence semantics (invoke vs install), billing/retry flows, installed flags, and the entire prompt sub-system. Gaps: the 'resume' action is never mentioned, and exact invocations/response formats for search results are assumed rather than specified. Still, a tool this complex rarely gets such complete prose coverage — only the resume gap and lack of search-return description hold it back from a 5.
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 coverage, the description compensates strongly: it maps the action enum to real behaviors (describe returns 'one MCP's full profile... so you pick the right tool_id → invoke'), explaining how tool_id, arguments, mcp_id, and query relate. The prompt-library actions (search_prompts, get_prompt, publish_prompt) are also given meaning. However, roughly half the params (prompt_title, prompt_category, request_details, cancel_comment, tier_slug, immediate, conversation) are not individually explained in prose, relying on inference from action context. Strong coverage for the core flow, partial for the periphery.
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 role: 'The official mcp.ai marketplace — the in-platform catalog of every MCP/tool, AND the way to run them' with a specific search→describe→invoke flow. However, it is an overloaded dispatch tool covering 14 actions across two domains (MCP marketplace AND a prompt library), which blurs a single-purpose identity. The name 'marketplace' plus the prompt-library extension dilutes the core purpose.
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?
Excellent when/when-not guidance: 'prefer invoke for a single/occasional use', 'Use install only to make an MCP PERMANENT', 'list_tools lists what is callable right now', and explicit mapping of each action (subscribe/cancel→billing, report_bug→feedback, request_mcp→build new). It also names the alternative discovery verbs ('find an MCP that does X') so the agent knows what queries trigger search. This is textbook sibling differentiation.
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 indicate idempotent behavior and no destructive side effects. The description does not contradict these but also adds little beyond the input guidance. It doesn't disclose possible side effects like creating a ticket or sending an email, but given idempotentHint is true)Skip. It adds the context that conversation is needed for reproduction, which is a mild behavioral hint but not substantial.
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 that front-load the purpose and provide one key usage instruction. No fluff; every part adds value.
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 feedback tool with 3 parameters and no output schema, the description is adequate. It explains the core action and the reason for the conversation parameter, though it doesn't mention outcomes or optional context. Overall sufficient.
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 explain parameters. It explains the conversation parameter's purpose but leaves 'message' and 'context' implicit. Message is inferable as the bug/feedback content, but context is not addressed. Partial compensation for missing schema descriptions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Report a bug, missing feature, or send feedback.' It uses a specific verb (report/send) and specific objects (bug, missing feature, feedback), and is clearly distinct from sibling tools like authenticate, connect, or 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 tells when to use the tool (report a bug, missing feature, or send feedback) and gives a specific instruction to include the conversation array for reproduction. However, it does not explicitly mention when not to use it or provide alternatives, though the context is clear enough.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
show_versionARead-onlyIdempotentInspect
Show the current MCP platform and adapter versions.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations declare readOnlyHint=true and idempotentHint=true, so the description does not need to restate safety. It adds value by specifying the output scope (both platform and adapter versions), which is beyond the structured annotation data. No contradictions found.
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, front-loaded sentence with zero wasted words. It conveys the entire purpose immediately and is appropriately concise for a read-only informational tool.
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 (no params, no output schema, simple read-only purpose), the description fully covers what the agent needs to know. It names the exact information provided (MCP platform and adapter versions), making it complete for selection and invocation.
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 description coverage is 100% (empty properties). The description adds nothing about parameters because there are none, which meets the baseline for parameter semantics.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb 'show' and names the resource ('current MCP platform and adapter versions'). It clearly distinguishes itself from sibling tools like marketplace or connect by focusing 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?
No explicit guidance on when to use this tool versus alternatives. However, given the simplicity of the tool, the intended use case is implied (checking platform compatibility or version details). It lacks any exclusion criteria but is not misleading.
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?
The annotations already declare this as a read-only, idempotent, non-destructive operation. The description adds transparent output details beyond those annotations, specifying what state is reported and how catalog tools are counted, which helps set expectations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single, front-loaded sentence states the purpose first ('current toolkit state') and then adds details in a compact list. Every clause contributes useful information with no 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 informational tool, the description sufficiently covers what the caller receives: installed MCPs, connection status, accounts, and catalog tool counts. It lacks detailed formatting/type info, but the output is simple enough that this is not a meaningful 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?
The tool has zero parameters, so parameter descriptions are unnecessary. The baseline of 4 applies because there is nothing the description needs to add to 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 states a specific verb ('Returns') and resource ('current toolkit state'), then enumerates the exact output categories: installed MCPs, connection status, accounts, and exposed catalog tool counts. This clearly distinguishes it from sibling tools like authenticate and 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 clearly implies this tool is for inspecting the current toolkit state, which is distinct from the action-oriented sibling tools. It does not explicitly list exclusions or alternatives, but the intended usage context is unambiguous.
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 gradedqualityCmaintenanceConsulta em fonte oficial ECRVSP ATPV (Intenção de Venda) via um servidor MCP somente leitura, hospedado e pago por uso com créditos pré-pagos. Funciona com qualquer cliente MCP compatível com HTTP, como Claude, Cursor e VS Code.MIT
- AlicenseNot gradedqualityCmaintenanceRead-only MCP server that provides a tool for consulting official ECRVSP ATPV (Intenção de Venda) data, with pre-paid pricing and no credentials required.MIT
- AlicenseNot gradedqualityCmaintenanceEnables querying vehicle registration information (BIN RENAVAM) from the official ECRVSP source. Read-only, prepaid per use, works with any MCP client.MIT
- AlicenseNot gradedqualityCmaintenanceConsulta em fonte oficial para ECRVSP Documentos: Escolha da Placa, permitindo consultas via MCP.MIT
Your Connectors
Sign in to create a connector for this server.