mcp-debugpy

mcp-debugpy

MCP server for AI-assisted Python debugging using debugpy and Debug Adapter Protocol, enabling AI agents to run tests, set breakpoints, and inspect variables via natural language.

Category
访问服务器

README

mcp-debugpy

CI Release

MCP server for AI-assisted Python debugging using debugpy and Debug Adapter Protocol.

Enable AI agents to debug your Python code through natural language. This MCP server provides:

  • pytest JSON reports for machine-readable failures
  • DAP (Debug Adapter Protocol) control of a live debugpy session (breakpoints, continue, variables)
  • MCP server exposing tools: run tests, read JSON, and send DAP commands

Quick start

macOS/Linux:

git clone <this-folder>
cd mvp-agent-debug
./setup.sh

# Activate the venv and run demos/tests:
source .venv/bin/activate
python src/dap_stdio_direct.py        # direct adapter walkthrough
python -m pytest tests/test_mcp_server.py  # verify MCP tooling

Windows:

git clone <this-folder>
cd mvp-agent-debug
setup.bat

REM Activate the venv and run demos/tests:
.venv\Scripts\activate
python src\dap_stdio_direct.py
python -m pytest tests\test_mcp_server.py

Install (from source):

python -m pip install -e '.[dev]'

IMPORTANT: Install git hooks to run CI checks before every commit:

./scripts/install-hooks.sh

This prevents CI failures by automatically running ruff, black, mypy, and pytest before allowing commits.

Run the CLI after activating the project virtualenv:

mcp-debug-server --help

Then register the MCP server with VS Code and/or Claude so they can launch it automatically:

python scripts/configure_mcp_clients.py

Open your MCP-aware chat surface and invoke tools like run_tests_json or dap_launch (see docs/mcp_usage.md for a full walkthrough).

The sample app intentionally contains a bug to demonstrate failing tests and an interactive breakpoint.

Optional helper

Run python scripts/configure_mcp_clients.py to detect existing VS Code/Claude MCP entries, interactively add/update/remove them, and generate a Claude snippet. Works on macOS, Linux, and Windows.

Developer tooling

This repository uses pre-commit hooks and CI for linting, formatting, and typing checks.

Install hooks locally:

source .venv/bin/activate
pip install pre-commit
pre-commit install
pre-commit run --all-files

If you prefer to run hooks manually, the CI runs ruff, black --check, and mypy before pytest.

📘 For a step-by-step walkthrough of every MCP tool (including suggested agent workflows for VS Code and Claude), see docs/mcp_usage.md.

Using the MCP tooling

IMPORTANT: MCP servers are automatically managed by MCP clients. You do NOT need to manually start this server from the command line. Instead, configure it in your MCP client (VS Code or Claude Desktop) and it will automatically start when needed.

Configuration

VS Code

Add to your settings.json:

{
  "mcp.servers.agentDebug": {
    "command": "/path/to/your/project/.venv/bin/python",
    "args": ["src/mcp_server.py"],
    "cwd": "/path/to/your/project",
    "env": {
      "PYTHONPATH": "/path/to/your/project/src"
    }
  }
}

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "agentDebug": {
      "command": "/path/to/your/project/.venv/bin/python",
      "args": ["src/mcp_server.py"],
      "cwd": "/path/to/your/project",
      "env": {
        "PYTHONPATH": "/path/to/your/project/src"
      }
    }
  }
}

Manual Testing (Protocol Development Only)

In normal usage you should never run python src/mcp_server.py yourself—MCP clients spawn and manage the process automatically. The notes below are only for developers building custom MCP clients or experimenting with raw protocol traffic.

Step 1 – Register the server with your MCP client

  • VS Code (AI Chat + MCP extension) — run the helper script (supports add/update/remove) or add the entry manually.

    # Optional helper that updates VS Code settings and writes a Claude snippet
    python scripts/configure_mcp_clients.py
    

    If configuring by hand, add this to settings.json:

    {
      "mcp.servers.agentDebug": {
        "command": "${workspaceFolder}/.venv/bin/python", // Windows: ".venv\\Scripts\\python.exe"
        "args": ["src/mcp_server.py"],
        "cwd": "${workspaceFolder}"
      }
    }
    

    VS Code will spawn and manage the server automatically whenever you open the chat.

  • Claude Desktop — open Settings → Model Context Protocol → Add server and enter (or paste the generated snippet):

    Command: /full/path/to/.venv/bin/python
    Arguments: src/mcp_server.py
    Working dir: /full/path/to/mvp-agent-debug
    

    Claude starts the process on demand and tears it down when idle.

  • Manual / CLI usage (protocol debugging only) — launching python src/mcp_server.py directly will block your terminal waiting for MCP-framed JSON messages. Do this only if you are writing a custom MCP client and need a raw stdin/stdout endpoint.

Step 2 – Launch the sample app under debugpy

  • Example tool request:

    {
      "name": "dap_launch",
      "input": {
        "program": "src/sample_app/app.py",
        "cwd": ".",
        "breakpoints": [8],
        "wait_for_breakpoint": true
      }
    }
    

The response includes the initialize/launch payloads plus an eventual stoppedEvent once line 8 is hit. If you prefer to skip the terminal noise, remove or keep the [dap:event] … debug prints in src/dap_stdio_client.py—they are purely diagnostic.

Step 3 – Inspect and resume

  • Call dap_locals to fetch the threads, stack frames, scopes, and locals.
  • Use dap_continue (optionally with a specific thread_id) to resume execution.
  • Call dap_shutdown when you are finished; it tears down the adapter process cleanly.

Step 4 – Run tests via MCP

  • Example tool request:

    { "name": "run_tests_json" }
    

Or focus on a subset with run_tests_focus.

Repository layout

  • src/sample_app/app.py – tiny app with a bug (drives sample failure)
  • src/sample_app/tests/test_app.py – pytest suite covering the bug
  • src/dap_stdio_client.py – stdio client talking to debugpy.adapter, handling reverse requests
  • src/dap_stdio_direct.py – direct adapter walkthrough (initialize → breakpoints → configurationDone → launch → stepping)
  • src/mcp_server.py – stdio MCP surface combining pytest helpers and DAP launch/inspect tools
  • tests/test_mcp_server.py – unit tests that fake the adapter to verify retries and control flow
  • examples/ – additional mini-projects with xfailed tests and detailed READMEs
    • examples/math_bug – arithmetic bug demo
    • examples/async_worker – async gather bug demo
    • examples/gui_counter – Tkinter counter UI showcasing GUI debugging
    • examples/web_flask – Flask endpoint for server-side walkthroughs
  • docs/testing.md – consolidated instructions for all automated tests
  • STATUS.md / FINAL_REPORT.md – project snapshot for maintainers

Requirements

  • requirements.txt – runtime dependencies (MCP server, debugpy, Flask)
  • requirements-dev.txt – test-only dependencies (pytest, pytest-asyncio, JSON reporting)

Contributing

See CONTRIBUTING.md for local setup tips and testing guidance.

Security

Bind debug servers to 127.0.0.1 and use SSH tunnels for remote hosts.

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选