MCP Hub
Back to servers

Qwen Package Manager

A package management server for Qwen MCP that handles the installation, configuration, and lifecycle management of other MCP servers via CLI and automated settings merging.

Stars
5
Forks
2
Updated
Aug 22, 2025
Validated
Jan 11, 2026

Qwen MCP Manager

MCP Server for managing other MCP servers in qwen-code.

Getting Started

npm install
npm run build

CLI Usage

After installation or via npx:

# Start the MCP server (stdio)
npx -y qwen-mcp-manager

# Merge MCP servers from a JSON file into ~/.qwen/settings.json
npx -y qwen-mcp-manager apply --file ./mcp.json

# Show help
npx -y qwen-mcp-manager --help

JSON example:

{
  "mcpServers": {
    "playwright": {
      "command": "npx",
      "args": ["@playwright/mcp@latest"]
    }
  }
}

Configure in Qwen Code

Use npx (recommended):

{
  "mcpServers": {
    "dgj": {
      "command": "npx",
      "args": ["-y", "qwen-mcp-manager"]
    }
  }
}

Or install globally and use the binary:

{
  "mcpServers": {
    "dgj": {
      "command": "qwen-mcp-manager"
    }
  }
}

Development

npm run dev

Reviews

No reviews yet

Sign in to write a review