Skip to main content
Glama

Conselho Regional de Odontologia CE: Cadastro

Server Details

Conselho Regional de Odontologia CE: Cadastro, official-source lookup. Platform-hosted, pay per quer

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
mcp-dir/cro_ce_cadastro-mcp
GitHub Stars
0
Server Listing
Conselho Regional de Odontologia CE: Cadastro

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.1/5.

Server CoherenceB
Disambiguation4/5

Most tools have clearly distinct purposes: authenticate handles login, connect shows connection status, marketplace discovers/runs MCPs, report_bug sends feedback, show_version shows versions, and cro_ce_cadastro_consultar performs the domain query. However, connect and toolkit_info both expose connection status, which could lead to minor confusion about which to use for a given need.

Naming Consistency2/5

The naming is highly inconsistent: some tools are single words (authenticate, connect, marketplace), others are snake_case verb_noun (report_bug, show_version, toolkit_info), and one is a long Portuguese domain-specific phrase (cro_ce_cadastro_consultar). There is no clear convention, and the mixed use of English and Portuguese compounds the inconsistency.

Tool Count4/5

With 7 tools, the total count is within the typical 3-15 range and is not excessive. However, the server is named after a specific domain (Conselho Regional de Odontologia CE), yet only one tool serves that domain; the rest are generic platform utilities, making the overall scope feel misaligned with the apparent purpose.

Completeness2/5

For the stated domain of dental council registration, there is only a single query tool (cro_ce_cadastro_consultar) with no additional operations like list, update, or create. The other six tools are unrelated to the domain, so an agent seeking to accomplish any registration workflow beyond a basic lookup would hit dead ends. This is a significant gap relative to the server's apparent purpose.

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?

The description adds useful behavior beyond the annotations: browser login flow, no-args returns a link, non-expiring config vs session-only token. Annotations already signal idempotent and non-destructive, and the description does not contradict 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?

Three sentences, all information-dense, with the most important guidance front-loaded. No filler or redundant repetition of schema or annotation details.

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 auth tool with one optional parameter and no output schema, the description covers the core flow and both usage modes. Minor gaps remain around the actual response shape when posting a token, but this does not impede correct invocation.

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 description coverage is 0%, but the description fully compensates for the single optional token parameter. It explains exactly when to pass a token, what kind of token to use, and what happens when called with no arguments.

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 the tool authenticates an MCP.AI server for IDE agents via browser login and token exchange. It uses specific actions and resources, though it does not explicitly differentiate itself from the sibling tool '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?

Provides clear context on when to use the tool and contrasts the two auth flows: permanent config header vs session-only token paste. It does not explicitly mention when not to use it or name alternatives, but the context is sufficient for most agent decisions.

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?

The description adds meaningful behavioral detail beyond the readOnlyHint and idempotentHint annotations by specifying the exact outputs for different connection states (authenticated:true and empty pending[], or connect_url). This enriches the agent's understanding of the tool's side effects and return semantics.

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 compact and well-structured, using two sentences to convey the core functionality and the two primary outcome scenarios. It avoids redundancy and is easily scannable.

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 absence of an output schema, the description provides sufficient context by naming key result fields (authenticated, pending, connect_url) and explaining the conditions under which they appear. It covers the main behavior, though more edge cases could be specified, but that's not necessary for a tool with no parameters.

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, and the description appropriately does not discuss parameter semantics. With 0 parameters, the baseline is 4, and no additional compensation is needed since there is nothing 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 that the tool returns connection status and URLs, and elaborates on two specific conditions that determine the output. This verb+resource phrasing distinguishes it from sibling tools like authenticate, marketplace, and toolkit_info, making its purpose unambiguous.

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?

While the description provides conditional behaviors (all providers connected vs. credentials missing), it does not explicitly state when to use this tool in comparison to alternatives like authenticate. The situational hints are implicit rather than explicit directives, leaving room for the agent to infer usage.

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

cro_ce_cadastro_consultarB
Read-onlyIdempotent
Inspect

Conselho Regional de Odontologia CE: Cadastro, 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
inscricaoYes
Behavior3/5

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 payment model and data handling (pre-paid credits, LGPD), which is useful, but doesn't disclose rate limits, response format, or potential failures. No contradiction.

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

Conciseness3/5

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

The description is a single paragraph that is reasonably concise but packs multiple clauses. It front-loads the main purpose but mixes in legal and payment details. Overall, it's adequately brief but not optimally structured for quick scanning.

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?

With only one parameter, no output schema, and no nested objects, the complexity is moderate. The description includes key aspects (official source, payment, data privacy) but lacks specifics on input format and expected output. Given the simplicity, a 3 is reasonable.

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?

The only parameter 'inscricao' is documented only as a string in the schema, with 0% description coverage. The description doesn't explain what 'inscricao' means (likely registration number), nor its format (e.g., digits only, length). Since the description carries the burden for this parameter but omits details, the score is low.

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 the tool consults dental council registration records from an official Brazilian source, using a specific verb ('consultar') and resource ('cadastro'). It distinguishes from sibling tools by mentioning the specific council (CRO-CE), though it doesn't explicitly name alternatives.

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 when to use (when needing official dental registration data) but lacks explicit guidance on when not to use or alternatives. It mentions payment and pre-paid credits, which is useful context, but doesn't specify scenarios where other tools might be better.

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 goes well beyond the annotations by disclosing that invoke works even when the MCP is not installed, runs one-off without adding the MCP to the toolkit, and returns connect/checkout links for missing credentials or empty wallets. It also reveals that writes require workspace owner/admin and that search/describe flag installed_in_toolkit vs installed_in_workspace, which is valuable behavioral context.

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 every sentence carries useful information, with the core purpose front-loaded. The main weakness is structural: it is one large paragraph without headings or bullets, which makes it harder to scan quickly despite the high information density.

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 23-parameter tool with no output schema and only coarse annotations, the description is exceptionally complete. It covers the end-to-end workflow, permission requirements, fallback behaviors for auth/payment, the difference between one-off invoke and permanent install, installed-status reporting, subscription management, bug reporting, and the prompt library. This is more than enough for an agent to select and invoke the tool correctly.

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 schema description coverage at 0%, the description carries the burden of explaining parameters, and it does cover the central action/mcp_id/tool_id/arguments relationship in the search→describe→invoke flow. It also explains prompt-related parameters (search_prompts, get_prompt with {{variables}}, publish_prompt returning a shareable link). However, several parameters like limit, query, immediate, tier_slug, report_context, conversation, and request_details are not explicitly described, leaving some inference required.

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 states it is 'the official mcp.ai marketplace — the in-platform catalog of every MCP/tool, AND the way to run them,' which clearly identifies the tool's scope and primary function. It also distinguishes the action categories (search, describe, invoke, install, prompts) and differentiates it from sibling tools by describing its own core flow.

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?

The description gives explicit usage guidance: 'prefer invoke for a single/occasional use', 'Use install only to make an MCP PERMANENT', and it maps user intents to actions such as 'find an MCP that does X' leading to search/describe/invoke. It also explains when subscribe/cancel, report_bug, and request_mcp are appropriate, and notes the permission boundary for writes.

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 idempotentHint=true, readOnlyHint=false, and destructiveHint=false. The description adds the requirement to include the conversation array, which is a usage detail rather than a behavioral trait. Since annotations cover the basic safety profile (non-destructive, idempotent), the description does not need to restate those, but it also does not reveal any additional side effects (e.g., network call, data persistence). This is acceptable but not enriched.

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 sentences, front-loaded with the primary purpose and followed by a key usage instruction. Every word contributes; there is no redundancy or filler. It is concise while conveying essential information.

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

Completeness2/5

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

Given the tool has 3 parameters with zero schema descriptions and no output schema, the description is underspecified. It does not explain the 'message' or 'context' parameters, nor does it convey what response to expect or whether any prerequisites exist. While the purpose is clear, the operational details are insufficient for an agent to invoke it correctly without guessing.

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 compensate for parameter meanings. It only hints at the 'conversation' parameter by mentioning the conversation array. It does not explain 'message' (though it is the required field) or 'context'. The description fails to provide adequate meaning for two of the three parameters, leaving the agent uncertain about expected input formats or purposes.

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 uses a specific verb (report) and resource (bug/feature/feedback), and is distinct from sibling tools like authenticate, connect, and marketplace. It leaves no ambiguity about what the tool does.

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 usage context by instructing to 'Include the conversation array with recent messages for reproduction.' This tells the user when to supply additional information. However, it does not explicitly mention alternatives or exclusion scenarios, though given the unrelated sibling tools, the intended use is obvious. This aligns with 'clear context, no exclusions'.

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, idempotentHint, and destructiveHint, so no safety warnings are needed. The description accurately describes a read-only operation, consistent with annotations. No contradictions, and the behavior is evident for such a simple tool.

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-phrased sentence that delivers complete information without any fluff. Perfectly concise and front-loaded.

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 parameterless, read-only version check with no output schema, this description is fully adequate. The tool is simple, and the description covers everything an agent needs to use it correctly.

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, and the schema coverage is 100% trivially. Per the rubric, a score of 4 is the baseline for no parameters, and the description doesn't need to add any parameter semantics.

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' and clearly identifies the resource as 'MCP platform and adapter versions.' It is concise, unambiguous, and easily distinguishes itself from siblings by focusing on version retrieval.

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's context is crystal clear: use this to see version information. While it doesn't explicitly exclude alternatives, the simplicity of the operation makes the usage obvious. A sibling like toolkit_info might overlap, but no guidance is provided.

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, destructiveHint=false, and idempotentHint=true, so the safety profile is covered. The description adds useful detail about what information is returned (installed MCPs, connection status, accounts, catalog tool counts), which aids in predicting output. It does not mention any side effects or dependencies, but given the annotations, no additional disclosure is necessary, and there is no contradiction.

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

Conciseness5/5

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

One clear, concise sentence that precisely describes the tool's output. No filler or ambiguity. The structure is optimal for a stateless read-only info tool.

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?

Given the annotations (read-only, idempotent, non-destructive) and the clear description of what it returns, this is complete. It doesn't need to describe error conditions or output schemas because it's a simple informational call. The sibling tools are all action-oriented, so this stands out as the state-checking 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 tool has zero parameters eager. The schema shows an empty properties object, and the description implies no required inputs. Thus parameter semantics are irrelevant; the tool is fully self-contained. The description clarifies that it just returns state without specifying inputs.

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: to return the current toolkit state, listing installed MCPs, connection status, connected accounts, and catalog tool counts. It uses a specific verb ('Returns') and describes the resource ('toolkit state') with concrete details, distinguishing it 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 implies usage when the agent needs to inspect the overall toolkit state (installed MCPs, connections, accounts). It does not explicitly exclude other tools or mention alternatives, but the read-only informational nature is clear. Since it's self-contained and doesn't conflict with siblings, a 4 is appropriate.

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
    Not graded
    quality
    C
    maintenance
    Consulta em fonte oficial o cadastro do Conselho Regional de Odontologia BA, com ferramenta de leitura única e pagamento pré-pago por uso.
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    Provides read-only access to official dentistry registration data from the Paraíba Regional Council of Dentistry (CRO-PB) via a hosted, pay-per-use MCP API.
    MIT

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.