MCPTest

JunJunZi001/MCPTest
★ 0 stars Unknown language 💻 Code/Dev Tools Updated 2d ago
This is a agent+MCP server project.
View on GitHub →

Quick Install

Copy the config for your editor. Some servers may need additional setup — check the README.

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "mcptest": {
      "command": "npx",
      "args": [
        "-y",
        "JunJunZi001/MCPTest"
      ]
    }
  }
}

README Excerpt

A simple Python MCP demo project. - `server.py`: MCP server with `add` and `multiply` tools. - `agent.py`: simple agent that uses Qwen to decide whether to call MCP tools. - `requirements.txt`: Python dependencies. ```powershell python -m venv .venv .\.venv\Scripts\Activate.ps1 python -m pip install -r requirements.txt