mcp-server-interview
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
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": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| create_listD | Crear lista ‘Prueba’ |
| update_list_nameC | Cambiar, actualizar o update el nombre de la lista ‘OldName’ a o por 'NewName' |
| get_listC | Obter, ver la lista con nombre ‘Prueba’ |
| create_taskC | Crear task o tarea ‘Prueba’ con descripcion 'desc' en la lista 'nombre de lista' |
| start_a_taskC | Comenzar, empezar o start una tarea / task con nombre 'name' en la lista llamada 'listname' |
| complete_a_taskC | Complete, terminate o finalizar una tarea / task con nombre 'name' en la lista llamada 'listname' |
| delete_a_taskA | Eliminar, remover o quitar una tarea / task con nombre 'name' de la lista llamada 'listname' |
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 7 tools
All seven tools target distinct operations: list creation, list renaming, list retrieval, task creation, task starting, task completion, and task deletion. No two tools have overlapping purposes.
Tool names follow a verb_noun pattern, but there is inconsistency: 'start_a_task' and 'complete_a_task' include an extra 'a_', while others like 'create_task' and 'delete_a_task' vary in article usage. This breaks the otherwise consistent pattern.
Seven tools cover the essential operations for a list-based task manager without being overly numerous or insufficient. The count feels right for the domain.
Basic CRUD is present but incomplete: there is no delete list, no update task (e.g., description or name), and no way to list all tasks in a list. Notable gaps exist for a full task management workflow.