syncause-debug-mcp
Enables AI agents to query runtime debugging facts (stack traces, logs, function arguments) captured by Syncause, allowing them to fix root causes with evidence instead of guessing.
README
Syncause Debug MCP Server
Without Syncause, coding agents often guess and only fix symptoms, so you may need to prompt the agent multiple times to fix the root cause.
With Syncause, agents can fix the root cause in one go. Syncause captures runtime facts (stack traces, logs, request/response, function arguments, and key variable values) and makes it queryable by AI agents via MCP—so the agent debugs with evidence instead of guessing.
Use it with:
- Syncause IDE Extension — capture runtime data in your IDE, then query it via MCP.
- Syncause Debugger Skill — a prompt/workflow layer that calls this MCP server.
Installation
[!NOTE] API Key Recommended: Get a free API key at syn-cause.com/dashboard for higher rate limits.
Common MCP Configuration works in most of the tools:
{
"mcpServers": {
"syncause-debug-mcp": {
"command": "npx",
"args": ["-y", "@syncause/debug-mcp@latest"],
"env": { "API_KEY": "YOUR_API_KEY" }
}
}
}
Configure in your client
<details> <summary><b>Install in Cursor</b></summary>
Edit .cursor/mcp.json (project) or ~/.cursor/mcp.json (global):
{
"mcpServers": {
"syncause-debug-mcp": {
"command": "npx",
"args": ["-y", "@syncause/debug-mcp@latest"],
"env": { "API_KEY": "YOUR_API_KEY" }
}
}
}
</details>
<details> <summary><b>Install in VS Code</b></summary>
Edit .vscode/settings.json:
{
"mcp.servers": {
"syncause-debug-mcp": {
"command": "npx",
"args": ["-y", "@syncause/debug-mcp@latest"],
"env": { "API_KEY": "YOUR_API_KEY" }
}
}
}
</details>
<details> <summary><b>Install in Antigravity</b></summary>
Edit ~/.gemini/antigravity/mcp_config.json (Global):
{
"mcp.servers": {
"syncause-debug-mcp": {
"command": "npx",
"args": ["-y", "@syncause/debug-mcp@latest"],
"env": { "API_KEY": "YOUR_API_KEY" }
}
}
}
</details>
<details> <summary><b>Install in Claude Code</b></summary>
Run this command (local stdio server):
API_KEY=YOUR_API_KEY claude mcp add syncause-debug-mcp -- npx -y @syncause/debug-mcp@latest
</details>
<details> <summary><b>Install in OpenAI Codex (CLI)</b></summary>
API_KEY=YOUR_API_KEY codex mcp add syncause-debug-mcp --command "npx -y @syncause/debug-mcp@latest"
</details>
<details> <summary><b>Install in Gemini CLI</b></summary>
API_KEY=YOUR_API_KEY gemini mcp add syncause-debug-mcp -- npx -y @syncause/debug-mcp@latest
</details>
<details> <summary><b>Install in Windsurf</b></summary>
Edit ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"syncause-debug-mcp": {
"command": "npx",
"args": ["-y", "@syncause/debug-mcp@latest"],
"env": { "API_KEY": "YOUR_API_KEY" }
}
}
}
</details>
<details> <summary><b>Install in Goose</b></summary>
Edit ~/.config/goose/config.yaml:
extensions:
syncause-debug-mcp:
type: stdio
name: Syncause Debug MCP
enabled: true
timeout: 300
cmd: npx
args: ["-y", "@syncause/debug-mcp@latest"]
envs:
API_KEY: "YOUR_API_KEY"
</details>
<details> <summary><b>Install in Opencode</b></summary>
Add this to your Opencode config:
{
"mcp": {
"syncause-debug-mcp": {
"type": "local",
"command": ["npx", "-y", "@syncause/debug-mcp@latest"],
"env": { "API_KEY": "YOUR_API_KEY" },
"enabled": true
}
}
}
</details>
Troubleshooting
npx: command not found→ install Node.js (or ensure your shell can find it).- Server won’t start in your client → try running the MCP server directly in a terminal first:
npx -y @syncause/debug-mcp@latest - Env not applied → many clients require restarting after config changes.
Security Notes
- Your
API_KEYis sensitive. Avoid committing MCP config files to Git. - Prefer project-level configs only when you need per-repo isolation.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.