npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

taiga-mcp

v1.0.0

Published

MCP server for interacting with Taiga using natural language

Readme

Taiga MCP Server

An MCP (Model Context Protocol) server that allows you to interact with Taiga using natural language via Claude or other MCP-compatible AI assistants. This server enables you to list your projects, create user stories, add tasks, and more.

Features

  • Authenticate with Taiga
  • List all your Taiga projects
  • Get detailed information about a specific project
  • Create user stories within a project
  • List user stories in a project
  • Create tasks within user stories
  • Interact with Taiga using natural language through Claude

Prerequisites

  • Node.js (v16 or higher)
  • npm
  • A Taiga account

Installation

Using npx (recommended)

The easiest way to use the Taiga MCP server is directly with npx:

npx taigamcp

This will download and run the latest version of the server.

From npm

You can also install the package globally:

npm install -g taigamcp

Then run it:

taigamcp

From source

  1. Clone this repository:

    git clone <repository-url>
    cd mcpTAIGA
  2. Install dependencies:

    npm install
  3. Run the server:

    npm start

Configuration

Create a .env file with your Taiga credentials:

TAIGA_API_URL=https://api.taiga.io/api/v1
TAIGA_USERNAME=your_username
TAIGA_PASSWORD=your_password

You can also pass these credentials directly when using the authenticate tool.

Claude Desktop Configuration

To add this server to Claude Desktop, update your claude_desktop_config.json with:

"taiga-mcp": {
  "command": "npx",
  "args": ["-y", "taigamcp"]
}

For WSL users:

"taiga-mcp": {
  "command": "wsl.exe",
  "args": [
    "bash",
    "-c",
    "/usr/bin/npx -y taigamcp"
  ]
}

Available Tools

The server provides the following tools:

  1. authenticate - Authenticate with Taiga
  2. listProjects - List all your Taiga projects
  3. getProject - Get detailed information about a specific project
  4. createUserStory - Create a new user story in a project
  5. listUserStories - List all user stories in a project
  6. createTask - Create a new task within a user story

Example Prompts for Claude

Here are some example natural language prompts you can use with Claude:

  • "Authenticate with Taiga using my credentials"
  • "List all my Taiga projects"
  • "Show me details about project X"
  • "Create a new user story in project Y with title 'Implement login feature'"
  • "Show me all user stories in project Z"
  • "Add a task to user story #123 with the title 'Create API endpoint'"

Testing

For direct testing without Claude, you can use the included test clients:

node testClient.js

or

node testDirectClient.js

License

ISC