Skip to main content
Glama

SINTEGRA: AC

Server Details

SINTEGRA: AC, official-source lookup. Platform-hosted, pay per query with prepaid credit.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
mcp-dir/sintegra_ac-mcp
GitHub Stars
0
Server Listing
SINTEGRA: AC

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

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.

100% free. Your data is private.
Tool DescriptionsA

Average 4.2/5 across 7 of 7 tools scored.

Server CoherenceC
Disambiguation3/5

Most tools have distinct purposes, but 'connect' and 'toolkit_info' overlap in reporting connection status, and 'authenticate' deals with auth similar to 'connect' and 'marketplace' invoke's connect links. 'show_version' is trivial but distinct. The main 'marketplace' tool is a megatool covering many sub-actions, blurring boundaries with 'report_bug' and 'toolkit_info'.

Naming Consistency2/5

Naming is inconsistent: 'authenticate', 'connect', 'marketplace', 'report_bug', 'show_version' are mostly verb_noun but vary in verb style (some are bare verbs, some noun_verb). 'sintegra_ac_consultar' is Portuguese and does not follow the English pattern, and 'toolkit_info' is noun_verb. Mixed languages and conventions make patterns unpredictable.

Tool Count3/5

7 tools is a reasonable count, but 'marketplace' is an overloaded mega-tool that should arguably be split into multiple tools (search, describe, invoke, install, etc.), making the surface feel heavier than the count suggests. The other tools are sparse, with 'show_version' being near-trivial.

Completeness2/5

The server mixes platform management, marketplace access, and a single domain-specific query tool (sintegra_ac_consultar). The domain of Brazilian tax information appears incomplete: only one query capability, no history, no credits balance, no CNPJ/CPF variations. Platform side lacks explicit auth revocation or billing details beyond marketplace. Significant gaps for a coherent workflow.

Available Tools

7 tools
authenticateA
Idempotent
Inspect

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
tokenNo
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already indicate readOnly false, idempotent true, destructive false. The description adds context about creating permanent vs. session-only connections and that calling with no args yields a link. It doesn't explicitly state side effects like state mutation, but it implies the auth flow. No contradiction—consistent with annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise (three sentences) and front-loaded with core purpose. Every sentence adds value: process, best practice, alternative. Slightly verbose due to explaining both methods, but no fluff.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the auth flow complexity (two methods, token parameter, link retrieval) and no output schema, the description covers the essential steps and outcomes. It could specify the exact response when calling with token, but it's sufficiently complete for most use cases.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema has only 'token' (string) with 0% description coverage. The description fully compensates by explaining that token is the JWT from browser and that it can be omitted to get the link. This adds crucial meaning beyond the raw schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

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 the user to the MCP server. It uses specific verb 'authenticate' and explains the process (browser login, token), distinguishing it from sibling tools like 'connect' or 'marketplace' by focusing exclusively on auth.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It explicitly provides usage scenarios: best practice (header config for permanent connection) and alternative (session-only via pasted token). It also instructs when to call with token vs. no args to get the link. Clear guidance on when and how to invoke it.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

connectA
Read-onlyIdempotent
Inspect

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.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare read-only and idempotent behavior. The description adds valuable conditional behavior: what occurs when all providers are connected vs. when credentials are missing, including specific return fields like authenticated and connect_url. This exceeds the annotations' minimal safety hints.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences, front-loaded with the core purpose, then concise conditional details. Every sentence is informative and no redundancy exists.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a zero-parameter, read-only status tool, the description fully covers expected behavior across states. No output schema exists, but the description explains the key return values. Sibling tools are not needed for context.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has zero parameters, so the baseline is 4. The description does not need to explain parameters. It adds context about the meaning of output fields, which is useful given the lack of an output schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's function: 'Returns connection status and URLs.' It uses a specific verb and resource, and distinguishes it from sibling tools like 'authenticate' by focusing on status rather than action.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage for checking provider connectivity, with clear context about what results to expect. It does not explicitly mention when not to use it or point to alternatives, but the read-only status-check purpose 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.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
queryNo
actionNosearch
mcp_idNo
messageNo
tool_idNo
argumentsNo{}
immediateNo
tier_slugNo
prompt_bodyNo
prompt_slugNo
prompt_toolNo
prompt_varsNo{}
conversationNo[]
prompt_titleNo
request_nameNo
cancel_reasonNo
cancel_commentNo
prompt_targetsNo
report_contextNo
prompt_categoryNo
request_detailsNo
prompt_descriptionNo
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description discloses key behavioral aspects beyond the annotations: it mentions that install/uninstall/subscribe/cancel require workspace owner/admin, that invoke runs one-off without installation, and that paid MCPs may return checkout links for billing. This provides substantial transparency about side effects and authorization, which is not present in the annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness2/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is excessively long and repetitive. It redundantly explains the flow for both MCPs and prompts, and repeats the 'use install only...' guidance multiple times. While it is front-loaded with purpose, the verbosity and duplicated content detract from clarity and structure.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description covers the overall workflow, including search, describe, invoke, install, and prompt operations, along with billing and permission notes. However, it does not elaborate on the JSON formats for 'arguments' or 'conversation', nor does it detail fields like 'cancel_reason' or 'prompt_vars'. Given the tool's complexity (23 parameters, 0% schema coverage), this leaves gaps that could confuse an agent.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The description explains the main 'action' parameter and its enumerated values, and gives high-level context for parameters like 'immediate', 'tier_slug', and prompt-related fields. However, many parameters (e.g., 'arguments', 'conversation', 'cancel_reason') are not individually explained, and the schema has no descriptions, so the coverage of parameter semantics is partial.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: 'The official mcp.ai marketplace — the in-platform catalog of every MCP/tool, AND the way to run them.' It also clarifies the core flow (search → describe → invoke) and distinguishes between MCP and prompt library functions, making it distinct from sibling tools like authenticate or connect.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides explicit usage guidance, e.g., 'Use install only to make an MCP PERMANENT in the active toolkit; prefer invoke for a single/occasional use.' It also explains when to use describe vs. invoke and mentions that writes require owner/admin. This gives clear when-to-use direction, though it does not explicitly compare against sibling tools like authenticate or connect.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

report_bugA
Idempotent
Inspect

Report a bug, missing feature, or send feedback. Include the conversation array with recent messages for reproduction.

ParametersJSON Schema
NameRequiredDescriptionDefault
contextNo
messageYes
conversationNo[]
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already indicate readOnlyHint=false (a write action) and destructiveHint=false. The description adds the instruction to include the conversation array for reproduction, which gives context on how the tool should be invoked. It doesn't contradict annotations, and the additional detail about reproduction is useful. However, it could expand on any side effects (e.g., external submission), but with annotations covering safety, the bar is lower.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two concise sentences. The first states the purpose, the second provides an actionable instruction. No fluff or repetition, good front-loading.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool is a simple feedback mechanism. The description explains what to do (report and include conversation) but doesn't mention what happens after submission (e.g., any response or confirmation). Given no output schema, the agent might not know if a return value is expected. However, for such a tool, this is often implicit. It's complete enough for typical use, but slightly lacking on expected result.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

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. It explicitly mentions the 'conversation' parameter as a 'conversation array', but the schema defines it as a string with default '[]'. This could confuse the agent about the exact format. It does not explain 'context' or 'message' beyond the overall purpose. Since only one of three parameters is partially explained, it's adequate but not thorough.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

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.' This is specific (verb+resource) and clearly distinguishes it from sibling tools like authenticate, marketplace, or show_version, which have different functions.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It gives actionable guidance: 'Include the conversation array with recent messages for reproduction.' This hints at when to use it (when you need to report an issue) and provides a key prerequisite. It doesn't explicitly mention when not to use it or alternatives, but 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_versionA
Read-onlyIdempotent
Inspect

Show the current MCP platform and adapter versions.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description is consistent with the readOnlyHint and idempotentHint annotations, but it adds no extra context about side effects, authorization, or rate limits. Given the simple nature of the tool, the annotations already cover the main safety aspects.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single concise sentence with no unnecessary details, making it efficient and easy to parse.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With no parameters and no output schema specified, the description is complete enough for a simple informational tool. It fully conveys the tool's purpose without leaving gaps.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has no parameters, so the description has nothing to add beyond the empty schema. A baseline score of 4 is appropriate since there is no parameter information to clarify.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the function: showing the current MCP platform and adapter versions. It uses a specific verb ('Show') and resource ('MCP platform and adapter versions'), making it distinguishable from sibling tools like authenticate or connect.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Although it does not explicitly mention when to use it versus alternatives, the purpose is self-evident for version queries. No competing tool is implied, and the description sufficiently guides typical use.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

sintegra_ac_consultarA
Read-onlyIdempotent
Inspect

SINTEGRA: AC, 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).

ParametersJSON Schema
NameRequiredDescriptionDefault
ieNo
cpfNo
cnpjNo
aceita_resultado_parcialNo
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, which the description does not contradict. The description adds valuable context: the tool is hosted on the platform, requires no platform credentials, and users pay per query with pre-paid credit. It also clarifies data controller responsibility under LGPD, which is critical for legal compliance. These are genuine behavioral disclosures 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.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single paragraph, but it is information-dense and covers purpose, compliance, and operational details. It is not extremely long, but it is not front-loaded with the most essential usage information; the purpose is stated after the domain prefix. There is some redundancy ('consulta em fonte oficial' and 'informação de fontes e órgãos oficiais'), but overall it is reasonably concise.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity: 4 parameters, no required parameters, no output schema, and no annotations for parameters, the description could be more complete. However, it covers the key operational and legal context (payment, hosting, LGPD compliance). It doesn't explain what the result looks like or which parameter combinations are valid, but since any of the four identifiers may be optional, providing usage examples would improve completeness. Still, for a read-only query tool with clear legal framing, it is fairly complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, and there are 4 parameters (ie, cpf, cnpj, aceita_resultado_parcial). The description does not explain any parameter meanings or relationships Joshua, and the parameter names are cryptic (e.g., 'aceita_resultado_parcial' likely means 'accept partial result' but is not confirmed). Since coverage is 0%, the description should compensate but does not.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states the tool performs a SINTEGRA AC (Acre state) query from official sources. It clearly names the resource (official Brazilian sources) and the verb 'consulta' (query). It distinguishes itself from siblings by specifying the state and official source nature, though it doesn't explicitly contrast with similar query tools if any exist.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explains when to use the tool: to obtain information from official Brazilian sources that is publicly available to citizens, not confidential data. It implies this is for legitimate LGPD-compliant purposes and notes that payment is required via pre-paid credits, clarifying the operational context. It does not explicitly mention alternatives, but given the obscure sibling list, 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.

toolkit_infoA
Read-onlyIdempotent
Inspect

Returns the current toolkit state: installed MCPs, their connection status, the accounts connected to each one, and how many catalog tools each exposes.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already cover read-only and non-destructive behavior. The description adds detail about the content returned but does not disclose potential side effects, rate limits, or failure modes. With annotations present, the description barely extends beyond them.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, front-loaded sentence that immediately communicates the action ('Returns') and the key output elements. No fluff or repetition.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple status tool with no parameters and no output schema, the description covers the return content sufficiently. It lists the main data points without over-explaining. Could mention if it returns errors or includes empty lists, but overall adequate.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has zero parametersessed, so the schema is fully described (100% coverage). The description adds no parameter info, but none is needed. Baseline is 4 for no parameters.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states that the tool returns the current toolkit statearenas and enumerates specific output elements (installed MCPs, connection status, accounts, catalog tool counts). This is a specific verb+resource description that distinguishes it from sibling tools like show_version or authenticate.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage for obtaining an overview of the tool state, but provides no explicit guidance on when to prefer it over alternatives or when not to use it. Context is inferable but not stated.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

  • A
    license
    -
    quality
    C
    maintenance
    Enables querying official SINTEGRA AP data (Brazilian state tax registration) via a hosted MCP server, with read-only access and prepaid credits.
    MIT
  • A
    license
    -
    quality
    C
    maintenance
    Enables consultation of SINTEGRA registration data from the official SUFRAMA source, with read-only access and pay-per-use credit system, compatible with any MCP client.
    MIT
  • A
    license
    -
    quality
    C
    maintenance
    Enables 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

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.