Skip to main content
Glama
uvaresearch
by uvaresearch

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
DEBUGNoWhen set (any value), emits verbose HTTP and session logs to stderr.
WRAPPER_PATYesPersonal access token, wrapper_<32 alnum>. Must come from env, not CLI flag.
WRAPPER_BASE_URLYesBrowser sign-in URL of your QMS Wrapper instance. HTTPS only; plain HTTP allowed only for loopback or *.local.
WRAPPER_CACHE_DIRNoScratch dir, created with mode 0700.~/.cache/wrapper-mcp
WRAPPER_UPLOAD_DIRNoAbsolute path. task.attach will only read files inside this directory. Default-deny when unset.
WRAPPER_UPLOAD_MAX_BYTESNoPer-file upload size cap.52428800 (50 MB)

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": true
}
logging
{}
prompts
{
  "listChanged": true
}
resources
{
  "subscribe": false,
  "listChanged": true
}

Tools

Functions exposed to the LLM to take actions

NameDescription
task.listA

List tasks assigned to me, newest first. Read-only.

task.getA

Full task detail incl. journal, attachments, sub-issues, relations.

task.updateA

Apply ONE batched change to a task — all non-null fields go in a single journal entry. Use for: starting (status=inprogress), finishing (status=resolved + comment), fixing wrong title/priority alongside other work. Do NOT call twice in a row for the same task.

task.createA

Create a new bug or task via the unified create-with-submission flow. REQUIRES a previewed-and-approved payload — call this only after the /qms-file prompt has gathered fields, rendered a preview, and the user has explicitly approved. previewedHash is the SHA-256 of the canonical preview JSON; the client refuses mismatches.

task.assignA

Transfer assignment to another user. Typically IRREVERSIBLE — once transferred the previous assignee may lose access. Never call without explicit user instruction. userExplicitlyRequested MUST be true.

task.relateA

Link this task to another (relates / blocks / duplicates / etc). Prefer this over creating a duplicate when an existing task already covers the same issue (R8).

task.tagC

Merge a set of claude-* tags into the task. Idempotent.

task.attachA

Upload one or more files to a task in a single multipart request (one journal entry).

Prompts

Interactive templates invoked by user choice

NameDescription
qms-plateSummarize my open tasks grouped by priority.
qms-summaryRead a task plus attachments and produce a user-language summary.
qms-startFlip a task to in-progress in one atomic update.
qms-finishClose out a task with status=resolved + a one-paragraph comment in a single update.
qms-fileGather, preview, approve, hash, and create — the R9 flow for task.create.

Resources

Contextual data attached and managed by the client

NameDescription
lookups.statusesAll issue statuses (id, name, identifier, closed flag).
lookups.prioritiesAll issue priorities (id, name).
lookups.trackersAll trackers (bug, task, etc.) with id and identifier.
meIdentity of the PAT owner (id, email, username, name).

TDQS

A3.9/5.0

Scored across 8 tools

Disambiguation5/5

Each tool targets a distinct action (assign, attach, create, get, list, relate, tag, update) on tasks. There is no overlap; every verb clearly defines a different operation, making it easy for an agent to select the correct tool.

Naming Consistency5/5

All tools follow a perfect 'task.verb' pattern using lowercase and dot separation. This consistency makes the tool surface predictable and easy to navigate.

Tool Count5/5

With 8 tools, the set is well-scoped for a task management system. Each tool covers a necessary operation without redundancy or bloat.

Completeness5/5

The tools provide comprehensive coverage for task lifecycle: create, read (get/list), update, plus assignment, tagging, relating, and attachments. The only potential gap is an explicit delete, but the update tool can handle status changes and soft deletion if needed. Overall, it feels complete for the domain.