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

@mytaskboard/mcp-server

v0.2.1

Published

MCP server (stdio) for myTaskBoard Integration API — tasks, sprints, reminders, canvas, 44 tools + prompts

Readme

@mytaskboard/mcp-server

Connect Cursor, Claude Desktop, or any MCP client to one myTaskBoard board. The server uses your Board API Key (mbk_…) and the Integration HTTP API.

Version 0.2.1 — 44 tools + 4 workflow prompts; mixed Markdown/HTML task descriptions in tool docs.

Requirements

  • Node.js 20+ (for npx)
  • A Board API Key created in the web app: board → settings → API keys
    Scopes: tasks:read, tasks:write, comments:read, comments:write
  • Your backend HTTPS URL (no trailing slash)

Setup

Option A — copy from the web UI (recommended)

  1. Open board settings → API keys → section AI (MCP).
  2. Click Copy config.
  3. Paste into your MCP client config and replace the API key if needed.
  4. Restart the MCP client.

Option B — manual mcp.json

{
  "mcpServers": {
    "mytaskboard": {
      "command": "npx",
      "args": ["-y", "@mytaskboard/[email protected]"],
      "env": {
        "MYTASKBOARD_API_URL": "https://your-backend.example.com",
        "MYTASKBOARD_BOARD_ID": "your-board-id",
        "MYTASKBOARD_API_KEY": "mbk_..."
      }
    }
  }
}

Environment variables

| Variable | Required | Description | |----------|----------|-------------| | MYTASKBOARD_API_URL | yes | Backend base URL (origin only) | | MYTASKBOARD_BOARD_ID | yes | Board id from the UI | | MYTASKBOARD_API_KEY | yes | Board API Key secret (mbk_…) | | MYTASKBOARD_MCP_DEBUG | no | 1 — diagnostic logs on stderr | | MYTASKBOARD_TLS_INSECURE | no | 1 — dev/staging only: skip TLS verify |

Tools and prompts

43 tools covering board setup, tasks, subtasks, comments, sprints, reminders, and canvas widgets.

4 prompts: create_task_workflow, sprint_planning, canvas_relations, reminder_setup.

Full reference: docs/TOOLS.md.

Developers: tests and npm publish — docs/mcp/RELEASE.md.

Troubleshooting

| Problem | What to check | |---------|----------------| | Auth / 401 | Key correct; prefix mbk_ | | 403 Forbidden | Recreate key in UI | | Cannot create task | board_columns_list or column_create | | Sprints fail | Sprints must be enabled on the board | | Canvas empty | Set descriptionMode: "canvas" via task_update | | Tools missing | Restart MCP client after config change |

License

MIT