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

@rezzed.ai/dispatch

v0.1.0

Published

A lightweight MCP task server for Claude Code

Readme

@rezzedai/dispatch

A lightweight MCP task server for any MCP-compatible client. Create tasks, claim them, complete them. Works with Claude Code, ChatGPT, Gemini, Cursor, Windsurf, Cline, or any tool supporting the MCP standard.

{
  "mcpServers": {
    "dispatch": {
      "command": "npx",
      "args": ["@rezzedai/dispatch"]
    }
  }
}

What It Does

dispatch gives Claude Code a simple task queue via MCP. Four tools, one SQLite database, zero configuration.

  • create_task — Add a task to the queue
  • get_tasks — List tasks by status
  • claim_task — Mark a task as in-progress
  • complete_task — Mark a task as done

No accounts. No cloud. No config files. Just tasks.

Install

npm install -g @rezzedai/dispatch

Then add to your Claude Code MCP config (.claude.json or .mcp.json):

{
  "mcpServers": {
    "dispatch": {
      "command": "npx",
      "args": ["@rezzedai/dispatch"]
    }
  }
}

Requirements: Node.js 18+

Quick Start

Once configured, any MCP client can use dispatch naturally:

"Create a task to refactor the auth module"

→ create_task(title: "Refactor auth module", description: "Migrate to JWT", priority: "high")
→ Task created: abc-123

"What tasks are pending?"

→ get_tasks(status: "pending")
→ 1 task: "Refactor auth module" (high priority)

"Claim the auth task and start working"

→ claim_task(taskId: "abc-123")
→ Task claimed.

"Done with the auth refactor"

→ complete_task(taskId: "abc-123", result: "Migrated to JWT. 12 endpoints updated.")
→ Task completed.

MCP Tools

create_task

Create a new task in the queue.

| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | title | string | Yes | Task title (max 200 chars) | | description | string | No | Detailed description (max 4000 chars) | | priority | string | No | low, normal (default), high |

get_tasks

List tasks by status.

| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | status | string | No | pending (default), active, done, all | | limit | number | No | Max results (default 10, max 50) |

claim_task

Claim a pending task to start working on it.

| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | taskId | string | Yes | The task ID to claim |

complete_task

Mark a task as done.

| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | taskId | string | Yes | The task ID to complete | | result | string | No | Summary of what was done (max 2000 chars) |

Task Lifecycle

pending → active → done

Create a task → it's pending. Claim it → it's active. Complete it → it's done.

Storage

All data lives in ~/.dispatch/tasks.db (SQLite). One file, one table. No daemon, no cloud, no network calls.

CREATE TABLE tasks (
  id TEXT PRIMARY KEY,
  title TEXT NOT NULL,
  description TEXT,
  priority TEXT DEFAULT 'normal',
  status TEXT DEFAULT 'pending',
  result TEXT,
  created_at TEXT,
  claimed_at TEXT,
  completed_at TEXT
);

Why Not a JSON File?

You could manage tasks in tasks.json. But dispatch adds:

  • MCP integration — Claude Code uses tasks naturally through conversation
  • Atomic operations — SQLite transactions prevent corruption
  • Status lifecycle — Proper state machine with timestamps
  • Query filtering — Get tasks by status, by priority
  • Zero confignpx @rezzedai/dispatch and it works

Technical Details

| | | |---|---| | Runtime | Node.js 18+ | | Transport | stdio (standard MCP server) | | Storage | SQLite via better-sqlite3 | | Dependencies | better-sqlite3, @modelcontextprotocol/sdk | | Network | None. No API calls, no telemetry. | | Size | < 300 lines of core logic |

What's Next?

More tools coming from the @rezzedai toolkit. See rezzed.ai for updates.

License

MIT


Built by Rezzed — the AI product studio.