taiga-mcp
taiga-mcp
MCP server for the Taiga project management API. Lets AI assistants (Claude, etc.) manage projects, issues, user stories, tasks, epics, sprints, wiki pages, and more through natural language.
Requirements
Node.js 18+
A running Taiga instance (cloud or self-hosted)
Claude Code, Claude Desktop, or any MCP-compatible client
Installation
Option A — from source (recommended)
git clone https://github.com/juanleon8581/taiga-mcp
cd taiga-mcp
npm install && npm run buildRegister with Claude Code:
claude mcp add taiga -s user \
-e TAIGA_URL=https://your-taiga-instance.com \
-e TAIGA_USERNAME=your_username \
-e TAIGA_PASSWORD=your_password \
-- node /absolute/path/to/taiga-mcp/dist/index.jsOption B — Claude Desktop
Clone and build as above, then add to claude_desktop_config.json:
{
"mcpServers": {
"taiga": {
"command": "node",
"args": ["/absolute/path/to/taiga-mcp/dist/index.js"],
"env": {
"TAIGA_URL": "https://your-taiga-instance.com",
"TAIGA_USERNAME": "your_username",
"TAIGA_PASSWORD": "your_password"
}
}
}
}Environment variables
Variable | Required | Description |
| Yes | Base URL of your Taiga instance (no trailing slash) |
| Yes | Taiga username or email |
| Yes | Taiga password |
Authentication
On startup the server logs in with your credentials and stores the JWT access token in memory. On token expiry (401), it automatically refreshes using the refresh token. If the refresh token also expires, it re-logs in with your credentials. Credentials are never sent more than necessary.
Available tools
Projects
Tool | Description |
| List all accessible projects |
| Get project details by ID or slug |
| Create a new project |
| Update project settings (name, description, visibility, etc.) |
Issues
Tool | Description |
| List issues with optional filters |
| Get issue details |
| Create a new issue |
| Update status, assignee, description, etc. |
User Stories
Tool | Description |
| List user stories, filter by sprint |
| Get user story details |
| Create a user story |
| Update a user story |
| Create multiple user stories at once |
Tasks
Tool | Description |
| List tasks, filter by US or sprint |
| Get task details, including full description |
| Create a task |
| Update a task |
| Move a task to a different user story (or unassign it) |
Milestones / Sprints
Tool | Description |
| List sprints |
| Get sprint details |
| Create a new sprint/milestone |
| Update sprint name, dates, or close it |
| Burndown and progress stats |
Epics
Tool | Description |
| List epics |
| Get epic details |
| Create an epic |
| Update an epic |
| List user stories linked to an epic |
| Link a user story to an epic |
| Remove the link |
Roles
Tool | Description |
| List all roles in a project (needed for story points) |
| Get role details including permissions |
| Create a new role in a project |
| Update role name, order, or permissions |
| Delete a role from a project |
Members & Lookups
Tool | Description |
| Get the authenticated user |
| List project members with user IDs |
| Add a user to a project by email (role defaults to first project role) |
| Issue status IDs for a project |
| User story status IDs |
| Task status IDs |
| Priority IDs |
| Severity IDs |
| Issue type IDs |
| Tags with colors |
Comments & History
Tool | Description |
| Add a comment to any object |
| Get activity history and comments |
Search
Tool | Description |
| Full-text search across issues, US, tasks, wiki, epics |
Wiki
Tool | Description |
| List wiki pages |
| Get page content |
| Create a wiki page |
| Update a wiki page |
| Delete a wiki page |
Attachments
Tool | Description |
| List attachments on an issue, US, task, epic, or wiki page |
| Download an attachment's file to local disk |
Delete
Tool | Description |
| Delete an issue permanently |
| Delete a user story permanently |
| Delete a task permanently |
| Delete an epic permanently |
| Delete a milestone permanently |
Verify connection
claude mcp list
# taiga: node ... - ✔ ConnectedUpdate
cd taiga-mcp
git pull
npm install && npm run buildLicense
MIT