MCP Cursor

Enhance your development workflow with AI-powered MCP tools and extensions for Cursor IDE.

Product

  • MCP Servers
  • Getting Started
  • Documentation
  • Open Source

Resources

  • MCP Specification
  • Cursor IDE
  • MCP GitHub
  • Contributing

Legal

  • Privacy Policy
  • Terms of Service
  • Cookie Policy
Made withfor the developer community
ยฉ 2025 MCP Cursor. All rights reserved.
MCP Logo
MCP Cursor
IntroductionMCPs
IntroductionMCPs
3D MCP Cursor Visualization
  1. Home
  2. Servers
  3. ๐Ÿงช Official MCP Server for Debugg AI MCP
๐Ÿงช Official MCP Server for Debugg AI MCP Logo

๐Ÿงช Official MCP Server for Debugg AI MCP

Model Context Protocol Integration

Overview

Zero-Config, Fully AI-Managed End-to-End Testing for all code gen platforms.

# Official Debugg.AI MCP - e2e Testing for all

Zero-Config, Fully AI-Managed End-to-End Testing for all code gen platforms.

Installation Instructions


README: https://github.com/debugg-ai/debugg-ai-mcp

๐Ÿงช 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

Debugg AI MCP server

๐Ÿš€ 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
descriptionstringโœ…What feature or page to test (e.g. "Signup page form")
localPortnumberโŒPort of your running app (default: 3000)
repoNamestringโŒGitHub repo name
branchNamestringโŒCurrent branch
repoPathstringโŒAbsolute path to the repo
filePathstringโŒFile 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 local node-built dist
npx @modelcontextprotocol/inspector --config test-config.json --server debugg-ai-mcp-node

# OR Run the MCP server locally from above toplevel dir. 
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

  • Model Context Protocol SDK

๐Ÿ’ฌ 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

Featured MCPs

Github MCP - Model Context Protocol for Cursor IDE

Github

This server provides integration with Github's issue tracking system through MCP, allowing LLMs to interact with Github issues.

Sequential Thinking MCP - Model Context Protocol for Cursor IDE

Sequential Thinking

An MCP server implementation that provides a tool for dynamic and reflective problem-solving through a structured thinking process. Break down complex problems into manageable steps, revise and refine thoughts as understanding deepens, and branch into alternative paths of reasoning.

Puppeteer MCP - Model Context Protocol for Cursor IDE

Puppeteer

A Model Context Protocol server that provides browser automation capabilities using Puppeteer. This server enables LLMs to interact with web pages, take screenshots, execute JavaScript, and perform various browser-based operations in a real browser environment.