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

@imvhb/cc-switch-mcp-server

v0.2.1

Published

MCP Server for CC Switch - Provider management for Claude Code, Codex, Gemini CLI, OpenCode & OpenClaw

Readme

CC Switch MCP Server

npm version License: MIT GitHub

English | 简体中文

Standalone MCP Server for CC Switch - providing provider management capabilities for Claude Code, Codex, Gemini CLI, OpenCode, and OpenClaw.

Key Features:

  • 🚀 Built with CC Switch's core library for identical behavior
  • 🔄 Automatic config file synchronization
  • 💾 Direct database access to CC Switch's SQLite database
  • 🪶 No Tauri dependencies - lightweight binary
  • 🤝 Works alongside CC Switch desktop app

Installation

From NPM

npm install -g @imvhb/cc-switch-mcp-server

From Source

git clone https://github.com/VirtualHotBar/cc-switch-mcp.git
cd cc-switch-mcp
cargo build --release --no-default-features

The binary will be at target/release/cc-switch-mcp (Linux/macOS) or target/release/cc-switch-mcp.exe (Windows).

Usage

Configure with Claude Desktop

Add to your Claude Desktop configuration (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):

{
  "mcpServers": {
    "cc-switch": {
      "command": "cc-switch-mcp"
    }
  }
}

Configure with OpenCode

Add to your OpenCode configuration (~/.config/opencode/config.json):

{
  "mcp": {
    "servers": {
      "cc-switch": {
        "command": "cc-switch-mcp"
      }
    }
  }
}

Configure with Gemini CLI

Add to your Gemini configuration (~/.gemini/settings.json):

{
  "mcpServers": {
    "cc-switch": {
      "command": "cc-switch-mcp"
    }
  }
}

Available Tools

| Tool | Description | |------|-------------| | list_providers | List all providers for a CLI tool with their configurations | | get_current_provider | Get the currently active provider for a CLI tool | | switch_provider | Switch to a specific provider (auto-syncs config files) | | add_provider | Add a new provider with specified configuration | | delete_provider | Delete a provider by ID | | sync_current_to_live | Sync current provider settings to live config files | | get_custom_endpoints | Get list of custom endpoints for a provider |

Example Usage

List Providers

{
  "tool": "list_providers",
  "arguments": {
    "app": "claude"
  }
}

Response:

{
  "app": "claude",
  "providers": [
    {
      "id": "default",
      "name": "default",
      "isCurrent": false,
      "settingsConfig": { ... }
    },
    {
      "id": "my-provider",
      "name": "My Provider",
      "isCurrent": true,
      "settingsConfig": { ... }
    }
  ],
  "currentProviderId": "my-provider",
  "total": 2
}

Switch Provider

{
  "tool": "switch_provider",
  "arguments": {
    "app": "claude",
    "providerId": "my-provider"
  }
}

Response:

{
  "success": true,
  "app": "claude",
  "providerId": "my-provider",
  "configSynced": true,
  "warnings": []
}

Add Provider

{
  "tool": "add_provider",
  "arguments": {
    "app": "claude",
    "name": "My API",
    "baseUrl": "https://api.example.com",
    "apiKey": "sk-xxx",
    "model": "claude-3-sonnet"
  }
}

Supported Apps

| App | Config File | Description | |-----|-------------|-------------| | Claude Code | ~/.claude.json | Anthropic's CLI tool | | Codex | ~/.codex/config.toml | OpenAI's Codex CLI | | Gemini CLI | ~/.gemini/settings.json | Google's Gemini CLI | | OpenCode | ~/.config/opencode/config.json | OpenCode CLI | | OpenClaw | ~/.openclaw/config.json | OpenClaw CLI |

Architecture

This MCP server uses CC Switch's actual core library (cc_switch_lib) compiled without Tauri GUI support:

┌─────────────────────┐
│   MCP Protocol      │
│   (JSON-RPC 2.0)    │
└─────────┬───────────┘
          │
┌─────────▼───────────┐
│   cc-switch-mcp     │
│   (This Server)     │
└─────────┬───────────┘
          │
┌─────────▼───────────┐
│   cc_switch_lib     │
│   (Core Library)    │
│  - ProviderService  │
│  - Database         │
│  - Config Sync      │
└─────────────────────┘

This ensures identical behavior with the CC Switch desktop app.

Database

The server reads directly from the CC Switch SQLite database:

  • Location: ~/.cc-switch/cc-switch.db
  • Compatible: Fully compatible with the desktop app
  • Safe: Can be used alongside CC Switch desktop

Development

# Run in development mode with logging
RUST_LOG=debug cargo run --no-default-features

# Build release
cargo build --release --no-default-features

# Run tests
cargo test --no-default-features

License

MIT

Credits