@mudravaorg/mcp-server
Provides tools for interacting with GitHub repositories, including creating pull requests, committing files, retrieving repository tree and file content, and getting GitHub context for bug fixes.
Click on "Deploy 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., "@@mudravaorg/mcp-serverSearch for high-priority open bugs"
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.
@mudravaorg/mcp-server
MCP (Model Context Protocol) server for PixelFixer — a visual bug tracking and kanban board tool. Connects AI agents (Claude, Cursor, VS Code Copilot, Windsurf) to your PixelFixer projects.
What it does
This MCP server gives AI agents full access to your PixelFixer workspace:
Category | Tools |
Session |
|
Teams & Projects |
|
Tasks |
|
Comments |
|
Kanban |
|
GitHub |
|
AI Pipeline |
|
v1.0 highlights
Session context — call
init_sessiononce; all tools auto-use your team/project IDsTask numbers —
get_task,start_task, etc. accepttaskNumber: 42instead of raw IDsCompact responses — list views return summaries (~90% fewer tokens than v0.2)
Retry & timeout — automatic retry with backoff on 429/5xx, 30s request timeout
Better errors — human-readable messages that help AI self-correct
Related MCP server: kanban-mcp
Quick Start
1. Get an API Token
Go to PixelFixer → Team Settings → API Tokens and create a token with read + write scopes.
2. Configure your IDE
VS Code (.vscode/mcp.json):
{
"servers": {
"pixelfixer": {
"command": "npx",
"args": ["-y", "@mudravaorg/mcp-server"],
"env": {
"PIXELFIXER_API_TOKEN": "pf_your_token_here",
"PIXELFIXER_API_URL": "https://pixelfixer.mudrava.com"
}
}
}
}Cursor (.cursor/mcp.json) / Claude Desktop (claude_desktop_config.json):
{
"mcpServers": {
"pixelfixer": {
"command": "npx",
"args": ["-y", "@mudravaorg/mcp-server"],
"env": {
"PIXELFIXER_API_TOKEN": "pf_your_token_here",
"PIXELFIXER_API_URL": "https://pixelfixer.mudrava.com"
}
}
}
}Note: VS Code uses
"servers"as the root key, while Cursor and Claude Desktop use"mcpServers".
3. Start using it
Ask your AI agent:
"Check my PixelFixer tasks and fix what's in the AI queue"
"Start task #42 and fix it"
"Search for high-priority open bugs"
"Create a PR that fixes the button color issue from task #15"
Environment Variables
Variable | Required | Default | Description |
| Yes | — | Personal API token (starts with |
| No |
| PixelFixer instance URL |
Local Development
If you're running PixelFixer from source, you can use the local build instead of the npm package:
cd packages/mcp-server
pnpm install
pnpm buildThen point your IDE to the local file:
{
"servers": {
"pixelfixer": {
"command": "node",
"args": ["${workspaceFolder}/packages/mcp-server/dist/index.js"],
"env": {
"PIXELFIXER_API_TOKEN": "pf_your_token_here",
"PIXELFIXER_API_URL": "http://localhost:3000"
}
}
}
}Tool Reference
init_session
The recommended first call in every session. Auto-discovers your team and project (if you have exactly one of each), sets the session context, and returns the AI task queue as compact summaries. After this, all tools auto-fill teamId/projectId.
start_task
Start working on an AI task. Moves the task to In Progress, sets AI status to PROCESSING, and returns full context: task details, comments, GitHub info, columns, and a workflow guide. Accepts taskId or taskNumber.
search_tasks
Search with multiple filters:
q— text search (title, description, task number)status— OPEN, IN_PROGRESS, RESOLVED, CLOSEDpriority— LOW, MEDIUM, HIGH, CRITICALaiStatus— NONE, QUEUED, PROCESSING, COMPLETED, FAILEDassigneeId,columnId,tag
create_pull_request
Creates a branch and PR in the connected GitHub repo. Example:
branchName: "fix/PF-42-button-color"
title: "Fix button color on dashboard"
body: "Resolves PF-42. Changed primary button color..."Security
API tokens are hashed (SHA-256) in the database — even a DB leak won't expose tokens
Tokens have scoped permissions (read / write / admin)
The MCP server runs locally on your machine — data goes directly to your PixelFixer instance over HTTPS
No data is sent to third parties
License
MIT
This server cannot be deployed
Maintenance
Related MCP Connectors
Nifty's MCP server — exposes tasks, projects, messages, and files as tools for AI agents.
Official MCP server for Agentwork — delegate tasks to AI agents with human-in-the-loop
MCP server for Flux AI image generation
Official MCP server for Qase — manage test cases, runs, suites, defects via AI tools.
Related MCP Servers
- AlicenseCqualityDmaintenanceMCP server for Plane integration, enabling AI agents to interact with Plane APIs and services for project management tasks.100MIT
- AlicenseBqualityFmaintenanceAn MCP server that provides a database-backed kanban board with 40+ tools for AI agents to track issues, features, todos, epics, and diary entries across projects, including status workflows, relationships, and semantic search.4583MIT
- AlicenseNot gradedqualityDmaintenanceMCP server for programmatically creating and editing Aseprite sprites, enabling AI agents to draw, manage layers and frames, and iterate until the desired result is achieved.MIT
- AlicenseNot gradedqualityFmaintenanceMCP server for generating style-consistent pixel art assets from PixelLab API, with project management, asset review, and an embedded Claude assistant.MIT