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

@oss-autopilot/mcp

v2.0.0

Published

MCP server for OSS Autopilot — exposes PR tracking, issue discovery, and contribution management as MCP tools

Downloads

593

Readme

@oss-autopilot/mcp

MCP server for OSS Autopilot — exposes PR tracking, issue discovery, and contribution management as MCP tools for any MCP-compatible client.

npm Node License

What It Provides

| Feature | Count | Description | |---------|-------|-------------| | Tools | 20 | daily, status, search, vet, track, untrack, read, comments, post, claim, config, init, setup, check-setup, startup, shelve, unshelve, dismiss, undismiss, move | | Resources | 5 | oss://status, oss://config, oss://prs, oss://prs/shelved, oss://pr/{owner}/{repo}/{number} | | Prompts | 3 | triage (PR prioritization), respond-to-pr (draft response), find-issues (discover issues) |

Supports stdio (default) and Streamable HTTP transports.

Prerequisites

  • Node.js 20+
  • GitHub CLI authenticated (gh auth login)

Quick Start

# 1. Initialize with your GitHub username
npx @oss-autopilot/mcp@latest --init <your-github-username>

# 2. Add the server to your MCP client (see config examples below)

# 3. Use the tools — e.g. "daily" to check your PRs, "search" to find issues

Client Configuration

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "oss-autopilot": {
      "command": "npx",
      "args": ["@oss-autopilot/mcp@latest"]
    }
  }
}

Cursor

Add to .cursor/mcp.json in your project or global config:

{
  "mcpServers": {
    "oss-autopilot": {
      "command": "npx",
      "args": ["@oss-autopilot/mcp@latest"]
    }
  }
}

Codex CLI

codex mcp add oss -- npx @oss-autopilot/mcp@latest

Windsurf

Add to your Windsurf MCP config:

{
  "mcpServers": {
    "oss-autopilot": {
      "command": "npx",
      "args": ["@oss-autopilot/mcp@latest"]
    }
  }
}

Streamable HTTP (any client)

Run the server in HTTP mode instead of stdio:

npx @oss-autopilot/mcp@latest --http --port 3001

The server listens at http://127.0.0.1:3001/mcp and accepts POST requests.

Tools Reference

| Tool | Description | Read-only | |------|-------------|-----------| | daily | Run daily PR monitoring check with prioritized summary | No | | status | Show current PR tracking status | Yes | | search | Search GitHub for contributable issues | Yes | | vet | Analyze an issue for contribution suitability | Yes | | track | Start tracking a pull request | No | | untrack | Stop tracking a pull request | No | | read | Mark PR notifications as read | No | | comments | Fetch and display PR comments | Yes | | post | Post a comment on an issue or PR | No | | claim | Claim an issue by posting a comment | No | | config | Get or set configuration values | No | | init | Initialize with a GitHub username | No | | setup | Configure preferences (languages, interests) | No | | check-setup | Check if setup is complete | Yes | | startup | Run startup checks (auth, state, config) | No | | shelve | Temporarily hide a PR from daily checks | No | | unshelve | Return a shelved PR to active monitoring | No | | dismiss | Dismiss an issue from notifications | No | | undismiss | Re-enable notifications for a dismissed issue | No | | move | Move a PR between states (attention, waiting, shelved, auto) | No |

Resources Reference

| Resource URI | Description | |-------------|-------------| | oss://status | PR tracking status (cached local state) | | oss://config | Current configuration | | oss://prs | Active open PRs from last daily digest | | oss://prs/shelved | Shelved PRs | | oss://pr/{owner}/{repo}/{number} | Detail for a specific PR |

Prompts Reference

| Prompt | Args | Description | |--------|------|-------------| | triage | none | Fetches daily digest and builds a prioritized triage list | | respond-to-pr | prUrl | Fetches PR comments and context for drafting a response | | find-issues | maxResults? | Searches for issues ranked by viability score |

Programmatic Usage

The server can also be imported and used as a library:

import { createServer } from '@oss-autopilot/mcp';

const server = createServer();
// Connect to your own transport

More Information

See the main repository README for the full documentation, including the Claude Code plugin, CLI usage, dashboard, and contributing guide.

License

MIT