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

@zeroindex-ai/mcp-github-org

v0.2.1

Published

MCP server exposing read-only GitHub org and repo APIs to Claude and other MCP clients

Readme

@zeroindex-ai/mcp-github-org

MCP server exposing read-only GitHub APIs to Claude Desktop, Claude Code, Cursor, Zed, and any other Model Context Protocol client.

Lets you ask things like:

  • "List all repos in the zeroindex-ai org with their last push dates."
  • "What pull requests are open across my repos?"
  • "Show recent CI runs for ask-zeroindex — any failures this week?"
  • "List open issues on mcp-pack."

Tools

| Tool | What it does | | ------------------------ | ------------------------------------------------------------------------------------------------------------- | | get_authenticated_user | Returns the token owner, plan info, and repo counts. Run this first — it doubles as the credential check. | | list_org_repos | Repositories in the given org (filter by type/sort/page). | | list_pull_requests | PRs for a repo (filter by state: open / closed / all). | | list_issues | Issues for a repo (PRs are excluded). | | list_workflow_runs | Recent GitHub Actions runs (filter by workflow file, branch, event, status). |

All five are read-only. Mutating tools (create issue, close PR, manage secrets) deliberately omitted in v0.1.

Install

npx -y @zeroindex-ai/mcp-github-org

Configure

You need a GitHub Personal Access Token at github.com/settings/tokens. Two flavors:

  • Classic PAT — easier to set up; scopes are broad. For an org you own, this works fine. Required scopes for read-only use here:
    • repo (read access to your repos, including private)
    • read:org (read org membership/repos)
    • workflow (read GitHub Actions runs)
  • Fine-grained PAT — better security boundary; scope to specific repos/orgs. Required permissions:
    • Repository: Actions (read), Contents (read), Issues (read), Metadata (read), Pull requests (read)
    • Organization: Members (read)

Name it claude-mcp-<host> (replace <host> with your machine's hostname) so it can be revoked independently of other tokens. Set as GITHUB_TOKEN in your MCP client config.

Use with Claude Desktop

Add to claude_desktop_config.json (macOS: ~/Library/Application Support/Claude/claude_desktop_config.json):

{
  "mcpServers": {
    "github-org": {
      "command": "npx",
      "args": ["-y", "@zeroindex-ai/mcp-github-org"],
      "env": {
        "GITHUB_TOKEN": "ghp_xxxxxxxxxxxxxxxxxxxxxxxxxxxx"
      }
    }
  }
}

If you'd rather not paste the token into the config file, you can inject it at spawn time from a secrets manager. The 1Password CLI variant:

{
  "mcpServers": {
    "github-org": {
      "command": "op",
      "args": ["run", "--no-masking", "--", "npx", "-y", "@zeroindex-ai/mcp-github-org"],
      "env": {
        "GITHUB_TOKEN": "op://<your-vault>/<your-item>/credential"
      }
    }
  }
}

Restart Claude Desktop (Cmd+Q then reopen). Then ask:

Use the github-org get_authenticated_user tool to verify credentials.

Use with Claude Code

claude mcp add github-org \
  --env GITHUB_TOKEN=ghp_xxxx \
  -- npx -y @zeroindex-ai/mcp-github-org

Local development

git clone https://github.com/zeroindex-ai/mcp-pack
cd mcp-pack
pnpm install
GITHUB_TOKEN=ghp_xxxx pnpm --filter @zeroindex-ai/mcp-github-org dev

Privacy / data handling

This server makes outbound HTTPS calls to api.github.com only. It stores nothing locally, holds no cache, and emits no telemetry. Read-only by design, but the token itself authorizes writes across your account — it's the same credential used by gh CLI and CI. Treat it like an admin credential: prefer a fine-grained PAT scoped only to the repos/orgs you need, name it claude-mcp-<host> so you can revoke it independently, and rotate at the first sign of exposure.

Data that flows through this process when tools are called: repo metadata (names, descriptions, languages), PR titles + bodies + commit refs, issue titles + bodies + labels + assignees, workflow run status. Pick your MCP client (and the LLM behind it) accordingly.

License

MIT — see LICENSE at the monorepo root.