taiga-mcp
This server provides MCP access to Taiga's project management API, enabling AI assistants to manage all core project workflows via natural language.
Projects: List, create, update, and get projects by ID or slug (including module toggles for wiki, issues, kanban, backlog).
Issues: List (filter by status/assignee), create (with type, priority, severity, tags), update, delete, and look up available statuses, priorities, severities, and types.
User Stories: List (filter by sprint/status), create individually or in bulk, update, delete, and look up statuses.
Tasks: List (filter by user story, sprint, or assignee), create, update, delete, and look up statuses.
Sprints/Milestones: List (filter by closed), create (with dates and team availability), update (name, dates, close), get burndown/progress stats, and delete.
Epics: List, create (with color, assignee, tags), update, link/unlink user stories, list linked stories, and delete.
Wiki: List, create, update (content, slug), and delete pages.
Roles & Members: List, create, update, and delete roles (with permissions); list members; add members by email; get the authenticated user.
Comments & History: Add comments to issues, user stories, tasks, or epics; retrieve activity history and comments.
Search: Full-text search across issues, user stories, tasks, wiki pages, and epics within a project.
Lookups & Tags: Fetch available statuses, priorities, severities, issue types, and project tags with colors.
Authentication: Automatic login and token refresh.
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., "@taiga-mcplist all projects"
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.
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
Related MCP server: @isteamhq/mcp
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 |
| Create a task |
| Update a task |
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 |
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
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- 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/juanleon8581/taiga-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server