Conselho Federal de Biomedicina: Cadastro
Server Details
Conselho Federal de Biomedicina: Cadastro, official-source lookup. Platform-hosted, pay per query wi
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- mcp-dir/cfbm_cadastro-mcp
- GitHub Stars
- 0
- Server Listing
- Conselho Federal de Biomedicina: Cadastro
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.1/5 across 7 of 7 tools scored. Lowest: 3.3/5.
Multiple tools deal with connection/status (authenticate, connect, toolkit_info) with overlapping responsibilities, making it unclear when to use which without reading long descriptions. The marketplace tool is also overloaded with many roles (search, invoke, install, prompts), blurring boundaries further.
Naming mixes imperative verbs (authenticate, connect, report_bug) with nouns (marketplace, toolkit_info) and one oddly prefixed domain tool (cfbm_cadastro_consultar). There is no consistent verb_noun or other clear pattern, making the set feel haphazard.
At 7 tools, the count is within a reasonable range, but 5 of the 7 are platform meta-tools that could likely be consolidated or are peripheral to the stated registration domain. The count is not extreme but the composition feels heavier than necessary.
The server's domain focus appears to be querying official Brazilian biomedicine registration records, yet only one tool (cfbm_cadastro_consultar) addresses this, with no related operations like history, listing, or structured data output. The remaining tools are about the platform itself, leaving the actual domain surface severely under-covered.
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?
The description explains behaviors beyond the annotations: it distinguishes permanent vs session-only auth, mentions the browser-based login flow, and specifies that no args returns a link. Annotations indicate idempotentHint=true and destructiveHint=false, and the description is consistent with these, adding useful context about token persistence.
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 somewhat long but every sentence serves a purpose: explaining the login flow, recommended permanent setup, and session-only alternative. It is front-loaded with the tool's core purpose before diving into mechanics.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with one optional parameter and no output schema, the description covers the important use cases and invocation patterns. It could mention success/error behavior or what the login link response contains, but the core interaction is sufficiently explained.
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?
Though schema description coverage is 0%, the description compensates by explaining that 'token' is a JWT pasted by the user for session-only login, and that omitting it yields the login link. This adds meaningful semantic meaning beyond the bare 'string' type in the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly identifies the tool as an authentication flow: logging in via browser and using the access token. It states the exact action ('log in', 'copy the access token') and distinguishes itself from sibling tools by specifying its authentication-link and token-acceptance behavior.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives explicit usage guidance: best practice is adding the token as a permanent config header; session-only login is achieved by passing { token: ... }; no arguments produces the login link. It clearly defines when to use each mode and how to invoke the tool.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
cfbm_cadastro_consultarBRead-onlyIdempotentInspect
Conselho Federal de Biomedicina: 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).
| Name | Required | Description | Default |
|---|---|---|---|
| nome | No | ||
| registro | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond annotations (readOnly, idempotent, non-destructive), the description discloses that it requires prepaid credit, no platform credentials, and that data is non-confidential, plus LGPD compliance. This adds practical behavioral context not in 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 dense paragraph that mixes purpose, hosting details, payment, and legal obligations. It is not overly long but is not front-loaded with the most critical info (purpose) and includes extra legalese that could be trimmed.
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 query tool, it covers key facts (source, payments, credentials, data sensitivity) but omits details about return format, response contents, or how the credit system works. The lack of output schema makes this more noticeable.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema has two parameters (nome, registro) with zero description coverage. The tool description does not explain these parameters or their usage, leaving the agent without additional meaning. It fails to compensate for the schema's lack of documentation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states it is for 'consulta em fonte oficial' and specifically mentions consulting official Brazilian sources, clearly indicating a read/query operation. It is distinct from siblings like authenticate and marketplace, though the verb 'consultar' is not explicitly written but implied. The purpose is clear enough.
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 (hosted by platform, pay-per-query) but does not explicitly say when to use this tool vs alternatives or when not to use it. It implies use for checking official data but offers no comparison to other tools.
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 establish this as a read-only, idempotent, non-destructive operation. The description adds meaningful behavioral context beyond that: it specifies the authenticated:true / empty pending[] return condition and the connect_url fallback when credentials are missing, giving agents a clear expectation of response shape.
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 core purpose, and every clause adds value by describing conditional behavior. There is no filler or redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a parameterless, read-only status tool with no output schema, the description covers the main return values under both relevant states (all connected vs missing credentials). It is sufficiently complete for an agent to know what to expect without additional documentation.
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 0 parameters, so there are no parameter semantics to explain; per the baseline for 0-param tools, a 4 is appropriate. The description compensates by explaining what the tool returns rather than input requirements.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool returns connection status and URLs, with a specific verb and resource. However, it does not explicitly differentiate this tool from sibling tools like authenticate, so it falls just short of a 5.
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 implies use for checking connection state and retrieving connect URLs when credentials are missing, but it never offers explicit guidance on when to use this versus alternatives such as authenticate. It gives conditional behavior rather than usage recommendations.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
marketplaceAInspect
The official mcp.ai marketplace — the in-platform catalog of every MCP/tool, AND the way to run them. Covers capability requests like "find an MCP that does X", "consulta um CPF", "is there a tool for Y". Core flow: action=search discovers MCPs by intent → describe returns one MCP's full profile (every tool with its id + params, pricing, auth) so you pick the right tool_id → invoke RUNS that tool. KEY: invoke works even when the MCP is NOT installed — it runs the tool pontualmente (one-off), without adding the MCP to the toolkit and without bloating the tool list. If the MCP needs a credential/login, invoke returns a connect link; if it is paid and the wallet is empty, invoke returns a checkout/top-up link (the user opens it, then you retry). Use install only to make an MCP PERMANENT in the active toolkit (its tools then show up natively in future sessions); prefer invoke for a single/occasional use. list_tools lists what is callable right now. subscribe/cancel handle per-MCP billing; report_bug sends feedback; request_mcp asks us to build a NEW MCP when nothing fits. Search/describe flag installed_in_toolkit vs installed_in_workspace. Writes (install/uninstall/subscribe/cancel and the one-off install behind invoke) require workspace owner/admin. It also carries the mcp.ai PROMPT LIBRARY, which is about ready-made prompt TEXT rather than MCPs: search_prompts finds one, get_prompt returns its full text with {{variables}} filled, and publish_prompt saves a prompt and returns a shareable mcp.ai/p/ link that opens without login.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| query | No | ||
| action | No | search | |
| mcp_id | No | ||
| message | No | ||
| tool_id | No | ||
| arguments | No | {} | |
| immediate | No | ||
| tier_slug | No | ||
| prompt_body | No | ||
| prompt_slug | No | ||
| prompt_tool | No | ||
| prompt_vars | No | {} | |
| conversation | No | [] | |
| prompt_title | No | ||
| request_name | No | ||
| cancel_reason | No | ||
| cancel_comment | No | ||
| prompt_targets | No | ||
| report_context | No | ||
| prompt_category | No | ||
| request_details | No | ||
| prompt_description | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description goes well beyond the annotations by disclosing that invoke runs one-off even when the MCP is not installed, that connect and checkout/top-up links are returned for auth/payment needs, that install makes an MCP permanent, and that writes require workspace owner/admin. It also reveals installed flag behavior and that prompt links open without login—rich behavioral context beyond readOnlyHint/destructiveHint.
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 long but information-dense; every sentence adds operational detail, and key concepts are front-loaded. It would benefit from bullet points or clearer separation of MCP flow vs prompt library, but the length is justified given the 14-action surface.
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 high complexity, no output schema, and no documented parameter details in the schema, the description provides a strong overview—covering workflow, permissions, auth/payment edge cases, and the prompt library—but stops short of enumerating per-action inputs and outputs (e.g., exact search/describe/list_tools response shapes). It is adequate for initial routing but incomplete for full invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With 23 parameters and 0% schema description coverage, the description must compensate but only covers a subset: action, mcp_id, tool_id, arguments (implied), prompt_slug, and prompt_vars indirectly. Many parameters (limit, query, message, immediate, tier_slug, cancel_reason, request_details, report_context, conversation, etc.) receive no explanation, leaving agents without clear semantics for the full action set.
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 the tool as the mcp.ai marketplace—both a catalog of MCP/tools and the execution mechanism—and enumerates its core actions (search, describe, invoke, install, subscribe, etc.). It distinguishes itself from siblings like report_bug and authenticate by covering the marketplace-specific flow and prompt library.
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 usage guidance is provided: the core flow (search → describe → invoke) is laid out, invoke vs install is contrasted with a clear preference ('prefer invoke for a single/occasional use'), and list_tools is positioned as the way to see currently callable tools. The prompt library section also separates when to use search_prompts/get_prompt/publish_prompt, plus notes on permission requirements.
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 already convey non-destructive and idempotent behavior. The description adds contextual guidance about what should be included for reproduction, but it does not disclose any deeper behavioral outcomes (e.g., ticket creation, server-side effects, response behavior). It provides some value beyond annotations but not rich detail.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, immediately front-loaded with the tool's purpose and followed by a single actionable instruction. No filler or redundant content.
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, low-parameter tool with no output schema, the description covers the core intent, use cases, and a key reproduction instruction. It is reasonably complete, though the `context` parameter remains underspecified and no return behavior is mentioned.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With 0% schema description coverage, the description bears the burden of explaining parameters. It clarifies the `conversation` parameter by describing it as an array of recent messages, and `message` is implied as the report content. However, the `context` parameter is left unexplained, and the description calls `conversation` an 'array' while the schema declares it as a string type, which could introduce ambiguity.
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 the tool's purpose with a specific verb and resource: 'Report a bug, missing feature, or send feedback.' This is unambiguous and distinct from the sibling tools, which are unrelated to bug reporting.
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 states the applicable contexts ('bug, missing feature, or feedback') and tells the agent to 'Include the conversation array with recent messages for reproduction.' It lacks an explicit when-not-to-use or alternative-tool reference, but no sibling is an obvious substitute.
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=true, idempotentHint=true, and destructiveHint=false. The description adds value by specifying the tool reveals both MCP platform and adapter versions, which goes beyond the bare annotation metadata. No contradiction exists.
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, clear sentence with no filler. It is appropriately sized for a zero-parameter, read-only version display tool.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple no-parameter version check with strong annotations, the description fully covers purpose and output scope. No output schema is necessary, and the tool is simple enough that nothing is left unexplained.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, so the baseline is 4 per the rubric. The description does not need to explain any input semantics, and no information is missing.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses the specific verb 'Show' and names the precise resource ('current MCP platform and adapter versions'). This clearly distinguishes it from sibling tools like 'authenticate' or 'connect', which serve entirely different functions.
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. With sibling 'toolkit_info' potentially overlapping as an informational tool, there is no exclusions or context to help an agent choose correctly.
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, giving the agent a safe profile. The description adds valuable context beyond annotations by specifying exactly what the returned state includes (MCPs, status, accounts, tool counts), which helps the agent anticipate the output without underselling it.
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 sentence that is front-loaded with the core action ('Returns the current toolkit state') and then itemizes the content in a compact list. Every word earns its place; there is zero fluff or repetition.
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 read-only state query with no parameters and no output schema, the description is complete. It enumerates all the components of the returned state, leaving nothing ambiguous about what the tool will report. No further details (pagination, formatting, etc.) are needed given the tool's simplicity.
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 coverage is trivially 100%. The description doesn't need to explain parameters; it focuses on the output. Baseline for 0 params is 4, and the description adds no unnecessary param-related noise, so it remains 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 returns the current toolkit state, specifying the exact contents: installed MCPs, connection status, connected accounts, and catalog tool counts. This verb+resource combination is explicit and distinguishes it from siblings like show_version (which likely returns version info) and authenticate/connect (which perform 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 implies when to use this tool: when you need to inspect the toolkit's current state (what's installed, status, accounts). It doesn't mention explicit exclusions or alternative tools, but the context is clear enough for an agent to recognize this as a status query. With no sibling that does exactly the same, the use case is unambiguous.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceProvides 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
- AlicenseNot gradedqualityCmaintenanceRead-only MCP server for querying official dental registration data from the Regional Council of Dentistry of Alagoas (Brazil). It provides a single tool to consult professional records via a hosted HTTP endpoint with prepaid credits.MIT
- AlicenseNot gradedqualityCmaintenanceMCP server for querying official pharmacy council registration data in São Paulo, Brazil. It provides a read-only tool to consult professional cadastro information via a hosted, pay-per-use HTTP endpoint.MIT
- AlicenseNot gradedqualityCmaintenanceEnables querying health establishment data from the Brazilian Federal Council of Medicine (CFM), providing read-only access to official information.MIT
Your Connectors
Sign in to create a connector for this server.