npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

qwen-mcp-tool

v0.1.0

Published

MCP server for Qwen AI integration

Readme

Qwen MCP Tool

--> Learn more from the github: https://github.com/jamubc/qwen-mcp-tool

GitHub Release npm version npm downloads License: MIT Open Source

Note: qwen-cli supports any OpenAI endpoint support type API, thus you can in theory use any OpenAI endpoint support compatible API. I was able to test qwen-cli using gpt-4o-mini without issues, potentially there are problems with persistance and might have to modify install command to handle envs.

This is a simple Model Context Protocol (MCP) server that allows AI assistants to interact with the Qwen CLI. It enables the AI to leverage the power of Qwen's capabilities for analysis using the @ syntax for direction.

  • Ask qwen natural questions, through claude or Brainstorm new ideas in a party of 3!

TLDR: Claude + Qwen

Goal: Use Qwen's powerful analysis capabilities directly in Claude Code to save tokens and analyze large files.

Prerequisites

Before using this tool, ensure you have:

  1. Node.js (v16.0.0 or higher)
  2. Qwen Code CLI installed and configured

One-Line Setup

claude mcp add qwen-cli -- npx -y qwen-mcp-tool

Verify Installation

Type /mcp inside Claude Code to verify the qwen-cli MCP is active.


Alternative: Import from Claude Desktop

If you already have it configured in Claude Desktop:

  1. Add to your Claude Desktop config:
"qwen-cli": {
  "command": "npx",
  "args": ["-y", "qwen-mcp-tool"]
}
  1. Import to Claude Code:
claude mcp add-from-claude-desktop

Configuration

Register the MCP server with your MCP client:

For NPX Usage (Recommended)

Add this configuration to your Claude Desktop config file:

{
  "mcpServers": {
    "qwen-cli": {
      "command": "npx",
      "args": ["-y", "qwen-mcp-tool"]
    }
  }
}

For Global Installation

If you installed globally, use this configuration instead:

{
  "mcpServers": {
    "qwen-cli": {
      "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

After updating the configuration, restart your terminal session.

Example Workflow

  • 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-cli and commands will populate in Claude Code's interface.

Usage Examples

With File References (using @ syntax)

  • ask qwen to analyze @src/main.js and explain what it does
  • use qwen to summarize @. the current directory
  • analyze @package.json and tell me about dependencies

General Questions (without files)

  • ask qwen to search for the latest tech news
  • use qwen to explain div centering
  • ask qwen about best practices for React development related to @file_im_confused_about

Using Qwen CLI's Sandbox Mode (-s)

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 data
  • ask qwen to safely test @script.py and explain what it does
  • use qwen sandbox to install numpy and create a data visualization
  • test this code safely: Create a script that makes HTTP requests to an API

Tools (for the AI)

These tools are designed to be used by the AI assistant.

  • 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-max.
    • sandbox (optional): Set to true to run in sandbox mode for safe code execution.
  • 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 CLI help text.

Slash Commands (for the User)

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 data or /sandbox prompt:@script.py Test this script safely).
  • /help: Displays the Qwen CLI help information.
  • /ping: Tests the connection to the server.
    • message (optional): A message to echo back.

License

This project is licensed under the MIT License. See the LICENSE file for details.

Note: This project is a fork of github.com/jamubc/gemini-mcp-tool

Disclaimer: This is an unofficial, third-party tool and is not affiliated with, endorsed, or sponsored by Alibaba Cloud.