Alfabot MCP Server
Server Details
Consulta de planes de productos Alfabot y agendamiento de reuniones para colegios y empresas
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
TDQS
Scored across 3 tools
Each tool has a clear, distinct purpose: checking availability, booking a meeting, and fetching plans. The descriptions explicitly link check_availability and book_meeting as a workflow, preventing confusion.
All tool names follow a consistent verb_noun snake_case pattern: book_meeting, check_availability, get_plans. This makes the tool set predictable and easy to navigate.
Three tools is a well-scoped set for this server's narrow purpose. Each tool serves a meaningful function without unnecessary overlap or bloat.
The meeting scheduling workflow is covered with availability check and booking, and plans are exposed for lookup. Minor gaps exist, such as no meeting cancellation/rescheduling or plan detail endpoint, but the core use cases are supported.
Available Tools
3 toolsbook_meetingAgendar reunionAInspect
Agenda una reunion de 30 minutos con Alfabot en un horario obtenido con check_availability. Requiere que el cliente MCP haya enviado un header Authorization: Bearer (scope meeting:book) en la request a /mcp; ver /auth.md.
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Nombre completo de quien agenda | |
| Yes | |||
| notes | No | Contexto breve de la reunion (opcional) | |
| endsAt | Yes | ISO 8601, exactamente 30 minutos despues de startsAt | |
| company | No | Colegio o empresa (opcional) | |
| startsAt | Yes | ISO 8601, debe ser un horario devuelto por check_availability |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It clearly states that the tool creates a meeting ('Agenda una reunion'), fixes the duration to 30 minutes, and requires an authenticated MCP request with a specific scope. It does not disclose return behavior or potential side effects like calendar invitations, but the core behavioral traits are adequately covered.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences long and front-loads the core action and duration before the auth prerequisite. Every sentence earns its place with no unnecessary filler or repetition of schema boilerplate.
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 6-parameter schema, no output schema, and no annotations, the description provides the essential workflow context: check availability first, book a fixed 30-minute slot, and authenticate with the required scope. It could mention what the response contains or what happens after a successful booking, but it is sufficient for an agent to invoke the tool correctly.
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 already documents 83% of parameters, so the baseline is 3. The description adds context that startsAt must be a time returned by check_availability and reinforces the 30-minute duration, but these are largely restatements of schema descriptions. No substantial new parameter-level meaning is added.
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 a specific verb and resource: it schedules a 30-minute meeting with Alfabot. It also clearly differentiates from siblings check_availability and get_plans because it is the action that actually books the meeting.
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 explicitly instructs that the meeting time must come from check_availability, giving the agent a clear prerequisite and workflow. It also notes the required Authorization header and scope. It does not explicitly mention when not to use the tool, but the context is strong enough to route the agent correctly.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
check_availabilityConsultar disponibilidad para reunionAInspect
Consulta horarios disponibles para agendar una reunion de 30 minutos con Alfabot. Usar el resultado (no inventar horarios) antes de llamar a book_meeting.
| Name | Required | Description | Default |
|---|---|---|---|
| days | No | Cantidad de dias hacia adelante a consultar |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the behavioral burden. It indicates a read-only lookup ('Consulta horarios disponibles') and warns against inventing slots, which implies dynamic data. However, it does not disclose validity windows, timezone behavior, or any constraints on the returned availability.
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 short sentences, with the core purpose front-loaded and the critical usage rule stated immediately after. There is no filler or redundancy; every sentence earns its place.
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 one-parameter lookup tool, the description provides the essential context: what to query, the meeting duration, and how to use the result. It does not describe the output format, but given the minimal complexity and the presence of a fully documented schema, this is a minor gap rather than a blocking issue.
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 only parameter, 'days', is fully documented in the schema with a description and valid range, giving 100% schema description coverage. The description adds no extra parameter semantics, so the baseline score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific action, 'Consulta horarios disponibles', with a clear object: available slots for a 30-minute meeting with Alfabot. It distinguishes itself from book_meeting by positioning itself as a prerequisite step, so an agent can clearly tell what this tool does.
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?
It gives explicit usage guidance: use the result before calling book_meeting and do not invent schedules. It does not mention exclusions relative to get_plans, but the core workflow sequencing is clear enough to guide correct invocation.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_plansConsultar planesAInspect
Consulta los planes disponibles de un producto Alfabot para colegios. El pricing esta en validacion con los primeros clientes y no se publica: displayPrice viene vacio a proposito, no inventar montos.
| Name | Required | Description | Default |
|---|---|---|---|
| lang | No | es | |
| product | No | Codigo del producto. Si se omite, devuelve el catalogo global de planes. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden and it supplies a decisive behavioral warning: pricing is under validation, displayPrice is intentionally empty, and the agent must not invent amounts. This is genuinely useful beyond the tool name and schema. It does not cover auth, rate limits, or side effects, but 'consulta' signals a read operation and the disclosed pricing caveat is the main risk.
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 short sentences, the first states primary purpose and the second delivers a critical warning; no filler or redundant restatement of the title. Information is front-loaded enough for an agent to parse quickly.
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 catalog lookup with two optional parameters and no output schema, the description covers purpose and the most important output quirk (displayPrice). The schema fills in parameter enums/defaults, and the warning prevents a common hallucination. Missing details are minor (exact response shape, lang effect).
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 already describes the `product` parameter and lists enums for both parameters; the description adds no input-parameter meaning. It references 'un producto' but not the `lang` parameter or the omission behavior, so at 50% schema coverage there remains a small gap. The pricing caveat concerns an output field, not parameter semantics.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a specific verb and object: 'Consulta los planes disponibles de un producto Alfabot para colegios', clearly identifying the action and the resource. The sibling tools are about meetings/availability, so the plan-catalog scope is distinct. The optional-product behavior in the schema reinforces the scope without contradicting it.
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 the tool is for retrieving available school-product plans but gives no explicit when-to-use/when-not-to-use guidance and never mentions alternative tools. No exclusions or sequencing are provided, so an agent must infer fit from the purpose alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
3 tool updates
- First observed
book_meeting - First observed
check_availability - First observed
get_plans
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity – fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user, then choose Claim with GitHub. An organization namespace such asio.github.acme/serveralso needs that organization to have installed the Glama AI GitHub App and approved its permissions, because GitHub discloses organization membership only to apps it has installed. Use HTTP or DNS when it has not.HTTP challenge – works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge – works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
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
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
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 Connectors
CRM AI-native para PYMEs de LATAM: contactos, ventas, cotizaciones, WhatsApp y métricas vía MCP.
- MyGhostsOAuthapp.myghosts
Send AI bots to attend meetings on your behalf. Get recordings, transcripts, and summaries.
Public MCP for gethal.ai — autonomous AI sales agent. Pricing, features, book a demo.
Email marketing y transaccional AI-native: campañas, correos 1-a-1, contactos, flujos y métricas.
Related MCP Servers
- AlicenseBqualityDmaintenanceMeet.bot is AI-native scheduling for people and agents. Check real calendar availability and book meetings on Google and Microsoft calendars through scheduling pages — and pay per meeting booked, not per user or seat. Actions: Book Meeting, Find Slots, Get Scheduling Page Info.8101MIT
- AlicenseAqualityDmaintenanceEnables managing AI meeting bots that can join, record, transcribe meetings, speak, send messages, and display media across platforms like Zoom, Google Meet, and Microsoft Teams.12MIT
- -licenseNot gradedqualityNot gradedmaintenanceEnables scheduling meetings and sending email confirmations through Google Calendar and Gmail APIs. Provides secure OAuth authentication, policy enforcement for working hours, and prevents scheduling conflicts.-
- FlicenseAqualityDmaintenanceAI scheduling assistant for agents. Timezone conversion, public holidays for 100+ countries, business hours checker, multi-timezone meeting slot finder, and Google Calendar event creation. x402 native — pay $0.01 per call, no signup needed.61-