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

@produckt/mcp-server

v1.0.0

Published

MCP server for Produckt — connect AI assistants to your product planning boards

Readme

Produckt MCP Server

Connect AI assistants to your Produckt boards via Model Context Protocol (MCP).

Read board data, create cards, manage sprints, and analyze dependencies — all from Claude Desktop, Cursor, VS Code, or any MCP-compatible AI tool.

Setup

1. Get Your API Token

Log in to get a JWT token:

curl -s http://localhost:3001/api/auth/login \
  -H 'Content-Type: application/json' \
  -d '{"email":"[email protected]","password":"yourpassword"}' \
  | jq -r '.data.token'

2. Build the Server

cd mcp-server
npm install
npm run build

3. Configure Your AI Tool

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "produckt": {
      "command": "node",
      "args": ["/path/to/produckt/mcp-server/dist/index.js"],
      "env": {
        "PRODUCKT_API_URL": "http://localhost:3001/api",
        "PRODUCKT_API_TOKEN": "your-jwt-token"
      }
    }
  }
}

Cursor / VS Code (Claude Code)

Add to .mcp.json in your project root:

{
  "mcpServers": {
    "produckt": {
      "command": "node",
      "args": ["./mcp-server/dist/index.js"],
      "env": {
        "PRODUCKT_API_URL": "http://localhost:3001/api",
        "PRODUCKT_API_TOKEN": "your-jwt-token"
      }
    }
  }
}

Available Tools (19)

Read Operations

| Tool | Description | |------|-------------| | list_projects | List all projects you have access to | | list_boards | List boards in a project | | get_board_overview | Full board picture: hierarchy, cards, connections, properties | | list_cards | List cards with optional level/parent filtering | | get_card | Detailed single card with properties and connections | | search | Search across cards, boards, and projects |

Write Operations

| Tool | Description | |------|-------------| | create_card | Create a new card on a board | | update_card | Update card title, content, dates, or parent | | delete_card | Delete a card and its descendants | | set_card_properties | Set status, story points, or any property | | create_connection | Connect two cards (link or blocker) | | delete_connection | Remove a connection |

Sprint Management

| Tool | Description | |------|-------------| | list_sprints | List sprints (optionally filter by status) | | get_sprint_details | Sprint metrics, health score, and progress | | add_cards_to_sprint | Add cards to a sprint | | remove_cards_from_sprint | Remove cards from a sprint |

Intelligence

| Tool | Description | |------|-------------| | get_dependency_graph | Board-wide dependency analysis with critical path | | get_blocker_chain | Trace upstream/downstream blockers for a card | | add_comment | Add a comment to a card |

Example Conversations

"What's on my board?"

The AI calls list_projectslist_boardsget_board_overview to give you a full picture.

"Create a card for user authentication under the Auth module"

The AI calls get_board_overview to find the Auth module's card ID and level, then create_card with the right parentCardId and levelId.

"What's blocking the release?"

The AI calls get_dependency_graph to identify the critical path and bottleneck cards.

"Move PROJ-42 to In Progress"

The AI calls search to find the card, get_board_overview to find the status property and "In Progress" option ID, then set_card_properties.

Environment Variables

| Variable | Required | Default | Description | |----------|----------|---------|-------------| | PRODUCKT_API_URL | No | http://localhost:3001/api | Produckt API base URL | | PRODUCKT_API_TOKEN | Yes | — | JWT token from login |

Development

npm run dev    # Watch mode with tsx
npm run build  # Compile TypeScript
npm start      # Run compiled server