SINTEGRA: MS
Server Details
SINTEGRA: MS, official-source lookup. Platform-hosted, pay per query with prepaid credit.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- mcp-dir/sintegra_ms-mcp
- GitHub Stars
- 0
- Server Listing
- SINTEGRA: MS
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4.2/5 across 7 of 7 tools scored. Lowest: 3.1/5.
Each tool serves a distinct purpose: authenticate handles login, connect reports status, marketplace is the central hub for searching and executing MCPs, report_bug sends feedback, show_version displays versions, sintegra_ms_consultar performs a specific data lookup, and toolkit_info summarizes the environment. The only potential overlap is between authenticate and connect, but they are clearly separated by actions (login vs. check status). The marketplace tool is broad but has a well-defined scope, so misselection is unlikely.
Naming is mixed: some tools use verb_noun (show_version, toolkit_info), some are single verbs (authenticate, connect), and marketplace is a noun. Additionally, sintegra_ms_consultar includes a proper name and a Portuguese verb, deviating from the pattern. While all names are readable, the inconsistency is noticeable and could confuse agents expecting a uniform convention.
Seven tools is a reasonable count for a platform that combines a marketplace, user management, and a specific data query. The count is not excessive and each tool seems necessary, though the marketplace tool bundles many sub-actions (search, describe, invoke, list, install, subscribe, etc.) into one surface, which might justify a higher count but still remains within a sensible range.
The platform covers core operations: authentication, connection status, marketplace discovery/execution, bug reporting, version info, and toolkit state. Minor gaps exist, such as a dedicated logout or token revocation function, but the marketplace tool includes billing and subscription management, so most needs are met. The SINTEGRA MS tool is a standalone query, which is complete for its purpose.
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?
Goes beyond the annotations (readOnly=false, idempotent=true) by explaining the flow: it returns a link when called with no args, and accepts a JWT token for session login. It also mentions the permanent option via config, which is not in annotations. No contradictions.
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 is informative. It could be more structured (e.g., bullet points) but is not overly long. It front-loads the purpose and then gives usage details. Slightly rambling but still concise enough.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description covers the main usage modes and gives context on how to authenticate (browser, token). It doesn't mention what the response looks like, but for an authentication tool that sets a token, the reader likely knows it returns success/failure. Provided there is no output schema, the description is reasonably 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?
Since the schema has no description for the 'token' parameter and coverage is 0%, the description fully compensates by explaining that `token` is the JWT to authenticate, and how to use it. No other parameters exist, so the single parameter is well-explained.
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 authenticates by logging in via browser and obtaining an access token From the context, it distinguishes itself from sibling tools like 'connect' and 'toolkit_info' by being specifically about authentication and token management.
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?
Provides explicit when-to-use guidance: explains the permanent config approach vs session-only token paste, and gives exact call patterns (with/without token). It clearly instructs the agent on how to invoke the tool in different scenarios, making it obvious when to use this tool versus alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
connectARead-onlyIdempotentInspect
Returns connection status and URLs. When all providers are connected, returns authenticated:true and empty pending[]. When credentials are missing, returns connect_url for the toolkit and per-install URLs.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, so the safety profile is covered. The description adds valuable behavioral detail about response states, including authenticated:true, empty pending[], and connect_url behavior, which goes beyond the annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, front-loaded with the core function, and every phrase adds meaning. It efficiently covers the main purpose and key conditional outcomes without unnecessary 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?
With no output schema, the description fully explains the relevant return values for both connection scenarios. The zero-parameter tool is simple, and the description provides enough context for an agent to know what to expect from the response.
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%, so there is no parameter burden to compensate. The baseline of 4 applies because parameter semantics are not applicable and the description still clarifies the return behavior.
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 with a specific verb and resource: 'Returns connection status and URLs.' It also distinguishes itself from the sibling tool 'authenticate' by focusing on status reporting rather than authentication actions.
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 about when different results occur ('When all providers are connected...' vs 'When credentials are missing...'), which implies usage for checking connection state. It does not explicitly name alternatives or exclusions, but the read-only status-check context is evident.
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?
Despite having annotations (readOnlyHint=false, openWorldHint=true), the description adds enormous value: invoke's side-effect of running tools without installing, the connect link for missing credentials, the checkout/top-up link when the wallet is empty, and the permission requirement that writes need workspace owner/admin. It also explains the one-off install behind invoke and the prompt library's no-login share links. No contradiction with annotations. Annotation Contradiction: 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?
Every sentence earns its place and there is zero fat, but it is one giant wall-of-text paragraph with no structural hierarchy. Helpful typography (CAPS for 'KEY', 'PERMANENT') partially compensates, and the information density is high, yet the reader would benefit enormously from sentence-per-action breaks. It is efficiently written but not well-structured.
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 (14-action enum, 23 parameters, no output schema, no parameter descriptions), the description is remarkably whole. It covers the full state machine (search→describe→invoke), failure/recovery paths (connect/checkout links with retry), permission model, the distinction between one-off invoke and permanent install, list_tools semantics, billing operations, issue reporting, and the entire prompt library subsystem. This is strong coverage for a facade tool of this scope.
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 and 23 parameters, the description carries the full burden and mostly delivers: it explains the action enum semantics thoroughly, clarifies tool_id, arguments, prompt_slug, and the relationship between action values. It loses a point because some non-obvious parameters (report_context, conversation, limit/query semantics, cancel_reason behavior) are left unexplained, and the description could not feasibly cover all 23 params given the length — but the critical action-cluster params are well handled.
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 precise job statement: 'The official mcp.ai marketplace — the in-platform catalog of every MCP/tool, AND the way to run them.' It specifies the exact capability domains ('find an MCP that does X', 'consulta um CPF') and differentiates each sub-action (search vs. describe vs. invoke vs. install). It clearly distinguishes itself from siblings by framing itself as the catalog+runner while siblings like authenticate/show_version are utilities.
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?
Explicit, prescriptive guidance throughout: 'Use install only to make an MCP PERMANENT in the active toolkit... prefer invoke for a single/occasional use.' It contrasts with alternatives ('To filter by user/workspace, use search_calls_extensive' style clarity through 'list_tools lists what is callable right now'), and it even documents the retry flow after auth/payment links are opened. This is model-guidance gold.
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 non-read-only, non-destructive, and idempotent, but the description adds no extra behavioral context (e.g., that it creates a ticket, sends an email, or returns a confirmation). It doesn't contradict annotations, but it also doesn't disclose side effects or expected outcomes beyond the action itself.
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, front-loaded with the primary purpose, and a brief instructional note. No fluff, no redundancy. Highly concise.
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 has no output schema and the description does not explain what happens after reporting (e.g., returns a ticket ID, gives confirmation, is fire-and-forget). It also doesn't mention whether authentication is needed, though sibling 'authenticate' exists. The description covers the 'what' but not the 'outcome' fully.
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 no parameter descriptions (0% coverage). The description clarifies that 'conversation' should contain recent messages for reproduction, which adds value. However, it doesn't explain the required 'message' field or 'context' field, leaving the agent to guess their precise roles. Partial compensation for the schema 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?
Clear, specific verb+resource: 'Report a bug, missing feature, or send feedback.' The tool's purpose is unambiguous, and it stands apart from all sibling tools (auth, connect, marketplace, etc.), which are 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 provides context for one parameter ('Include the conversation array... for reproduction') but lacks explicit guidance on when to use the tool, prerequisites, or alternatives. Since no sibling tool competes, the gap is minor, but it could state 'Use this when the user reports an issue.'
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
show_versionARead-onlyIdempotentInspect
Show the current MCP platform and adapter versions.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, and destructiveHint false, covering the safety profile. The description adds value by specifying exactly what is shown (MCP platform and adapter versions), which goes beyond raw annotations. However, it does not describe the output format or any other behavioral details, but for a simple read-only tool this is sufficient.
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, concise sentence that fully communicates the action and scope. No wasted words; it is front-loaded 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?
Given the simplicity of the tool (no parameters, no output schema, strong annotations), the description is complete. It tells the agent exactly what the tool does, and the annotations cover safety aspects. There are no gaps that need further explanation.
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 schema). Per the rubric, with 0 params the baseline is 4. The description adds no parameter details because there are none, so the baseline is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it shows the current MCP platform and adapter versions, using a specific verb ('Show') and resource ('versions'). It distinguishes from siblings like 'toolkit_info' by focusing specifically on versions, and the name reinforces the 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?
The description does not explicitly mention when to use this tool versus alternatives or any exclusions. While the context is clear from the name and description, there is no guidance on when not to use it or how it differs from potentially overlapping tools like 'toolkit_info'.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
sintegra_ms_consultarBRead-onlyIdempotentInspect
SINTEGRA: MS, 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 |
|---|---|---|---|
| ie | No | ||
| cnpj | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already establish readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the description doesn't need to re-cover safety. It adds genuinely valuable context: the pay-per-query cost model with prepaid credit, the fact that no platform credentials are needed, data sensitivity (not confidential, same as available to citizens), and LGPD obligations for the client as data controller. This is exactly the kind of beyond-annotation context (auth needs, cost, legal) the rubric rewards.
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 run-on stretch of colon and comma-separated clauses cramming in purpose, hosting model, payment terms, data sensitivity, and legal responsibility. Every sentence does carry information, but the most important information (what SINTEGRA MS is and what it returns) competes for attention with billing and legal disclosures. It's acceptable but not tight — it reads more like a terms-of-service blurb than an API description.
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 (2 plain string params, no output schema, no nested objects, no enums), the description covers the essentials: purpose, what data it accesses, and the legal framing around that data. The annotations handle safety profiling. However, it omits practical details a caller would want, such as what kind of results come back, what happens on a missing/invalid IE/CNPJ, or whether the result varies from the citizen-facing version in any way. Serviceable, with room to grow.
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 and 2 parameters (ie and cnpj), the description carries the full burden of explaining parameters but says nothing about them. A caller unfamiliar with 'ie' (Inscrição Estadual) or how it relates to 'cnpj' would get zero help. The description was the only place to clarify these parameters and entirely missed the opportunity — an especially damaging gap for a query tool where the parameters are the input.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly identifies a query operation against SINTEGRA MS ('consulta em fonte oficial') — a specific verb ('consulta') and resource (SINTEGRA MS, a known Brazilian state taxpayer database). It distinguishes itself from the sibling tools (authenticate, connect, marketplace, report_bug, show_version, toolkit_info) by being the only data-query tool. It loses a point because the core purpose is somewhat diluted under pricing and LGPD compliance language rather than crisply stating it queries Brazilian state tax registration data.
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?
There is no explicit guidance on when to use this tool versus alternatives, and no when-not-to-use instructions. The description provides context — hosted platform, no platform credentials, prepaid credit, queries official non-confidential sources — but never explains how a caller should decide to invoke this over another tool. The compliance framing ('o cliente é o controlador dos dados') implies conditions for use but doesn't deliver actionable selection 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 | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the tool is clearly safe. The description enriches this by detailing what data is returned (installed MCPs, statuses, accounts, counts), adding behavioral context without contradicting the annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence that conveys all essential information without any redundancy. It is concise and to the point.
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 with no output schema, so the description carries the burden of explaining return values. It lists all key fields (installed MCPs, connection status, accounts, catalog tool counts), making it complete for the tool's complexity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, so the schema fully covers parameter semantics. With 0 parameters, the baseline is 4, and the description adds no parameter info because none is needed. This is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: it returns the current toolkit state with specific components (installed MCPs, connection status, connected accounts, catalog tool counts). This is a specific verb-resource combination and distinguishes it from siblings like show_version or connect.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It does not mention any context, exclusions, or alternative tools. Usage is only implied by the tool's purpose, so it lacks explicit direction.
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
- Alicense-qualityCmaintenanceProvides query access to official SINTEGRA SE data through a single read-only MCP tool, with pay-per-use credits and no platform credentials required.MIT
- Alicense-qualityCmaintenanceEnables users to consult SINTEGRA AC data from official sources via a read-only MCP tool, with prepaid credit-based pricing and no platform credentials required.MIT
- Alicense-qualityCmaintenanceEnables querying SINTEGRA SP (São Paulo state tax registration) data from official sources via a single read-only tool, hosted as an MCP server with pay-per-use credits.MIT
- Alicense-qualityCmaintenanceEnables querying official SINTEGRA DF tax registration data from any MCP-compatible client. Read-only server with a single tool, paid per query via prepaid credits.MIT
Your Connectors
Sign in to create a connector for this server.