@steadwing/mcp-server
v0.1.5
Published
Steadwing MCP server — AI-powered root cause analysis for Cursor, Smithery, Claude Desktop, and any MCP-compatible client
Downloads
838
Maintainers
Readme
Steadwing MCP Server
Steadwing MCP server — AI-powered root cause analysis for Cursor, Smithery, Claude Desktop, and any MCP-compatible client.
Setup
Get your API key from: https://app.steadwing.com/organization
Installation
Cursor
Add to your project's .cursor/mcp.json:
{
"mcpServers": {
"steadwing": {
"command": "npx",
"args": ["-y", "@steadwing/mcp-server"],
"env": {
"STEADWING_API_KEY": "your_api_key_here"
}
}
}
}Or install via the Cursor Marketplace (search "Steadwing").
Smithery
npx @smithery/cli install @steadwing/mcp-server --client claudeOr with pre-configured API key:
npx @smithery/cli install @steadwing/mcp-server --client claude --config '{"Steadwing API Key":"your_api_key_here"}'Claude Desktop
Add to your Claude Desktop config:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"steadwing": {
"command": "npx",
"args": ["-y", "@steadwing/mcp-server"],
"env": {
"STEADWING_API_KEY": "your_api_key_here"
}
}
}
}Restart Claude Desktop after updating config.
Any MCP Client
This server uses stdio transport. Run it with:
STEADWING_API_KEY=your_key npx -y @steadwing/mcp-serverTool: run_rca
Analyzes errors with AI-powered root cause analysis.
Input:
error(required) — error message, stack trace, or incident descriptionfiles(optional) — array of{ name, content }for relevant source files (max 20)
Output: A URL to the incident on Steadwing where you can view the full analysis.
