# ๐ Quick IDE Setup - Error Debugging MCP Server
## โก 30-Second Setup Guide
### ๐ Prerequisites
- โ
Node.js v22.14.0+
- โ
MCP-compatible IDE
- โ
Server built at: `/path/to/error-debugging-mcp-server/dist/index.js`
## ๐ฏ Quick Configuration
### VS Code
```json
{
"mcp.servers": {
"error-debugging": {
"command": "node",
"args": ["/path/to/error-debugging-mcp-server/dist/index.js"],
"env": {"NODE_ENV": "development"}
}
}
}
```
### Cursor IDE
```json
{
"servers": {
"error-debugging": {
"command": "node",
"args": ["/path/to/error-debugging-mcp-server/dist/index.js"],
"env": {"NODE_ENV": "development"}
}
}
}
```
### Augment Code โ
WORKING
```json
{
"mcp": {
"servers": {
"error-debugging": {
"command": "node",
"args": ["/path/to/error-debugging-mcp-server/dist/index.js"],
"transport": "stdio",
"env": {"NODE_ENV": "development"}
}
}
}
}
```
### Generic MCP Client
```json
{
"servers": {
"error-debugging": {
"command": "node",
"args": ["/path/to/error-debugging-mcp-server/dist/index.js"],
"transport": "stdio",
"capabilities": ["tools", "resources", "prompts"]
}
}
}
```
## ๐งช Quick Test
### 1. Create Test File
```javascript
// test.js - Intentional syntax error
function test() {
const result = {
// Missing closing brace
console.log("syntax error");
}
```
### 2. Test Detection
```json
{
"tool": "detect-errors",
"arguments": {
"source": "build",
"language": "javascript",
"files": ["test.js"]
}
}
```
### 3. Expected Result
```json
{
"errors": [{
"message": "Unexpected token '{'",
"type": "javascriptError",
"category": "syntax",
"severity": "high",
"line": 1,
"column": 1
}]
}
```
## โ
Success Indicators
- ๐ข Server connects in IDE
- ๐ข Tools `detect-errors`, `analyze-error` available
- ๐ข JavaScript/PHP errors detected
- ๐ข Response time <6 seconds
## ๐ Quick Troubleshooting
- **Not connecting?** Check server path and Node.js version
- **No tools?** Restart IDE after configuration
- **No errors detected?** Verify file has actual syntax errors
- **Slow performance?** Check for large directories being scanned
## ๐ Full Documentation
See `docs/IDE_INTEGRATION_GUIDE.md` for comprehensive setup guide.
---
**๐ Ready in 30 seconds!** Configure โ Test โ Debug! ๐โก๏ธโจ