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

standupbot-mcp

v1.0.1

Published

MCP server that summarizes your GitHub activity into a daily standup — commits, PRs, reviews, and issues in the last 24h.

Downloads

185

Readme

StandupBot MCP

"What did I even do yesterday?" — solved.

StandupBot is a free Model Context Protocol server that connects Claude to your GitHub activity. Ask Claude for your standup and it pulls the last 24h of commits, PRs, reviews, and issues — formatted and ready to paste into Slack.


Tools

| Tool | What it does | |---|---| | get_standup | Your personal standup — commits, PRs, reviews, issues in the last N hours | | get_standup_multi | Team standup — same thing for a list of GitHub usernames | | get_repo_pulse | Recent activity on any public or private repo |


Quick Start

1. Get a GitHub token

Go to GitHub → Settings → Developer settings → Personal access tokens → Tokens (classic).

Create a token with these scopes:

  • repo (to see private repos)
  • read:user

2. Add to Claude Code

Add this to your Claude Code config (~/.claude/claude_desktop_config.json for Claude Desktop, or .claude/settings.json for Claude Code CLI):

{
  "mcpServers": {
    "standupbot": {
      "command": "npx",
      "args": ["-y", "standupbot-mcp"],
      "env": {
        "GITHUB_TOKEN": "ghp_your_token_here"
      }
    }
  }
}

3. Ask Claude

Give me my standup for the last 24 hours. My GitHub username is alice.
Generate a team standup for usernames: alice, bob, carol
What's been happening in the facebook/react repo today?

Example Output

## Daily Standup — @alice
_Last 24h of GitHub activity_

### Commits
- **alice/my-app** (a3f9c12) — fix: resolve race condition in auth middleware
  https://github.com/alice/my-app/commit/a3f9c12

### PRs Opened
- **alice/my-app** (#42) — feat: add OAuth2 support
  https://github.com/alice/my-app/pull/42

### PRs Reviewed
- **team-org/backend** (#99) — refactor: extract payment service
  https://github.com/team-org/backend/pull/99

Environment Variables

You can set GITHUB_TOKEN as an env var in your MCP config and omit it from tool calls:

"env": { "GITHUB_TOKEN": "ghp_..." }

The tool will fall back to the env var automatically if no token is passed.


Privacy

  • Your token is stored only in your local config file.
  • StandupBot makes direct HTTPS calls to api.github.com — no proxy, no telemetry, no servers.
  • 100% open source. MIT license.

License

MIT