π View Full Documentation - Search me!, Examples, FAQ, Troubleshooting, Best Practices
This project is a fork of gemini-mcp-tool by jamubc, adapted for Qwen Code.
The official repository for this project is hosted at: https://github.com/jeffery9/qwen-mcp-tool.git
Qwen Code is specifically designed for programming tasks, offering advanced capabilities in code generation, review, refactoring, and explanation. With this MCP tool, you can harness Qwen Code's powerful programming features directly from Claude.
This is a simple Model Context Protocol (MCP) server that allows AI assistants to interact with the Qwen Code. It enables the AI to leverage the power of Qwen's massive token window for large analysis, especially with large files and codebases using the @ syntax for direction.
- Ask Qwen natural questions, through claude or Brainstorm new ideas in a party of 3!
Goal: Use Qwen's powerful analysis capabilities directly in Claude Code to save tokens and analyze large files.
Before using this tool, ensure you have:
There are several ways to install and use this tool:
No installation needed - runs directly from GitHub:
claude mcp add qwen-code -- npx jeffery9/qwen-mcp-tool# Clone the repository
git clone https://github.com/jeffery9/qwen-mcp-tool.git
cd qwen-mcp-tool
# Install dependencies
npm install
# Build the project
npm run build
# Link globally (or install)
npm linkVisit our GitHub Releases page to download the latest version.
Qwen Code offers advanced programming capabilities:
- Code Generation: Create code from natural language descriptions
- Code Review: Analyze code for quality, performance, and security issues
- Code Refactoring: Improve code structure and readability
- Code Explanation: Understand complex code with detailed explanations
claude mcp add qwen-code -- npx -y qwen-mcp-toolType /mcp inside Claude Code to verify the Qwen Code MCP is active.
If you already have it configured in Claude Desktop:
- Add to your Claude Desktop config:
"qwen-code": {
"command": "npx",
"args": ["-y", "qwen-mcp-tool"]
}- Import to Claude Code:
claude mcp add-from-claude-desktopRegister the MCP server with your MCP client:
Add this configuration to your Claude Desktop config file:
{
"mcpServers": {
"qwen-code": {
"command": "npx",
"args": ["-y", "qwen-mcp-tool"]
}
}
}If you installed globally, use this configuration instead:
{
"mcpServers": {
"qwen-code": {
"command": "qwen-mcp"
}
}
}Configuration File Locations:
- Claude Desktop:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json - Linux:
~/.config/claude/claude_desktop_config.json
- macOS:
After updating the configuration, restart your terminal session.
- Natural language: "use qwen to explain index.html", "understand the massive project using qwen", "ask qwen to search for latest news"
- Claude Code: Type
/qwen-codeand commands will populate in Claude Code's interface.
ask qwen to analyze @src/main.js and explain what it doesuse qwen to summarize @. the current directoryanalyze @package.json and tell me about dependencies
ask qwen to search for the latest tech newsuse qwen to explain div centeringask qwen about best practices for React development related to @file_im_confused_about
The sandbox mode allows you to safely test code changes, run scripts, or execute potentially risky operations in an isolated environment.
use qwen sandbox to create and run a Python script that processes dataask qwen to safely test @script.py and explain what it doesuse qwen sandbox to install numpy and create a data visualizationtest this code safely: Create a script that makes HTTP requests to an API
These tools are designed to be used by the AI assistant, with enhanced programming capabilities.
ask-qwen: Asks Qwen for its perspective. Can be used for general questions or complex analysis of files.prompt(required): The analysis request. Use the@syntax to include file or directory references (e.g.,@src/main.js explain this code) or ask general questions (e.g.,Please use a web search to find the latest news stories).model(optional): The Qwen model to use. Defaults toqwen-plus.sandbox(optional): Set totrueto run in sandbox mode for safe code execution.
generate-code: Generates code based on a natural language description of the task.task(required): The coding task to perform (e.g., 'create a React component', 'write a Python function to sort a list')language(optional): Programming language to use (e.g., 'python', 'javascript', 'java', 'cpp')framework(optional): Framework or library to use (e.g., 'React', 'Vue', 'Django', 'Express')requirements(optional): Specific requirements or constraints for the codemodel(optional): The Qwen model to use. Defaults toqwen-plus.
review-code: Reviews code for quality, performance, security, and maintainability issues.code(required): The code to reviewlanguage(optional): Programming language of the code (e.g., 'python', 'javascript', 'java', 'cpp')focus(optional): Focus area for the review ('quality', 'performance', 'security', 'maintainability', 'all'). Defaults to 'all'.styleGuide(optional): Specific style guide to follow (e.g., 'PEP8', 'Google JavaScript Style Guide')model(optional): The Qwen model to use. Defaults toqwen-plus.
refactor-code: Refactors code to improve its structure, readability, or performance.code(required): The code to refactorlanguage(optional): Programming language of the code (e.g., 'python', 'javascript', 'java', 'cpp')goal(optional): The goal of the refactoring (e.g., 'improve readability', 'optimize performance', 'reduce complexity')model(optional): The Qwen model to use. Defaults toqwen-plus.
explain-code: Explains what a piece of code does and how it works.code(required): The code to explainlanguage(optional): Programming language of the code (e.g., 'python', 'javascript', 'java', 'cpp')detailLevel(optional): Level of detail for the explanation ('brief', 'detailed', 'comprehensive'). Defaults to 'detailed'.model(optional): The Qwen model to use. Defaults toqwen-plus.
sandbox-test: Safely executes code or commands in Qwen's sandbox environment. Always runs in sandbox mode.prompt(required): Code testing request (e.g.,Create and run a Python script that...or@script.py Run this safely).model(optional): The Qwen model to use.
Ping: A simple test tool that echoes back a message.Help: Shows the Qwen Code help text.
You can use these commands directly in Claude Code's interface (compatibility with other clients has not been tested).
- /analyze: Analyzes files or directories using Qwen, or asks general questions.
prompt(required): The analysis prompt. Use@syntax to include files (e.g.,/analyze prompt:@src/ summarize this directory) or ask general questions (e.g.,/analyze prompt:Please use a web search to find the latest news stories).
- /sandbox: Safely tests code or scripts in Qwen's sandbox environment.
prompt(required): Code testing request (e.g.,/sandbox prompt:Create and run a Python script that processes CSV dataor/sandbox prompt:@script.py Test this script safely).
- /help: Displays the Qwen Code help information.
- /ping: Tests the connection to the server.
message(optional): A message to echo back.
- /generate-code: Generates code from a natural language description.
task(required): The coding task to performlanguage(optional): Programming language to useframework(optional): Framework or library to userequirements(optional): Specific requirements or constraints
- /review-code: Reviews code for issues and improvements.
code(required): The code to reviewlanguage(optional): Programming language of the codefocus(optional): Focus area for the review ('quality', 'performance', 'security', 'maintainability', 'all')styleGuide(optional): Specific style guide to follow
- /refactor-code: Refactors code to improve its quality.
code(required): The code to refactorlanguage(optional): Programming language of the codegoal(optional): The goal of the refactoring
- /explain-code: Explains what a piece of code does.
code(required): The code to explainlanguage(optional): Programming language of the codedetailLevel(optional): Level of detail for the explanation ('brief', 'detailed', 'comprehensive')
Contributions are welcome! Please see our Contributing Guidelines for details on how to submit pull requests, report issues, and contribute to the project.
This project is licensed under the MIT License. See the LICENSE file for details.
Disclaimer: This is an unofficial, third-party tool and is not affiliated with, endorsed, or sponsored by Alibaba Cloud.