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

@eos-ai/mcp-server

v1.0.1

Published

MCP server for EOS — connect your engineering intelligence to Claude Desktop, Cursor, Windsurf, and any MCP-compatible IDE.

Readme

@eos-ai/mcp-server

Connect the EOS GitHub Org Context API to Claude Desktop, Cursor, Windsurf, and any Model Context Protocol-compatible IDE — so your agent can ground its work in the connected GitHub org: who owns what, how the codebase is wired together, who to route a review to, and semantic search over the org's engineering history.

Quick start

1. Get your API key

Log in to eos.dev → Settings → API → Create key.

2. Install the server

npm install -g @eos-ai/mcp-server

3. Add to your IDE config (see per-IDE instructions below)


Claude Desktop

Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "eos": {
      "command": "eos-mcp",
      "env": {
        "EOS_API_KEY": "eos_your_key_here"
      }
    }
  }
}

Restart Claude Desktop. You'll see the EOS tools available in the tool picker.


Cursor

Open Cursor SettingsMCPAdd new global MCP server, then paste:

{
  "eos": {
    "command": "eos-mcp",
    "env": {
      "EOS_API_KEY": "eos_your_key_here"
    }
  }
}

Or edit ~/.cursor/mcp.json directly with the same object.


Windsurf

Edit ~/.codeium/windsurf/mcp_config.json:

{
  "mcpServers": {
    "eos": {
      "command": "eos-mcp",
      "env": {
        "EOS_API_KEY": "eos_your_key_here"
      }
    }
  }
}

Self-hosted EOS

If you run EOS on your own infrastructure, set EOS_API_URL in addition to the API key:

{
  "mcpServers": {
    "eos": {
      "command": "eos-mcp",
      "env": {
        "EOS_API_KEY": "eos_your_key_here",
        "EOS_API_URL": "https://eos.your-company.com"
      }
    }
  }
}

Available tools

| Tool | Description | |------|-------------| | search_context | Flagship. Semantic search over the org's engineering knowledge — decisions, insights, PR history, team norms — with LLM-ready citations. | | get_ownership | Owners/experts for a file or directory, plus a knowledge-concentration (bus-factor) signal for single-owner risk. | | get_graph | Module/dependency graph as nodes (modules by activity) and edges (co-change coupling). | | get_coupling | File pairs frequently changed together — hidden dependencies without an import edge. | | get_contributors | The org's tracked contributors with recent activity; pass a handle for one contributor's throughput + expertise. | | suggest_reviewers | Best reviewers for a specific PR, ranked by code familiarity and availability, with a reason each. | | get_activity | What's moving now — the highest-churn files (hotspots) in the recent window, with churn intensity. |

Examples

"How does auth token refresh work in our codebase?"
→ uses search_context { query: "how does auth token refresh work" }

"Who owns src/lib/auth in acme/api?"
→ uses get_ownership { repo: "acme/api", path: "src/lib/auth" }

"Show me how the codebase is wired together"
→ uses get_graph {}

"Which files always change together?"
→ uses get_coupling { min_shared: 3 }

"Who should review PR #482 in acme/api?"
→ uses suggest_reviewers { repo: "acme/api", pr_number: 482 }

"What's the team working on / where's the code churning right now?"
→ uses get_activity { days: 30 }

Development

# From repo root
npm install --workspace=packages/mcp-server

# Build
npm run build --workspace=@eos-ai/mcp-server

# Test
npm run test --workspace=@eos-ai/mcp-server

# Typecheck
npm run typecheck --workspace=@eos-ai/mcp-server

Publishing

npm run build --workspace=@eos-ai/mcp-server
cd packages/mcp-server
npm publish --access public

Requires npm credentials and @eos org access. The dist/ directory is included in the published package; src/ and __tests__/ are not.