drio
Open app

Taiga-MCP

Source

A MCP server implementation for interacting with Taiga Project Management software

Catalog onlyCatalog onlySTDIO

Overview

Taiga-MCP is a server implementation designed to facilitate interaction with the Taiga Project Management software, enabling users to manage their projects more effectively.

To use Taiga-MCP, set up the server by following the installation instructions provided in the GitHub repository, and then connect it to your Taiga instance to start managing projects.

  • Seamless integration with Taiga Project Management software - Support for multiple project management functionalities - Open-source and customizable
  1. Managing software development projects using Taiga.
  2. Collaborating with teams on project tasks and milestones.
  3. Customizing project management workflows to fit specific needs.

Add to your AI client

Use these steps to connect Taiga-MCP in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "taiga-mcp-talhaorak": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-taiga-mcp-talhaorak"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "taiga-mcp-talhaorak": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-taiga-mcp-talhaorak"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "taiga-mcp-talhaorak": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-taiga-mcp-talhaorak"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "taiga-mcp-talhaorak": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-taiga-mcp-talhaorak"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "taiga-mcp-talhaorak": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-taiga-mcp-talhaorak"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "taiga-mcp-talhaorak": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-taiga-mcp-talhaorak"
      ]
    }
  }
}

FAQ

Is Taiga-MCP free to use?

Yes! Taiga-MCP is open-source and available for free under the MIT license.

Can I customize Taiga-MCP?

Yes! Being open-source, you can modify the code to suit your project management needs.

Where can I find the documentation?

Documentation is available on the GitHub repository.