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

taskq-mcp-server

v1.0.0

Published

MCP server for TaskQ task management API

Readme

TaskQ MCP Server

MCP (Model Context Protocol) server for TaskQ task management API. Enables Claude Code and other MCP-compatible tools to manage tasks, projects, queues and notifications in TaskQ.

Installation

npm install -g @taskq_mcp/server

Or use directly with npx:

npx @taskq_mcp/server

Configuration

Add the MCP server configuration to your .mcp.json:

Using npx (recommended)

{
  "mcpServers": {
    "taskq": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "@taskq_mcp/server"],
      "env": {
        "TASKQ_URL": "https://api.taskq.ru",
        "TASKQ_TOKEN": "tq_your_token"
      }
    }
  }
}

Using global install

{
  "mcpServers": {
    "taskq": {
      "type": "stdio",
      "command": "taskq-mcp-server",
      "env": {
        "TASKQ_URL": "https://api.taskq.ru",
        "TASKQ_TOKEN": "tq_your_token"
      }
    }
  }
}

Environment variables

| Variable | Description | Default | |---|---|---| | TASKQ_URL | TaskQ API URL | http://localhost:8080 | | TASKQ_TOKEN | API token for authorization | required |

Getting an API token

  1. Log in to TaskQ web interface
  2. Go to Profile -> API keys
  3. Click Create key, set a name
  4. Copy the generated token (starts with tq_)

The token is passed in the Authorization: Bearer tq_... header.

Available tools

Projects

| Tool | Description | |---|---| | list_projects | List user's projects (search, pagination) | | get_project | Project details | | create_project | Create a project | | update_project | Update a project | | get_project_participants | Project participants with roles | | get_project_stages | Project kanban board stages | | get_project_analytics | Project analytics (tasks by status, priority) |

Tasks

| Tool | Description | |---|---| | list_tasks | List tasks with filters (project, status, priority, assignee, labels, dates, search) | | get_task | Full task details | | create_task | Create a task | | update_task | Update task fields | | delete_task | Delete a task | | archive_task | Archive a task | | unarchive_task | Unarchive a task | | bulk_task_action | Bulk actions (status change, assign, priority, delete) | | get_task_activity | Task change log |

Comments

| Tool | Description | |---|---| | list_comments | Task comments | | add_comment | Add a comment (markdown) | | update_comment | Edit a comment | | delete_comment | Delete a comment |

Queue

| Tool | Description | |---|---| | get_queue | User's task queue with ETA calculation | | reorder_queue | Reorder a task in the queue |

Notifications

| Tool | Description | |---|---| | list_notifications | List notifications (filter by read status) | | get_unread_count | Unread notifications count | | mark_notification_read | Mark notification as read | | mark_all_notifications_read | Mark all notifications as read |

Users & Search

| Tool | Description | |---|---| | get_me | Current user profile | | search | Global search across tasks, projects and users | | list_labels | List available labels |

Usage examples

After configuring .mcp.json, tools are available automatically in Claude Code.

List project tasks:

Show all tasks for project with ID 5

Create a task:

Create a bug "Auth error" in project 3 with critical priority assigned to users 10 and 12

Check queue:

What's my task queue and ETA?

Find a task:

Find task PROJ-42

License

MIT