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

@taskworkr/mcp

v1.0.0

Published

MCP server for TaskWorkr - task management and project organization

Readme

TaskWorkr MCP Server

A Model Context Protocol (MCP) server for TaskWorkr - providing task management and project organization capabilities to AI assistants.

Features

  • Task Management: Create, read, update, and manage tasks
  • Project Organization: Organize tasks by projects
  • Status Tracking: Track task progress with different statuses
  • Priority Management: Set and manage task priorities
  • Category Classification: Organize tasks by categories
  • Time Estimation: Track estimated hours for tasks

Installation

npm install -g @taskworkr/mcp

Usage

With Cursor/Claude Desktop

Add to your MCP configuration file (.cursor/mcp.json or similar):

{
  "mcpServers": {
    "taskworkr": {
      "command": "@taskworkr/mcp",
      "env": {
        "DATABASE_URL": "your-postgresql-database-url"
      }
    }
  }
}

Environment Variables

  • DATABASE_URL: PostgreSQL connection string (required)

Available Tools

test_connection

Test the MCP server connection.

get_tasks

Retrieve tasks with optional filtering:

  • projectId: Filter by project ID
  • status: Filter by status (not_started, in_progress, completed, blocked)
  • limit: Maximum number of tasks to return (default: 20)

create_task

Create a new task:

  • title: Task title (required)
  • description: Task description (required)
  • projectId: Project ID (required)
  • priority: Task priority (low, medium, high, critical)
  • category: Task category (frontend, backend, database, etc.)
  • estimatedHours: Estimated hours to complete
  • tags: Array of tags

update_task_status

Update task status:

  • taskId: Task ID (required)
  • status: New status (required)
  • notes: Optional notes about the status change

get_projects

Retrieve all projects with optional task counts.

Development

# Clone the repository
git clone https://github.com/your-username/taskworkr-mcp.git
cd taskworkr-mcp

# Install dependencies
npm install

# Build the project
npm run build

# Run in development mode
npm run dev

License

MIT

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.