Skip to main content
Glama

Registradores (ARISP) Matrícula: Download de Matrícula

Server Details

Registradores (ARISP) Matrícula: Download de Matrícula, official-source lookup. Platform-hosted, pay

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
mcp-dir/registradores_matric_download-mcp
GitHub Stars
0

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. Lowest: 3.4/5.

Server CoherenceC
Disambiguation2/5

The monolithic `marketplace` tool overlaps with `connect`, `toolkit_info`, and even the standalone `report_bug` since it covers connection status, installed tools, billing, and bug reporting. Agents would need to read very long descriptions to avoid selecting the wrong tool for simple status or reporting tasks.

Naming Consistency2/5

The naming style is mixed: `authenticate` and `connect` are bare verbs; `report_bug` and `show_version` use verb_noun; `marketplace` is a standalone noun; `toolkit_info` is noun_noun; and `registradores_matric_download_consultar` is a long Portuguese combination ending with a verb. There is no clear, predictable convention across the set.

Tool Count3/5

Seven tools is a reasonable raw number, but only one tool actually serves the stated ARISP registradores domain. The other six are generic platform/authentication/marketplace utilities, so the tool count is acceptable while the focus of the server is diluted.

Completeness3/5

The only domain tool covers consulting/querying a matrícula, which is the main read operation. However, the server name promises `Download de Matrícula` yet no explicit download/export tool is exposed, and there is no logout or disconnect operation to balance the authentication lifecycle.

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?

It discloses important behavioral context beyond annotations: the difference between permanent config-based auth and session-only token auth, plus the two invocation modes. It does not detail possible side effects or error behavior, but annotations already mark it non-destructive and idempotent.

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 dense and technically informative, with no truly wasted content. However, it is written as one long run-on paragraph and mixes audience context with usage instructions, so it is not optimally structured or front-loaded.

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 one optional parameter, no output schema, and only sparse annotations, the description covers the essential workflows: no-args returns a link, token enables session login, and config header enables permanent auth. It does not state the exact response format or failure modes, but it is largely complete for an authentication tool.

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?

The schema only provides a bare 'token' string with no description, and schema coverage is 0%. The description compensates by explaining the token is a JWT, is used for session-only login, and that omitting it returns the login link, giving the agent enough semantic information to invoke the tool correctly.

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 clearly identifies the tool as handling authentication to MCP.AI for IDE agents, explaining both token-based login and link retrieval. It is more than a restatement of the name, but it does not explicitly differentiate itself from sibling tools like '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 gives concrete when-to-use guidance: add the token to server config for a permanent connection, or pass it as a session-only login, or call with no args to receive the login link. It lacks an explicit exclusion of when not 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.

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

Behavior5/5

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

Annotations already declare it as read-only (readOnlyHint: true) and idempotent. The description adds valuable behavioral context beyond that: it explains the exact fields returned (authenticated, pending, connect_url, per-install URLs) and the conditions under which they appear. This enriches the agent's understanding of the tool's behavior without contradicting any annotations.

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 only two sentences long, immediately front-loads the main purpose ('Returns connection status and URLs'), and uses every word. It is concise, well-structured, and free of redundancy. This is a model of efficiency.

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?

Despite having no output schema, the description fully explains the return value structure and conditional behavior. It covers both the success case (authenticated:true) and the failure/missing-credentials case (connect_url and per-install URLs). For a zero-parameter read-only tool, this is a complete and sufficient description.

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 0 parameters and 100% schema coverage, so the baseline is 4. The description does not need to explain parameters that don't exist, and it adds no irrelevant details. It correctly describes the tool's behavior without parameter documentation needs.

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 uses the specific verb 'Returns' and clearly identifies the resource: connection status and URLs. It distinguishes itself from siblings like 'authenticate' by focusing on status retrieval, and it explains conditional behavior (what happens when providers are connected vs missing credentials), which is specific and unambiguous.

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

Usage Guidelines4/5

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

The description implies when to use this tool (to check connection status) and provides useful context about the response in different states. It doesn't explicitly state alternatives or exclusions, but for a read-only status tool, the usage context is quite clear and self-sufficient. The absence of an explicit 'when not to use' is acceptable given the tool's simplicity.

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?

Beyond annotations, it discloses one-off execution without installation, connect/checkout link behavior, workspace owner/admin requirement for writes, installed_in_toolkit vs installed_in_workspace flags, and the no-login share link. No contradiction with annotations; readOnlyHint=false is consistent with writes.

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 dense and front-loaded with the core flow, and every sentence adds operational detail. It is long, but justified by 23 parameters and 14 actions; minor structural improvements (bullets/sections) would help.

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 complex multi-action tool with no output schema, it covers the main flows, auth, billing, and prompt library well. Gaps remain around exact return shapes and several action-specific parameters, but the agent can select and invoke correctly in most cases.

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?

With 0% schema coverage, the description compensates by explaining the action enum and key parameters (mcp_id, tool_id, prompt_slug, prompt_vars implicitly). However, many parameters (arguments, immediate, tier_slug, cancel_reason, conversation, request_details, etc.) remain undocumented, so it doesn't fully carry the burden.

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 identifies marketplace as the official mcp.ai catalog and execution layer, with a concrete core flow (search → describe → invoke) and a second prompt-library capability. It distinguishes itself from siblings by naming report_bug and by contrasting invoke vs install vs list_tools.

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 gives explicit guidance: prefer invoke for one-off use, use install only for permanent toolkit membership, list_tools for currently callable tools, request_mcp when nothing fits, and search_prompts/get_prompt/publish_prompt for prompt text. This is strong when/when-not guidance with named alternatives.

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

registradores_matric_download_consultarB
Read-onlyIdempotent
Inspect

Registradores (ARISP) Matrícula: Download de Matrícula, 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
emailNo
senhaNo
tipo_loginNo
pkcs12_certNo
pkcs12_passNo
numero_pedidoNo
Behavior4/5

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

Beyond the readOnlyHint/idempotentHint annotations, the description discloses that each query costs money ('pague por consulta com crédito pré-pago'), that no platform credentials are needed, and includes LGPD data responsibility details. This adds significant behavioral context beyond annotations, though it could elaborate on the request lifecycle or error handling.

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 and front-loaded, starting with the core purpose and then covering payment, data source, and legal caveats. It is not bloated, though the legal disclaimer could be considered a separate note. Overall, every sentence earns its place.

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 cost, credential handling, and data sensitivity, which are useful for a complex tool with 6 parameters and no output schema. However, it does not mention the return format, how parameters relate (e.g., email/senha vs pkcs12_cert), or any specific usage examples, leaving the agent to guess on invocation details.

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?

With 0% schema description coverage and no explanation of the six parameters (email, senha, tipo_login, pkcs12_cert, pkcs12_pass, numero_pedido), the description fails to guide the agent on how to populate them. The phrase 'sem credenciais da plataforma' hints that credentials are for an external system, but this is minimal and does not compensate for the lack of explicit parameter documentation.

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 clearly states it is for downloading/querying 'Matrícula' from official sources, specifically mentioning ARISP, which is a specific verb+resource. It differentiates from the generic sibling tools like 'authenticate' and 'connect', though the relationship between 'download' and 'consulta' could be crisper.

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?

It provides context that this is a paid service using prepaid credit and does not require platform credentials, which helps set expectations. However, it lacks explicit when-to-use versus alternatives or exclusions, and does not reference sibling tools like 'authenticate' or 'connect' that might be confused with it.

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[]
Behavior3/5

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

Annotations already provide readOnlyHint=false, destructiveHint=false, and idempotentHint=true. The description adds the important behavior that recent messages should be included as a conversation array for reproduction. However, it does not clarify what the user can expect after submitting, such as confirmation or how the data is handled.

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 short sentences and front-loads the purpose. Every sentence adds value and there is no redundancy or 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?

For a small bug-reporting tool with one required parameter and no output schema, the description is adequate. It gives purpose and the key reproduction guidance, though describing the format of 'conversation' and the purpose of 'context' would make it fully 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%, so the description must carry parameter meaning, but it only describes the 'conversation' parameter as containing recent messages. It does not explain the required 'message' parameter or the 'context' parameter, leaving the most important input unclear.

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 verb 'Report' and the resources involved: bug, missing feature, or feedback. It is readily distinguished from sibling tools like authenticate, connect, show_version, and toolkit_info.

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 clear context for when to use this tool, covering bug reports, missing features, and general feedback. It does not explicitly list when not to use it or name exact alternatives, but no sibling tool competes for the same purpose.

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

Behavior4/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, and the description's 'Show' verb aligns perfectly. The description adds useful scope—that it reports both platform and adapter versions—without omitting any relevant side effects.

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

Conciseness5/5

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

The description is a single, front-loaded sentence with no filler. Every word contributes to conveying the tool's purpose and scope.

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 zero-parameter, read-only informational tool with full annotation coverage, the description fully covers what the agent needs to know. No output schema exists, but 'show versions' implies the return format well enough for typical agent decisions.

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 parameters, so schema description coverage is trivially 100%. The description appropriately omits parameter details since none exist, and the baseline score of 4 applies.

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 uses the specific verb 'Show' with a clear resource ('current MCP platform and adapter versions'), making the tool's function immediately obvious. This distinguishes it from sibling tools like connect, authenticate, or report_bug, none of which relate to version reporting.

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?

No explicit when-to-use guidance or alternatives are provided, but the tool's purpose is self-evident as a version-check utility. The usage context is implied (invoke when needing version info), which is adequate for such a simple, standalone tool.

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

Behavior4/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, so the safety profile is established. The description adds value by detailing what the state includes (installed MCPs, connection status, accounts, tool counts), providing actionable transparency about the return content beyond the mere 'safe operation' implication.

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?

A single, well-structured sentence delivers all necessary information without redundancy. It is front-loaded with the action ('Returns') and specifies exactly what is returned, making every word earn its place.

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 info tool with no output schema, the description is fully self-contained. It enumerates all the categories of data returned (MCPs, statuses, accounts, catalog counts), leaving no ambiguity about the tool's scope or return content.

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?

There are zero parameters, and the schema coverage is 100% (vacuously complete). The description correctly focuses on the return value rather than parameters. With no parameters to clarify, the baseline of 4 is appropriate as the description doesn't need to compensate for missing schema details.

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 uses a specific verb 'Returns' and names the exact resource ('current toolkit state') and its composition (installed MCPs, connection status, accounts, catalog tool counts). This clearly 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.

Usage Guidelines4/5

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

The description clearly implies the tool is for retrieving a snapshot of the toolkit's current configuration and status, which is a common read-only need. While it doesn't name alternatives explicitly or state exclusions, the context (read-only state vs. sibling actions) makes appropriate usage evident.

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

  • -
    license
    Not graded
    quality
    C
    maintenance
    Enables querying official São Paulo city property registration data (Certidão de Dados Cadastrais do Imóvel) via a hosted MCP server, with read-only access and pay-per-use credits.
  • A
    license
    Not graded
    quality
    C
    maintenance
    Baixa documentos arquivados de empresas na JUCESP usando NIRE e número de registro, via chamadas de IA em qualquer cliente MCP. Somente leitura, sem credenciais, com pagamento por consulta pré-pago.
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    Emits simplified company certificates from JUCESP (Brazilian state registry) via CNPJ, NIRE, or name. Read-only, hosted MCP server with pay-per-use credit system.
    MIT

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.