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

skedo-mcp

v0.2.0

Published

MCP server for Skedo tasks. Thin, PAT-authenticated client over the Skedo API.

Readme

skedo-mcp

MCP (Model Context Protocol) server for Skedo tasks. A thin, PAT-authenticated client over the Skedo HTTP API — no business logic lives here; the Skedo API is the source of truth.

Works with any MCP client: Claude Code, Cursor, Claude Desktop, etc.

Tools

  • list_tasks — list tasks (optional limit, status, search)
  • get_task — fetch one task by UUID or public ref (for example SK-42)
  • create_task — create a task (requires title; other fields optional)
  • update_task — validated patch of an existing task
  • add_task_link — append a labeled URL (for example a PR link) to task notes

update_task accepts only these patch keys: title, description, notes, category, tracks, priority (low | normal | high | urgent), status (todo | inprogress | review | done | rejected | canceled), deadline, assignee (id string, null, or object with id), is_draft (boolean).

Compatibility aliases: due_date is accepted and mapped to deadline; isDraft is accepted and mapped to is_draft.

Draft tasks

create_task with is_draft: true creates a private draft, visible only to its creator until published. update_task with is_draft: false publishes a draft. Publishing is one-way: the server rejects turning a published task back into a draft.

Configuration

Configuration comes exclusively from environment variables set in your MCP client config. There is no .env auto-loading.

  • SKEDO_API_BASE_URL (required) — for example https://skedo.example.com or http://localhost:3000
  • SKEDO_API_TOKEN (required) — Personal Access Token from Skedo settings (/settings/tokens)
  • SKEDO_TIMEOUT_MS (optional) — outbound API timeout, defaults to 10000

Treat SKEDO_API_TOKEN like a secret. Do not commit it or paste it into shared logs.

Client config

Claude Code (.mcp.json or ~/.claude.json)

{
  "mcpServers": {
    "skedo": {
      "command": "npx",
      "args": ["-y", "skedo-mcp"],
      "env": {
        "SKEDO_API_BASE_URL": "https://your-skedo-url",
        "SKEDO_API_TOKEN": "<your_pat_here>"
      }
    }
  }
}

Cursor

Same shape in Cursor's MCP settings:

{
  "mcpServers": {
    "skedo": {
      "command": "npx",
      "args": ["-y", "skedo-mcp"],
      "env": {
        "SKEDO_API_BASE_URL": "https://your-skedo-url",
        "SKEDO_API_TOKEN": "<your_pat_here>"
      }
    }
  }
}

No repo checkout is needed — npx fetches the published package. The MCP client launches and stops the server process automatically.

Development

npm install
npm run dev        # run from source (tsx), needs SKEDO_API_* env vars
npm run build      # compile to dist/
npm test           # build + unit tests + stdio smoke test
npm run typecheck

To point a local MCP client at your working copy instead of the npm package:

{
  "mcpServers": {
    "skedo": {
      "command": "node",
      "args": ["/absolute/path/to/skedo_mcp/dist/server.js"],
      "env": {
        "SKEDO_API_BASE_URL": "http://localhost:3000",
        "SKEDO_API_TOKEN": "<your_pat_here>"
      }
    }
  }
}

Publishing

npm publish   # prepublishOnly runs build + tests

See also

  • skedo-cli — terminal client for the same API, same PAT auth