- Home
- MCP servers
- Qwen MCP Manager
Qwen MCP Manager
- javascript
5
GitHub Stars
javascript
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"cuifuze-qwen-dgj-mcp": {
"command": "npx",
"args": [
"-y",
"qwen-mcp-manager"
]
}
}
}Qwen MCP Manager is a command-line tool that lets you manage multiple MCP servers from a single control point. It streamlines starting, merging, and coordinating MCP-based clients, helping you keep your MCP workflows organized and repeatable.
How to use
Use the MCP client to run and control MCP servers from a unified interface. You can start the MCP manager, merge server configurations from a file into your settings, and query help for available commands. The common patterns are to start the MCP manager using a stdio-based flow and to apply configuration changes from a JSON file when you need to bring in multiple MCP server definitions.
How to install
Prerequisites: ensure you have Node.js installed on your system. You can verify by running node -v and npm -v in your terminal.
Install dependencies and build the project.
Notes on usage and setup
From a fresh install, you typically start the MCP manager in stdio mode and then optionally apply additional MCP server definitions from a separate JSON file.
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
Available tools
start
Launches the MCP manager in stdio mode to run and coordinate MCP servers.
apply
Merges MCP server definitions from a JSON file into your local settings to bring additional MCP servers under management.
help
Displays available commands and usage information for the MCP manager.