Sponsored by Deepsite.site

🧪 Official MCP Server for Debugg AI

Created By
debugg-ai6 months ago
Zero-Config, Fully AI-Managed End-to-End Testing for all code gen platforms.
Content

🧪 Official MCP Server for Debugg AI

AI-driven browser automation and E2E test server implementing the Model Context Protocol (MCP), designed to help AI agents test UI changes, simulate user behavior, and analyze visual outputs of running web applications — all via natural language and CLI tools.

End to end testing used to be a nightmare. Not just to setup, but to manage over time as you made changes to your app.

Debugg AI's MCP server offers a NEW way to test, where you never have to worry about setting up playwright, local browsers or proxies with it fully remote, managed browsers that simply connect to a server running locally or remotely via a secure tunnel.

That means no distracting chrome pop ups as it's running tests, no managing chrome or playwright versions, and best of all - ZERO CONFIGURATION. Just grab an API key and add us to your MCP server list.

Should you want to later rerun those tests or create a suite of them to run in your CI / CD pipeline, you can see all historical test results in your dashboard - Debugg.AI App


🚀 Features

  • 🧠 MCP Protocol Support Full MCP server implementation with CLI and tool registry support.

  • 🧪 End-to-End Test Automation Trigger UI tests based on user stories or natural language descriptions via the debugg_ai_test_page_changes tool.

  • 🌐 Localhost Web App Integration Test your running dev app on any localhost port with simulated user flows.

  • 🧾 MCP Tool Notifications Sends real-time progress updates back to clients with step descriptions and UI state goals.

  • 🧷 Screenshot Support Capture final visual state of the page for LLMs with image rendering support.

  • 🧱 Stdio Server Compatible Plug into any MCP-compatible client (like Claude Desktop, LangChain agents, etc.) via stdin/stdout.


Examples

Input prompt: "Test the ability to create an account and login"

Test Create Account and Login

Results:

**Task Completed**

- Duration: 86.80 seconds
- Final Result: Successfully completed the task of signing up and logging into the account with the email 'alice.wonderland1234@example.com'.
- Status: Success

Full Demo:

Watch a more in-depth, Full Use Case Demo


🛠️ Quickstart

Ensure you have created a free account and generated an API Key - DebuggAI

Option 1: NPX (Local Development)

npx -y @debugg-ai/debugg-ai-mcp

Use this when testing or integrating into tools like Claude Desktop or your own AI agent.

Option 2: Docker

docker run -i --rm --init \
  -e DEBUGGAI_API_KEY=your_api_key \
  -e TEST_USERNAME_EMAIL=your_test_email \
  -e TEST_USER_PASSWORD=your_password \
  -e DEBUGGAI_LOCAL_PORT=3000 \
  -e DEBUGGAI_LOCAL_REPO_NAME=your-org/your-repo \
  -e DEBUGGAI_LOCAL_BRANCH_NAME=main \
  -e DEBUGGAI_LOCAL_REPO_PATH=/app \
  -e DEBUGGAI_LOCAL_FILE_PATH=/app/index.ts \
  quinnosha/debugg-ai-mcp

🧰 MCP Tool: debugg_ai_test_page_changes

Description

Run an end-to-end test on a running web app, testing a UI feature or flow described in natural language. Allows AI agents in ANY code gen platform to quickly evaluate proposed changes and ensure new functionality works as expected.

Input Parameters

NameTypeRequiredDescription
descriptionstringWhat feature or page to test (e.g. "Signup page form")
localPortnumberPort of your running app (default: 3000)
repoNamestringGitHub repo name
branchNamestringCurrent branch
repoPathstringAbsolute path to the repo
filePathstringFile to test

🧪 Example Claude Desktop Config

{
  "mcpServers": {
    "debugg-ai-mcp": {
      "command": "npx",
      "args": ["-y", "@debugg-ai/debugg-ai-mcp"],
      "env": {
        "DEBUGGAI_API_KEY": "YOUR_API_KEY",
        "TEST_USERNAME_EMAIL": "test@example.com",
        "TEST_USER_PASSWORD": "supersecure",
        "DEBUGGAI_LOCAL_PORT": 3000,
        "DEBUGGAI_LOCAL_REPO_NAME": "org/project",
        "DEBUGGAI_LOCAL_BRANCH_NAME": "main",
        "DEBUGGAI_LOCAL_REPO_PATH": "/Users/you/project",
        "DEBUGGAI_LOCAL_FILE_PATH": "/Users/you/project/index.ts"
      }
    }
  }
}

🔐 Environment Variables

VariableDescriptionRequired
DEBUGGAI_API_KEYAPI key for calling DebuggAI backend
TEST_USERNAME_EMAILEmail of test user account
TEST_USER_PASSWORDPassword of test user account
DEBUGGAI_LOCAL_PORTLocal port your app runs on
DEBUGGAI_LOCAL_REPO_NAMEGitHub repo name
DEBUGGAI_LOCAL_BRANCH_NAMEBranch name
DEBUGGAI_LOCAL_REPO_PATHLocal path to repo root
DEBUGGAI_LOCAL_FILE_PATHFile to test

🧑‍💻 Local Development

# Clone the repo and install dependencies
npm install

# Copy the test config and insert your creds
cp test-config-example.json test-config.json

# Run the MCP server locally
npx @modelcontextprotocol/inspector --config debugg-ai-mcp/test-config.json --server debugg-ai-mcp

📁 Repo Structure

.
├── e2e-agents/             # E2E browser test runners
├── services/               # Client for DebuggAI API
├── tunnels /               # Secure connections to remote web browsers
├── index.ts                # Main MCP server entry
├── Dockerfile              # Docker build config
└── README.md

🧱 Built With


💬 Feedback & Issues

For bugs, ideas, or integration help, open an issue or contact the DebuggAI team directly.


🔒 License

MIT License © 2025 DebuggAI


Made with 🩸, 💦, and 😭 in San Francisco

Server Config

{
  "mcpServers": {
    "debugg-ai-mcp": {
      "command": "node",
      "args": [
        "dist/index.js"
      ],
      "env": {
        "DEBUGGAI_API_KEY": "your key here",
        "TEST_USERNAME_EMAIL": "test email here",
        "TEST_USER_PASSWORD": "test password here",
        "MCP_REQUEST_TIMEOUT_RESET_ON_PROGRESS": "true",
        "DEBUGGAI_LOCAL_PORT": 3000,
        "DEBUGGAI_LOCAL_REPO_NAME": "your repo name here",
        "DEBUGGAI_LOCAL_BRANCH_NAME": "your branch name here",
        "DEBUGGAI_LOCAL_REPO_PATH": "/Users/your username here/Documents/GitHub/your repo name here",
        "DEBUGGAI_LOCAL_FILE_PATH": "optional file path here"
      },
      "options": {}
    },
    "debugg-ai-mcp-live": {
      "command": "npx",
      "args": [
        "-y",
        "@debugg-ai/debugg-ai-mcp"
      ],
      "env": {
        "DEBUGGAI_API_KEY": "your key here",
        "TEST_USERNAME_EMAIL": "test email here",
        "TEST_USER_PASSWORD": "test password here",
        "MCP_REQUEST_TIMEOUT_RESET_ON_PROGRESS": "true",
        "DEBUGGAI_LOCAL_PORT": 3000,
        "DEBUGGAI_LOCAL_REPO_NAME": "your repo name here",
        "DEBUGGAI_LOCAL_BRANCH_NAME": "your branch name here",
        "DEBUGGAI_LOCAL_REPO_PATH": "/Users/your username here/Documents/GitHub/your repo name here",
        "DEBUGGAI_LOCAL_FILE_PATH": "optional file path here"
      },
      "options": {}
    },
    "debugg-ai-mcp-docker-live": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--init",
        "-e",
        "DEBUGGAI_API_KEY=your key here",
        "-e",
        "DEBUGGAI_LOCAL_PORT=3000",
        "-e",
        "DEBUGGAI_LOCAL_REPO_NAME=your repo name here",
        "-e",
        "DEBUGGAI_LOCAL_BRANCH_NAME=your branch name here",
        "-e",
        "DEBUGGAI_LOCAL_REPO_PATH=/Users/your username here/Documents/GitHub/your repo name here",
        "quinnosha/debugg-ai-mcp"
      ],
      "env": {
        "DEBUGGAI_API_KEY": "your key here",
        "TEST_USERNAME_EMAIL": "test email here",
        "TEST_USER_PASSWORD": "test password here",
        "MCP_REQUEST_TIMEOUT_RESET_ON_PROGRESS": "true",
        "DEBUGGAI_LOCAL_PORT": 3000,
        "DEBUGGAI_LOCAL_REPO_NAME": "your repo name here",
        "DEBUGGAI_LOCAL_BRANCH_NAME": "your branch name here",
        "DEBUGGAI_LOCAL_REPO_PATH": "/Users/your username here/Documents/GitHub/your repo name here",
        "DEBUGGAI_LOCAL_FILE_PATH": "optional file path here"
      }
    }
  }
}
Recommend Servers
TraeBuild with Free GPT-4.1 & Claude 3.7. Fully MCP-Ready.
EdgeOne Pages MCPAn MCP service designed for deploying HTML content to EdgeOne Pages and obtaining an accessible public URL.
ChatWiseThe second fastest AI chatbot™
TimeA Model Context Protocol server that provides time and timezone conversion capabilities. This server enables LLMs to get current time information and perform timezone conversions using IANA timezone names, with automatic system timezone detection.
AiimagemultistyleA Model Context Protocol (MCP) server for image generation and manipulation using fal.ai's Stable Diffusion model.
Zhipu Web SearchZhipu Web Search MCP Server is a search engine specifically designed for large models. It integrates four search engines, allowing users to flexibly compare and switch between them. Building upon the web crawling and ranking capabilities of traditional search engines, it enhances intent recognition capabilities, returning results more suitable for large model processing (such as webpage titles, URLs, summaries, site names, site icons, etc.). This helps AI applications achieve "dynamic knowledge acquisition" and "precise scenario adaptation" capabilities.
Serper MCP ServerA Serper MCP Server
DeepChatYour AI Partner on Desktop
MCP AdvisorMCP Advisor & Installation - Use the right MCP server for your needs
Playwright McpPlaywright MCP server
Jina AI MCP ToolsA Model Context Protocol (MCP) server that integrates with Jina AI Search Foundation APIs.
Amap Maps高德地图官方 MCP Server
WindsurfThe new purpose-built IDE to harness magic
Tavily Mcp
Baidu Map百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Visual Studio Code - Open Source ("Code - OSS")Visual Studio Code
CursorThe AI Code Editor
MiniMax MCPOfficial MiniMax Model Context Protocol (MCP) server that enables interaction with powerful Text to Speech, image generation and video generation APIs.
Context7Context7 MCP Server -- Up-to-date code documentation for LLMs and AI code editors
Howtocook Mcp基于Anduin2017 / HowToCook (程序员在家做饭指南)的mcp server,帮你推荐菜谱、规划膳食,解决“今天吃什么“的世纪难题; Based on Anduin2017/HowToCook (Programmer's Guide to Cooking at Home), MCP Server helps you recommend recipes, plan meals, and solve the century old problem of "what to eat today"
BlenderBlenderMCP connects Blender to Claude AI through the Model Context Protocol (MCP), allowing Claude to directly interact with and control Blender. This integration enables prompt assisted 3D modeling, scene creation, and manipulation.