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

@wolfgang-sfi/agency-mcp

v0.1.0

Published

MCP server for The Agency — project context and backlog agent tools

Readme

The Agency MCP Server

stdio MCP server for The Agency. Connect Cursor (or any MCP client) to your assigned projects, pull client context, and perform agent actions on the backlog.

Prerequisites

  1. A The Agency account with role developer, tester, or platform_admin
  2. A personal access token (wa_...) from Profile → Access tokens in the app
  3. A platform admin must add you to the project team on the project page

Install in Cursor

Published as @wolfgang-sfi/agency-mcp on npm. New versions are released automatically when packages/mcp-server changes on main.

Add to .cursor/mcp.json (project) or Cursor Settings → MCP:

{
  "mcpServers": {
    "the-agency": {
      "command": "npx",
      "args": ["-y", "@wolfgang-sfi/agency-mcp"],
      "env": {
        "THE_AGENCY_API_URL": "https://your-app.example.com",
        "THE_AGENCY_TOKEN": "wa_..."
      }
    }
  }
}

For local development against bun dev:

{
  "mcpServers": {
    "the-agency": {
      "command": "node",
      "args": ["/absolute/path/to/the-agency/packages/mcp-server/dist/index.js"],
      "env": {
        "THE_AGENCY_API_URL": "http://localhost:3000",
        "THE_AGENCY_TOKEN": "wa_..."
      }
    }
  }
}

Build the package first:

cd packages/mcp-server
npm install
npm run build

Environment variables

| Variable | Description | |----------|-------------| | THE_AGENCY_API_URL | Base URL of the deployed app (no trailing slash) | | THE_AGENCY_TOKEN | Personal access token starting with wa_ |

Recommended agent flow

  1. list_assigned_projects — discover projects you can access
  2. get_project_context — load brief + contextMarkdown into the session
  3. get_backlog_item / list_backlog_items — work on a specific task
  4. After implementation: log_backlog_effort and move_backlog_item

If list_assigned_projects is empty, ask a platform admin to add you to the project team.

Tools

| Tool | Description | |------|-------------| | list_assigned_projects | Cross-org list of assigned projects | | get_project_context | Brief, stack, requirements markdown | | list_backlog_items | Kanban backlog with optional filters | | get_backlog_item | Full task detail | | list_backlog_comments | Comment threads | | add_backlog_comment | Post a comment | | log_backlog_effort | Record dev minutes / AI tokens | | move_backlog_item | Change kanban column |

Resources

  • agency://project/{orgSlug}/{projectId}/context — project markdown
  • agency://backlog-item/{orgSlug}/{projectId}/{itemId} — task JSON

API

This package calls The Agency REST API at /api/v1/* on the same domain as the web app. No separate MCP host is required.