mcp-boards-nk
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| MATTERMOST_URL | Yes | Base URL of your Mattermost instance (no trailing slash) | |
| MATTERMOST_TOKEN | Yes | Personal access token of the Mattermost user |
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_teamsC | Lista todos los teams/workspaces de Mattermost Boards |
| list_boardsB | Lista los boards de un team |
| get_boardA | Obtiene detalles de un board incluyendo sus propiedades/columnas |
| list_cardsB | Lista las cards/tareas de un board |
| get_cardA | Obtiene el detalle completo de una card |
| create_cardB | Crea una nueva card/tarea en un board |
| update_cardB | Actualiza el título, propiedades o contenido de una card existente |
| delete_cardC | Elimina una card de un board |
| list_viewsB | Lista las vistas de un board (tablero, tabla, galería, etc.) |
| list_board_membersC | Lista los miembros de un board |
| add_commentC | Agrega un comentario a una card |
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 11 tools
Each tool clearly targets a distinct resource: cards, boards, members, teams, views, comments. No overlapping responsibilities, making it easy for an agent to select the right tool.
All tools follow a consistent verb_noun pattern in snake_case (e.g., create_card, list_boards). The verb is always imperative, and nouns are singular/plural appropriately, providing a predictable interface.
With 11 tools, the server is well-scoped for a board management system. Each tool covers a necessary operation without unnecessary duplication, striking a good balance between simplicity and functionality.
The server covers major CRUD operations for cards and provides board, member, view, team, and comment access. Minor gaps like board deletion or card reordering are missing, but the core workflows are fully supported.