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

@xenosisorg/xenosis-mcp

v0.1.0

Published

MCP server that exposes a Xenosis workspace (peer graph, configs, health, OpenAPI) to AI assistants.

Readme

@xenosisorg/xenosis-mcp

MCP server that gives AI assistants (Claude, Cursor, Copilot, …) read-only context about a Xenosis workspace — peer graph + boundary violations, parsed service configs (secrets redacted), live health checks, and OpenAPI specs of running services.

This is not a code generator. It is the layer that lets an AI answer questions about your specific project, not Xenosis in general — e.g.

Why does orders-service get a 403 when it calls payments?

The AI calls get_peer_graph, sees the violation, calls get_service_config payments to confirm boundaries.allowedCallers, and points out the mismatched peerName. No hallucination — the data comes from your files.

Install

The server is launched on demand by your MCP client; you don't need to install it globally.

Configure your MCP client

Claude Desktop / Claude Code

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or the equivalent on your OS:

{
  "mcpServers": {
    "xenosis": {
      "command": "npx",
      "args": ["-y", "@xenosisorg/xenosis-mcp"],
      "env": {
        // Absolute path to the workspace (the directory holding xenosis.workspace.json).
        // Optional — when omitted, the server walks up from its launch cwd.
        "XENOSIS_WORKSPACE_ROOT": "/absolute/path/to/your/workspace"
      }
    }
  }
}

Cursor

.cursor/mcp.json in your workspace:

{
  "mcpServers": {
    "xenosis": {
      "command": "npx",
      "args": ["-y", "@xenosisorg/xenosis-mcp"]
    }
  }
}

Cursor launches the server with the workspace as cwd, so XENOSIS_WORKSPACE_ROOT is not needed.

Tools

| Tool | Purpose | | --- | --- | | get_peer_graph | Full peer mesh + boundary violations (same data as xenosis graph --json). | | get_service_config | Parsed xenosis.config.json of one service, secrets redacted. | | health_check | GET /healthcheck on each service's local port — up/down. | | get_openapi_spec | OpenAPI 3.1 spec of a running service (routes summary by default, full: true for the whole document). |

health_check and get_openapi_spec require the target services to be running (start them with xenosis dev). The first two work from the config files alone.

What the server reads

  • xenosis.workspace.json (workspace root) — to find structure.services.
  • Each <services>/*/xenosis.config.json — service identity, peers, boundaries, port, OpenAPI config.
  • Each running service's /healthcheck and /openapi.json over http://localhost:<port>.

Nothing outside the workspace; no writes; no network beyond localhost.

Privacy

get_service_config redacts any property whose key matches token|secret|password|apikey|api_key|jwtsecret (case-insensitive) and masks inline credentials in URL strings (postgres://user:<pw>@hostpostgres://user:<redacted>@host). The AI never sees real secrets through this tool.