Skip to main content
Glama
jgonzalezar

MCP Issue Tracker

by jgonzalezar

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
ISSUE_TRACKER_API_URLNoA different REST API URL can be provided through the environment variable ISSUE_TRACKER_API_URL. By default, the MCP server connects to http://127.0.0.1:8000.http://127.0.0.1:8000

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
pingA

Check that the Issue Tracker MCP server is running.

list_issuesB

Return all issues from the Issue tracker API.

get_issueC

Return one issue by its ID.

create_issueD

Create new issue

update_issueC

Update one or more fields of an existing issue.

delete_issueC

Delete issue by its ID

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

B3.1/5.0

Scored across 6 tools

Disambiguation5/5

Each tool has a clear and distinct purpose: ping for health, and the remaining five tools map cleanly to list/get/create/update/delete operations on issues. There is no overlap or likely misselection between tools.

Naming Consistency5/5

All issue-specific tools follow a consistent verb_noun pattern (list_issues, get_issue, delete_issue, create_issue, update_issue). The only exception is ping, which is a conventional standalone health-check name and does not undermine the pattern.

Tool Count5/5

With 6 tools, the set is well-scoped for a small issue tracker MCP server. Every tool earns its place: five cover the issue lifecycle and one verifies server availability.

Completeness5/5

The tool surface provides full CRUD coverage for issues, including listing, retrieving, creating, updating, and deleting. No core lifecycle operation is missing for the stated purpose.

Maintenance

ActivityMaintained
ResponsivenessNo issues