通义千问
STDIO集成Qwen代码的MCP编程助手服务器
集成Qwen代码的MCP编程助手服务器
📚 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.
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 link
Visit our GitHub Releases page to download the latest version.
Qwen Code offers advanced programming capabilities:
claude mcp add qwen-code -- npx -y qwen-mcp-tool
Type /mcp inside Claude Code to verify the Qwen Code MCP is active.
If you already have it configured in Claude Desktop:
"qwen-code": { "command": "npx", "args": ["-y", "qwen-mcp-tool"] }
claude mcp add-from-claude-desktop
Register 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:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.json~/.config/claude/claude_desktop_config.jsonAfter updating the configuration, restart your terminal session.
/qwen-code and 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 dependenciesask 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_aboutThe 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 APIThese 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 to qwen-plus.sandbox (optional): Set to true to 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 to qwen-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 to qwen-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 to qwen-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 to qwen-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).
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).prompt (required): Code testing request (e.g., /sandbox prompt:Create and run a Python script that processes CSV data or /sandbox prompt:@script.py Test this script safely).message (optional): A message to echo back.task (required): The coding task to performlanguage (optional): Programming language to useframework (optional): Framework or library to userequirements (optional): Specific requirements or constraintscode (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 followcode (required): The code to refactorlanguage (optional): Programming language of the codegoal (optional): The goal of the refactoringcode (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.