gamecalendar-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| DATABASE_URL | Yes | Cadena de conexión Neon (la misma de gamecalendar) | |
| GAMECALENDAR_MCP_WRITE | No | 1 para habilitar escritura |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| list_releasesC | Juegos de una sección (upcoming/recent/anticipated/catalog), opcionalmente por plataforma. |
| search_gamesB | Busca juegos por nombre (coincidencia parcial, insensible a mayúsculas). |
| get_gameC | Ficha completa de un juego por id (número) o slug. |
| list_blog_postsC | Posts del blog. Por defecto solo publicados; include_drafts incluye borradores. |
| get_blog_postB | Post del blog completo (incluye body) por slug. |
| db_statsA | Resumen: total de juegos por sección y nº de posts (publicados/borradores). |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 6 tools
Each tool has a clear, distinct purpose: db_stats for statistics, get_blog_post for a single post, get_game for a single game, list_blog_posts for listing posts, list_releases for filtered games, and search_games for search. No overlap in functionality.
Most tools follow a verb_noun pattern with snake_case (e.g., get_blog_post, list_releases). The exception is db_stats, which uses an abbreviation instead of a verb-noun structure, but it remains clear and consistent with the overall style.
With 6 tools, the server is well-scoped for a game calendar and blog querying system. Each tool addresses a specific need without redundancy or excessive granularity.
The tool set covers read operations (get, list, search, stats) for games and blog posts, but lacks any create, update, or delete operations. For a query-only server this might be acceptable, but the absence of write capabilities limits the surface for typical CRUD tasks.