A MCP server for interacting with Taiga Project Manager
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"taigaApi": {
"args": [
"run",
"-i",
"--rm",
"-e",
"TAIGA_API_URL",
"-e",
"TAIGA_USERNAME",
"-e",
"TAIGA_PASSWORD",
"ghcr.io/tetra-2023/pytaiga-mcp:latest"
],
"command": "docker"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Community fork of talhaorak/pytaiga-mcp with additional features, CI/CD, and ongoing maintenance.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in productivity
Persistent memory using a knowledge graph
Dynamic problem-solving through sequential thought chains
mini cli search engine for your docs, knowledge bases, meeting notes, whatever. Tracking current sota approaches while being all local
Official Miro MCP server - Supports context to code and creating diagrams, docs, and data tables.
MCP Security Weekly
Get CVE alerts and security updates for Pytaiga Mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Community fork of talhaorak/pytaiga-mcp with additional features, CI/CD, and ongoing maintenance.
The Taiga MCP Bridge is a powerful integration layer that connects Taiga project management platform with the Model Context Protocol (MCP), enabling AI tools and workflows to interact seamlessly with Taiga's resources.
This bridge provides a comprehensive set of tools and resources for AI agents to:
By using the MCP standard, this bridge allows AI systems to maintain contextual awareness about project state and perform complex project management tasks programmatically.
The bridge supports the following Taiga resources with complete CRUD operations:
TAIGA_USERNAME and TAIGA_PASSWORD environment variables for seamless startup without manual loginAll tools support a verbosity parameter to control response size, reducing AI context usage:
| Level | Description | Use Case |
|---|---|---|
minimal | Core fields only (id, ref, subject, status, project) | Listing many items |
standard | Common fields including version for updates (default) | Normal operations |
full | Complete API response | Debugging, full details |
Example:
# Get minimal response for efficient context usage
stories = client.call_tool("list_user_stories", {
"project_id": 123,
"verbosity": "minimal"
})
# Returns: [{"id": 1, "ref": 42, "subject": "...", "status": 1, "project": 123}, ...]
This project uses uv for fast, reliable Python package management.
# Clone the repository
git clone https://github.com/TETRA-2023/pytaiga-mcp.git
cd pytaiga-mcp
# Install dependencies
./install.sh
For development (includes testing and code quality tools):
./install.sh --dev
If you prefer to install manually:
# Production dependencies only
uv pip install -e .
# With development dependencies
uv pip install -e ".[dev]"
Pull the pre-built image from GHCR:
docker pull ghcr.io/tetra-2023/pytaiga-mcp:latest
Or build locally:
docker build -t pytaiga-mcp .
Run with environment variables:
docker run -i --rm \
-e TAIGA_API_URL=https://your-taiga-instance.com \
-e TAIGA_USERNAME=you
... [View full README on GitHub](https://github.com/talhaorak/pytaiga-mcp#readme)