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

@identikey/coding-mcp

v2.1.0

Published

MCP Server with expert AI personas for code architecture, reviews, screenshots, and research

Readme

@identikey/coding-mcp

MCP server with expert AI personas for architecture reviews, code advice, and research. Runs as a tool server in Cursor, Windsurf, or any MCP-compatible client.

Quick Start

Add to your MCP config (e.g., .cursor/mcp.json):

{
  "mcpServers": {
    "coding-mcp": {
      "command": "npx",
      "args": ["-y", "@identikey/coding-mcp"],
      "env": {
        "XAI_API_KEY": "your-xai-key",
        "OPENAI_API_KEY": "your-openai-key"
      }
    }
  }
}

Or via Cursor Settings → MCP → Add Server.

Environment Variables

| Variable | Required | Description | | ---------------- | -------- | ---------------------------------------------------- | | XAI_API_KEY | Yes* | xAI/Grok API key (get one) | | OPENAI_API_KEY | Yes* | OpenAI API key (for GPT-5 reasoning) | | AI_PROVIDER | No | Default provider: xai or openai (default: xai) | | XAI_MODEL | No | xAI model override (default: grok-4.1) | | OPENAI_MODEL | No | OpenAI model override (default: gpt-5.2) |

*At least one API key required. The server auto-selects providers based on task type—xAI for quick advice, OpenAI for deep reasoning.

Using bunx

{
  "mcpServers": {
    "coding-mcp": {
      "command": "bunx",
      "args": ["@identikey/coding-mcp"],
      "env": {
        "XAI_API_KEY": "your-xai-key"
      }
    }
  }
}

Tools

ask

Natural language queries auto-routed to the best expert persona. Just ask—it figures out who should answer.

"How should I structure this React app?"  → routes to Iris (frontend)
"Is this auth implementation secure?"     → routes to Sentinel (security)
"Review this API design"                  → routes to Atlas (backend)

architect

Deep architectural review with reasoning. Pass code + task description, get structured analysis.

code-review

Git diff analysis. Point it at a repo, get review of changes vs main branch.

code-advice

Quick, focused guidance on specific problems. Lower latency than full architect review.

researcher

Multi-source research with citations. Searches across Google, arXiv, GitHub, StackExchange, etc.

persona

Direct access to a specific expert. Skip auto-routing when you know who you want.

discover

List available personas and their specialties.

screenshot

Capture screenshots from URLs for UI review.

Personas

| Persona | Focus | Style | | ------------ | ------------------------ | -------------------------------------------------- | | Charles | Pragmatic architecture | Anti-enterprise, ships fast, calls out YAGNI | | Sterling | Enterprise systems | Zero-downtime, compliance, multi-team coordination | | Ada | Algorithms & performance | Big-O, profiling, optimization | | Atlas | Backend & APIs | Contract-first, database design, caching | | Hermes | DevOps & SRE | CI/CD, observability, Kubernetes | | Sentinel | Security | Threat modeling, auth, compliance | | Iris | Frontend & UX | Accessibility, design systems, React/Vue | | Xavier | MVP development | KISS, ship it, avoid yak shaving |

Development

# Install deps
bun install

# Build
bun run build

# Test
bun test

# Run locally (for testing)
bun run start

Local MCP Config

For development, point to your local build:

{
  "mcpServers": {
    "coding-mcp-dev": {
      "command": "node",
      "args": ["/path/to/coding-mcp/build/index.js"],
      "env": {
        "XAI_API_KEY": "your-key"
      }
    }
  }
}

Project Structure

src/
├── index.ts              # MCP server entry
├── common/
│   ├── apiClient.ts      # Unified AI provider client
│   ├── providerConfig.ts # Env vars, provider selection
│   └── ...
├── personas/
│   ├── charles/          # Each persona has its own module
│   ├── sterling/
│   └── ...
└── tools/
    ├── ask.ts            # Smart routing
    ├── architect.ts      # Deep review
    └── ...

License

MIT