Skip to main content
Glama

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
VIKUNJA_URLYesBase URL of the Vikunja instance, without /api/v1.
VIKUNJA_TOKENYesAPI token with read/write access to tasks and comments. Never written to disk by this server, never logged.
VIKUNJA_PROJECTNoDefault project (id or title) for tools with an optional project parameter.

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

CapabilityDetails
tools
{
  "listChanged": false
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
list_projectsA

Lista los proyectos de Vikunja (id, título, archivado).

list_tasksA

Tareas de un proyecto (id o título; sin project usa VIKUNJA_PROJECT). Por defecto solo las pendientes, ordenadas por id.

get_taskD

Una tarea con su descripción completa (texto plano).

create_taskA

Crea una tarea en un proyecto (sin project usa VIKUNJA_PROJECT). La descripción es texto plano; los párrafos se separan con línea en blanco.

update_taskA

Actualiza una tarea: done=true la cierra (false la reabre); título y descripción opcionales. Los campos no indicados se conservan.

add_commentA

Añade un comentario a una tarea (p. ej. el commit o la versión que la cerró).

list_commentsB

Comentarios de una tarea, en orden.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A3.5/5.0

Scored across 7 tools

Disambiguation5/5

Each tool targets a distinct resource-action combination: projects vs tasks vs comments, with list/get/create/update/comment operations clearly separated. There is no overlap or ambiguity between tools like list_tasks and get_task, which are standard list-detail pairs.

Naming Consistency5/5

All tool names follow the consistent snake_case verb_noun pattern (list_, get_, create_, update_, add_). The verbs are simple and predictable, making the API easy to learn and navigate.

Tool Count5/5

Seven tools is well-scoped for a project/task management integration. Each tool covers a necessary operation without redundancy or bloat, fitting comfortably in the ideal 3-15 tool range.

Completeness4/5

Core task lifecycle is covered well: create, get, update (including done state), plus comments (add/list). The main gap is the lack of a delete task tool, and projects are only listed, not created or updated, but these are minor for typical task management use.

Maintenance

ActivityMaintained
ResponsivenessNo issues