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

zen-mcp-server-199bio

v2.2.0

Published

NPX wrapper for Zen MCP Server - Claude + Multiple AI Models

Readme

Zen MCP Server NPX Wrapper

Easy-to-use NPX wrapper for Zen MCP Server - Give Claude access to multiple AI models (Gemini, OpenAI, OpenRouter, Ollama) for enhanced development capabilities.

Quick Start

npx zen-mcp-server-199bio

That's it! No Docker required. 🎉

What is Zen MCP Server?

Zen MCP Server gives Claude Desktop access to multiple AI models for:

  • 🧠 Extended reasoning with Gemini 2.0 Pro's thinking mode
  • 💬 Collaborative development with multiple AI perspectives
  • 🔍 Code review and architectural analysis
  • 🐛 Advanced debugging with specialized models
  • 📊 Large context analysis (Gemini: 1M tokens, O3: 200K tokens)
  • 🔄 Conversation threading - AI models maintain context across multiple calls

Features

  • No Docker required - Runs directly with Python
  • 🚀 Fast startup - No container overhead
  • 💾 Lightweight - Minimal resource usage
  • 🔧 Auto-setup - Handles Python dependencies automatically
  • 📦 Virtual environment - Isolated dependencies
  • 🌍 Cross-platform - Works on macOS, Windows, Linux

First Time Setup

On first run, the wrapper will:

  1. Check Python 3.11+ is installed
  2. Clone Zen MCP Server to ~/.zen-mcp-server
  3. Create .env file and prompt for API keys
  4. Set up Python virtual environment
  5. Install dependencies automatically

Quick Install

1. Get API Keys (at least one required)

Choose one or more:

2. Add to Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "zen": {
      "command": "npx",
      "args": ["zen-mcp-server-199bio"],
      "env": {
        "GEMINI_API_KEY": "your_gemini_key_here",
        "OPENAI_API_KEY": "your_openai_key_here",
        "OPENROUTER_API_KEY": "your_openrouter_key_here"
      }
    }
  }
}

That's it! Just restart Claude Desktop and you're ready to go.

Location of config file:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • Linux: ~/.config/Claude/claude_desktop_config.json

Usage with Claude CLI

claude mcp add zen "npx" "zen-mcp-server-199bio"

Available Tools

Once configured, Claude will have access to these tools:

  • zen - Default tool for quick AI consultation (alias for chat)
  • chat - Collaborative development discussions
  • thinkdeep - Extended reasoning (Gemini 2.0 Pro)
  • codereview - Professional code review
  • precommit - Pre-commit validation
  • debug - Advanced debugging assistance
  • analyze - Smart file and codebase analysis

Quick Usage: Just say "use zen" for quick AI consultations!

Troubleshooting

Python not found?

Dependencies issue?

The wrapper tries to install automatically, but if it fails:

cd ~/.zen-mcp-server
python3 -m venv venv
source venv/bin/activate  # On Windows: venv\Scripts\activate
pip install -r requirements.txt

API key issues?

  • Check ~/.zen-mcp-server/.env has valid keys
  • Ensure at least one API key is configured
  • For OpenRouter, check your credits/limits

Requirements

  • Python 3.11+
  • Node.js >= 14.0.0
  • Git
  • At least one API key (Gemini, OpenAI, or OpenRouter)

Why No Docker?

We removed Docker because:

  • Faster startup - No container overhead
  • Less resource usage - No Redis, no Docker daemon
  • Simpler - Just Python and your API keys
  • Same features - Conversation threading works perfectly with in-memory storage

Links

License

Apache 2.0 - See LICENSE