- Home
- MCP servers
- Error Debugging
Error Debugging
- typescript
0
GitHub Stars
typescript
Language
2 months ago
First Indexed
3 weeks ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"firozanam-error-debugging-mcp-server": {
"command": "./start-mcp-server.sh",
"args": []
}
}
}You have a production-ready MCP server that detects errors across multiple languages in real-time and provides AI-assisted analysis to help you locate, understand, and fix issues faster. It coordinates with IDEs through the Model Context Protocol to give you proactive feedback during development, testing, and debugging sessions.
How to use
You connect your MCP client to this server to gain AI-powered error detection and analysis across your project. Start a debugging session from within your IDE, and the server will monitor build, lint, runtime, and console outputs in real time. When an error is detected, you can ask the AI assistant to explain the issue, suggest fixes, and walk through potential resolutions. You can manage multiple languages and debugging sessions concurrently, with lifecycle controls for each session (start, inspect, pause, resume, end). Use the AI chat or command surface in your IDE to trigger error detection, request context-aware analysis, or request recommended fixes.
How to install
Prerequisites you need before installing the server:
• Node.js 22.14.0 or newer
• TypeScript 5.3.0 or newer (optional, falls back gracefully if missing)
• MCP-compatible IDEs such as VS Code, Cursor, Windsurf, or Augment Code
Step-by-step setup to run the MCP server locally:
# Clone the repository
git clone https://github.com/your-org/error-debugging-mcp-server.git
# Change directory to the project directory
cd error-debugging-mcp-server
# Install dependencies
npm install
# Build the project
npm run build
# Start the server
npm start
# Or use the startup script for better reliability
./start-mcp-server.sh
Additional setup notes
After starting, the server will initialize and create a default error-debugging-config.json if none exists. You can customize settings for detection, analysis, debugging, and performance in the configuration files described in the configuration section.
Available tools
detect-errors
Detects errors from various sources (console, runtime, build, test)
analyze-error
Performs deep analysis of a specific error with AI insights