What a Plan! — MCP Server
Server Details
Descubre eventos en España: filtra por texto, categoría, ubicación, precio y fecha. 38 categorías.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP · MCP 2025-06-18
- URL
TDQS
Scored across 3 tools
Each tool has a clear, distinct purpose: searching for events, getting details on a specific event, and listing categories. No overlap or ambiguity.
All tool names follow a consistent verb_noun pattern in snake_case (search_events, get_event, list_categories), making them predictable and easy to remember.
Three tools is an appropriate and focused set for a read-only event discovery server. Each tool earns its place, covering the essential workflow of search, detail, and category listing without bloat.
For a read-only event browsing domain, the set covers the full typical agent workflow: search with filters, get details, and list categories for context. No obvious gaps.
Available Tools
3 toolsget_eventAInspect
Obtiene los detalles completos de un evento específico por su slug. Usa esta herramienta después de search_events para obtener información detallada.
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | Slug único del evento (ej: "concierto-rock-leon-2026"). Obligatorio. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It states the tool retrieves 'complete details', but does not disclose any potential side effects, authentication needs, or return format. For a read-only tool, this is adequate but could be improved with specifics on response contents.
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 with no wasted words. It front-loads the purpose and follows with usage instruction. Perfectly concise.
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?
The description covers purpose and usage but lacks details on output/return value. Since there is no output schema, the agent would benefit from knowing what fields or information are included in 'complete details'. This gap reduces completeness.
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?
Schema coverage is 100% and the schema already describes the 'slug' parameter well. The description adds an example but no additional semantic context beyond what the schema provides, so baseline 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 clearly states the tool's purpose: retrieving complete event details by slug. It distinguishes from sibling tools by referencing search_events and stating that this tool provides detailed information after a search.
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 to use this tool after search_events, providing clear workflow context. While it doesn't explicitly list when not to use it, the guidance is sufficient for an agent to understand the intended usage sequence.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_categoriesAInspect
Lista todas las categorías de planes disponibles en What a Plan! (ej: Música en Directo, Teatro, Gastronomía, Deportes, etc.)
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the transparency burden. It implies a read-only operation by stating it lists categories, which is sufficient for a simple retrieval tool. No behavioral traits like side effects or authentication are needed for this straightforward function.
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 with no fluff, efficiently conveying the tool's purpose and providing examples. Every word 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?
Given the tool has no parameters, no output schema, and is a simple list operation, the description is complete enough. It includes examples of categories, which helps the agent understand the output. It could mention if the list is static or dynamic, but not necessary.
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?
There are no parameters (0 params), and schema coverage is 100%. According to guidelines, baseline is 4. The description adds no parameter details, but none are needed.
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 verb 'list' clearly indicates the operation, and the resource 'categories' is explicit. The description provides examples of categories, distinguishing it from sibling tools get_event and search_events.
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 what the tool does but does not specify when to use it compared to siblings or provide any exclusions. The context signals and sibling names help infer usage, but the description itself lacks explicit guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_eventsAInspect
Busca planes y eventos en What a Plan! usando múltiples filtros. Usa esta herramienta cuando alguien pregunte por planes, eventos, actividades, o qué hacer. Para filtrar por ubicación, proporciona coordenadas lat/lng y radio en metros (puedes determinar coordenadas desde nombres de ciudades). Ejemplos de consultas: "planes en León para niños", "conciertos gratis este fin de semana", "qué hacer mañana en Valladolid"
| Name | Required | Description | Default |
|---|---|---|---|
| lat | No | Latitud del centro de búsqueda (ej: 42.5987 para León). Proporciónala SEMPRE que sepas la ubicación. | |
| lng | No | Longitud del centro de búsqueda (ej: -5.5669 para León). Proporciónala junto con lat. | |
| city | No | Nombre de ciudad como fallback si no puedes determinar coordenadas (menos preciso que lat/lng) | |
| limit | No | Número máximo de resultados (default: 20, máx: 50) | |
| radius | No | Radio de búsqueda en metros (default: 10000 = 10km). Usa 20000 para área metropolitana. | |
| search | No | Palabras clave en título o descripción (ej: "niños", "rock", "gratis", "gastronomía") | |
| category | No | Nombre o slug de categoría (ej: "Música en Directo", "musica-en-directo") | |
| end_date | No | Fecha máxima en formato YYYY-MM-DD (ej: "2026-06-07" para fin de semana) | |
| max_price | No | Precio máximo (ej: 20) | |
| min_price | No | Precio mínimo (ej: 0 para gratis) | |
| start_date | No | Fecha mínima en formato YYYY-MM-DD (ej: "2026-06-05") |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It does not disclose behavioral traits such as whether the tool is read-only, auth requirements, rate limits, or side effects. The description only focuses on usage, not behavior.
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 4 sentences and front-loads the purpose. It is reasonably concise, though the second and third sentences could be merged. No redundant or wasted words.
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 11 parameters all described in schema and no output schema, the description covers usage context and examples. However, it lacks information about output format or pagination. For a search tool, this is adequate but not complete.
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?
Schema description coverage is 100%, so baseline is 3. The description adds value by explaining usage patterns (e.g., 'puedes determinar coordenadas desde nombres de ciudades') and giving example keywords. This goes beyond the schema's per-parameter descriptions.
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 it searches for plans/events using multiple filters. It distinguishes from siblings 'get_event' (single event) and 'list_categories' (categories) by specifying it's a multi-filter search tool.
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 explicitly states when to use the tool: 'when someone asks about plans, events, activities, or what to do.' It provides examples and explains the preference for lat/lng over city. However, it does not include when not to use it or alternatives beyond sibling tools.
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.
3 tool updates
- First observed
get_event - First observed
list_categories - First observed
search_events
Related MCP Connectors
Cartelera de España: películas, cines, sesiones, recomendaciones y enlaces de compra.
Servidor MCP per surtdecasa.cat: agenda cultural de Catalunya, cartellera de cinema i poblacions.
Subvenciones, licitaciones y boletines oficiales de España y Europa para tu IA. Gratis, sin login.
Live-concert discovery: 44,000+ upcoming concerts worldwide by city, artist, genre or festival.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceDiscover tech events, startup meetups, AI events across cities including hidden ones.25 npm2MIT
- AlicenseAqualityBmaintenanceProvides music events, concerts, music festivals, nightclubs and other events information.172MIT
- AlicenseAqualityCmaintenanceDiscover and book theatre, shows, events, tours and experiences across 700+ cities worldwide on tickadoo® with real-time pricing and booking links.42 npm1MIT
- FlicenseNot gradedqualityDmaintenanceEnables searching and retrieving details of over 500,000 Spanish government grants and subsidies from the official BDNS database, without requiring an API key.-
Glama MCP Gateway
Add one secure layer between your agents and this server.