bug_tracker_mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@bug_tracker_mcplog bug 'Homepage fails to load' severity major"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
bug_tracker_mcp
A lean, agent-first Model Context Protocol (MCP) server for tracking bugs, tasks, and context across coding sessions. Designed to give AI agents (like Claude Desktop, Antigravity, and Cursor) zero-friction persistent memory for issues discovered during development.
Overview
When pair-programming with AI agents, bugs and technical debt are frequently discovered mid-task. Without a persistent tracker, these issues get lost when context windows reset.
bug_tracker_mcp solves this with a lightweight SQLite-backed MCP server. It provides 6 fast MCP tools allowing agents to log, inspect, update, resolve, and delete bugs, all isolated per project. Every tool call requires an explicit project name (e.g. the repo name) supplied by the calling agent; the server never infers it from its own working directory, since a single long-lived MCP process can serve many different projects across a session.
Related MCP server: Telebugs MCP Server
Architecture
The system is organized into decoupled Python modules:
FastMCP Server (
bug_tracker_mcp.server): Defines stdio transport MCP tools usingfastmcp.FastMCP. Handles argument validation, requires aprojectname on every call, and converts internal exceptions to user-friendlyToolErrorresponses.Database Path Resolution (
bug_tracker_mcp.scope): Resolves the path to the single shared SQLite database:$XDG_DATA_HOME/bug-tracker-mcp/bugs.db(or~/.local/share/bug-tracker-mcp/bugs.db) by default, or$BUGTRACKER_ROOT/bugs.dbif overridden.SQLite Storage Layer (
bug_tracker_mcp.storage): Manages SQLite connections with WAL journal mode, busy timeouts, auto-migrations viauser_version, and full CRUD operations. Every read and write is scoped by aprojectcolumn, so bugs logged under one project are invisible to and cannot be mutated from another.Pydantic Models (
bug_tracker_mcp.models): Strict Pydantic models (Bug,BugSummary,BugListResponse) enforcing schema and typed responses.Environment Configuration (
bug_tracker_mcp.config): Reads an optional environment variable override for the shared database's storage directory.
Installation & Setup
Install and manage dependencies using uv:
# Clone repository
git clone https://github.com/realsidg/bug_tracker_mcp.git
cd bug_tracker_mcp
# Install dependencies and setup virtual environment
uv syncAgent Configuration
Register bug-tracker-mcp with your agent workspace or desktop client.
Workspace .mcp.json
Add to .mcp.json in your workspace root:
{
"mcpServers": {
"bug-tracker": {
"command": "uv",
"args": [
"run",
"--directory",
"/path/to/bug_tracker_mcp",
"bug-tracker-mcp"
]
}
}
}Claude Desktop (claude_desktop_config.json)
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"bug-tracker": {
"command": "uv",
"args": [
"run",
"--directory",
"/path/to/bug_tracker_mcp",
"bug-tracker-mcp"
]
}
}
}Environment Variables
You can override the storage location by setting an environment variable:
Variable | Description | Default |
| Overrides the directory holding the shared |
|
Tool Reference
bug_tracker_mcp exposes 6 tools to AI agents. Every tool requires a project name identifying which project the bugs belong to — use a consistent name (e.g. the repo name) for the same project across calls, since bugs are only ever returned to callers passing the matching project.
Tool Name | Parameters | Description |
|
| Logs a new bug or improvement into storage and returns the created |
|
| Lists lightweight |
|
| Returns complete details of a specific bug by ID within a project. Raises |
|
| Updates specific attributes of an existing bug within a project. Raises |
|
| Marks a bug as |
|
| Permanently removes a bug by ID within a project. Returns |
Development & Testing
Run all quality checks:
# Run pytest test suite
uv run pytest
# Check code formatting and linting
uv run ruff check .
uv run ruff format --check .
# Run static type checker in strict mode
uv run mypy src
# Run pre-commit hooks
uv run pre-commit run --all-filesMaintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceAn MCP server for intelligent project planning and task management featuring task tracking, bug reporting, and feature specification with SQLite persistence. It includes full-text search capabilities and automatic filesystem synchronization to keep project data organized and accessible.MIT
- FlicenseNot gradedqualityBmaintenanceAn MCP server that enables AI agents to retrieve and analyze error reports from a self-hosted Telebugs instance. It provides tools for listing projects, searching error groups, and fetching detailed reports directly from the Telebugs SQLite database.4
- FlicenseNot gradedqualityDmaintenanceA lightweight MCP server for tracking personal expenses, income, and budget summaries using SQLite.4
- FlicenseNot gradedqualityAmaintenanceA lightweight MCP server that provides cross-project progress tracking tools (list, refresh, read, update, mark) for agents to query and manage work status across multiple tracked projects.
Related MCP Connectors
A MCP server built for developers enabling Git based project management with project and personal…
Voice-powered bug reporting with 13 MCP tools. Record bugs by talking; let AI find and fix them.
Create, update, and publish changelog entries on your Patchlog changelog from any MCP client.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/realsidg/bug_tracker_mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server