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