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

@mcpbodega/cli

v0.4.0

Published

Universal CLI for deploying and managing MCPs across all AI platforms

Downloads

17

Readme

@mcpbodega/cli

Universal CLI for deploying and managing MCPs across all AI platforms.

Installation

npm install -g @mcpbodega/cli

Quick Start

# Login
mcpbodega login

# Initialize (after magic link)
mcpbodega init

# List available MCPs
mcpbodega list

# Deploy an MCP
mcpbodega add github

# Chain multiple MCPs
mcpbodega chain github slmbench resend

# View your deployed MCPs
mcpbodega status

# Remove an MCP
mcpbodega remove github

Features

  • 🚀 One-Command Deployment - mcpbodega add <mcp> deploys and configures everything
  • 🔗 Auto-Chaining - Create pipes that save 50-80% on token costs
  • 🤖 Multi-Platform - Auto-configures Claude, GPT, Grok, and more
  • 📊 Status Monitoring - Track all your deployed MCPs
  • Fast & Simple - No complex setup, just ship

Commands

mcpbodega login

Authenticate with MCPBodega using magic link

mcpbodega init

Initialize CLI configuration (run after clicking magic link)

mcpbodega add <mcp>

Deploy an MCP and auto-configure for your AI platform

Options:

  • -n, --name <name> - Custom name for this deployment
  • -e, --env <pairs...> - Environment variables (KEY=VALUE)
  • --no-config - Skip auto-configuration

mcpbodega list

List available MCPs in the catalog

Options:

  • -c, --category <category> - Filter by category
  • -t, --tag <tag> - Filter by tag
  • --deployed - Show only your deployed MCPs

mcpbodega chain <mcps...>

Create a pipe chain from multiple MCPs

Options:

  • -n, --name <name> - Name for this pipe
  • -o, --output - Print pipe URL without deploying

Example:

mcpbodega chain github slmbench resend
# Creates: /pipe/github-to-slmbench-to-resend
# Result: ~50-80% token savings vs separate calls

mcpbodega status

Show status of your deployed MCPs

Options:

  • -v, --verbose - Show detailed information
  • --json - Output as JSON

mcpbodega remove <mcp>

Remove a deployed MCP

Options:

  • -y, --yes - Skip confirmation

Auto-Configuration

The CLI automatically configures your AI platforms:

Claude Desktop

  • Detects Claude config file
  • Adds MCP URL automatically
  • Updates on deploy/remove

GPT

  • Provides setup instructions
  • Copy-paste URL into Developer Mode

Grok

  • Provides code snippet for xAI SDK
  • Easy integration with Grok API

Configuration

Config is stored in ~/.mcpbodega/config.json

{
  "apiUrl": "https://mcpbodega.com",
  "authToken": "your-token",
  "email": "[email protected]",
  "autoConfig": {
    "claude": true,
    "gpt": true,
    "grok": true
  }
}

Examples

Deploy GitHub MCP

mcpbodega add github
# ✓ Deploys to MCPBodega
# ✓ Auto-configures Claude
# ✓ Shows GPT/Grok instructions

Chain for Complex Workflows

# Extract repo data → Evaluate → Email results
mcpbodega chain github slmbench resend

# Use the pipe URL in your AI:
# https://mcpbodega.com/pipe/github-to-slmbench-to-resend

Deploy with Custom Config

mcpbodega add postgres \
  -n "my-analytics-db" \
  -e DATABASE_URI=postgres://... \
  -e MAX_CONNECTIONS=10

Troubleshooting

"Not authenticated"

Run mcpbodega login then mcpbodega init with your auth token

"MCP not found"

Check available MCPs with mcpbodega list

Claude not detecting MCP

Restart Claude Desktop after deployment

Development

# Clone repo
git clone https://github.com/cyclecore/mcpbodega

# Install dependencies
cd packages/cli
npm install

# Build
npm run build

# Test locally
npm link

License

MIT © CycleCore Technologies