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

@wayd/mcp

v0.2.0

Published

MCP server for the Wayd work management API

Readme

@wayd/mcp

A Model Context Protocol (MCP) server for the Wayd work management API. Exposes Wayd's project portfolio management, planning, and work item data to AI assistants.

Requirements

  • Node.js >= 20
  • A running Wayd instance with API access
  • A Wayd Personal Access Token (PAT)

Configuration

The server requires two values: the base URL of your Wayd instance and an API key. These can be supplied as environment variables or CLI arguments — CLI arguments take priority if both are provided.

| | Environment variable | CLI argument | |---|---|---| | Base URL | WAYD_API_BASE_URL | --base-url | | API key | WAYD_API_KEY | --api-key |

Installation

Claude Desktop

CLI arguments are not supported in Claude Desktop — use environment variables. Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "wayd": {
      "command": "npx",
      "args": ["-y", "@wayd/mcp"],
      "env": {
        "WAYD_API_BASE_URL": "https://your-wayd-instance.com",
        "WAYD_API_KEY": "your-personal-access-token"
      }
    }
  }
}

VS Code / Cursor (with inputs)

CLI args enable the inputs pattern, which prompts for values at connection time instead of hardcoding them. Add to .vscode/mcp.json or .cursor/mcp.json:

{
  "inputs": [
    {
      "id": "waydBaseUrl",
      "description": "Wayd base URL",
      "type": "promptString"
    },
    {
      "id": "waydApiKey",
      "description": "Wayd API key (Personal Access Token)",
      "type": "promptString",
      "password": true
    }
  ],
  "servers": {
    "wayd": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y", "@wayd/mcp",
        "--base-url", "${input:waydBaseUrl}",
        "--api-key",  "${input:waydApiKey}"
      ]
    }
  }
}

Or with environment variables directly:

{
  "servers": {
    "wayd": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "@wayd/mcp"],
      "env": {
        "WAYD_API_BASE_URL": "https://your-wayd-instance.com",
        "WAYD_API_KEY": "your-personal-access-token"
      }
    }
  }
}

Claude Code

Claude Code doesn't support the inputs prompt pattern, so the recommended way to keep your PAT out of config files is to store it in an environment variable in your shell profile and reference it in the MCP config.

Add to ~/.zshrc / ~/.bashrc (or equivalent):

export WAYD_API_BASE_URL="https://your-wayd-instance.com"
export WAYD_API_KEY="your-personal-access-token"

Then register the server via the CLI (values are read from your environment at connection time):

claude mcp add wayd -- npx -y @wayd/mcp

Or add it to a project-level .mcp.json that reads from the same environment variables:

{
  "mcpServers": {
    "wayd": {
      "command": "npx",
      "args": ["-y", "@wayd/mcp"]
    }
  }
}

Because the server reads WAYD_API_BASE_URL and WAYD_API_KEY from the environment automatically, no credentials appear in any config file.

Global install

npm install -g @wayd/mcp

Then use wayd-mcp as the command instead of npx -y @wayd/mcp in any of the configs above.

Agent Skills (Claude Code)

Skills are prompt files that guide Claude on how to efficiently use the Wayd MCP tools — which tools to call in sequence, how to resolve IDs, and what the entity relationships look like. Without them, agents tend to make redundant calls or miss non-obvious patterns (e.g. project lifecycle transitions use separate action endpoints, not a status field).

Five self-contained skills are available:

| Skill | Trigger | | --- | --- | | wayd-ppm | Portfolios, programs, projects — lookup, create, update, lifecycle | | wayd-pi | Planning intervals, iterations, objectives, health reports, risks | | wayd-roadmaps | Roadmap exploration — activities, timeboxes, milestones | | wayd-teams | Team lookup — resolve a team name to an ID | | wayd-users | User lookup — resolve a user name to a UUID for assignees and project roles |

Installing the skills

From your project root:

npx skills add destacey/Wayd

Once installed, activate a skill in Claude Code with /wayd-ppm, /wayd-pi, /wayd-roadmaps, /wayd-teams, or /wayd-users.

Available Tools

Project Portfolio Management

| Category | Operations | | --- | --- | | Portfolios | List, get details, get programs, get projects | | Programs | List, get details, get projects | | Project Lifecycles | List (with state filter), get details | | Projects | List (with role filter), get details, get team, get phases, get phase details, get plan tree, get plan summary, list health checks, get health check, create health check | | Tasks | List, get details, get critical path, get types/statuses/priorities, create, update, delete, add/remove dependencies |

Planning

| Category | Operations | | --- | --- | | Planning Intervals | List, get details, calendar, predictability, teams, iterations, objectives, risks, objective health check history, get/create objective health check | | Roadmaps | List, get details, get items and activities |

Organization

| Category | Operations | | --- | --- | | Teams | List, get details | | Users | List, get details |

Links