Skip to content

steadwing/cursor-mcp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Steadwing — Cursor Plugin

AI-powered root cause analysis for Cursor. Analyze errors, stack traces, and incidents directly from your editor.

What it does

This plugin adds the run_rca MCP tool to Cursor, powered by Steadwing. When you encounter an error, the AI agent can send it to Steadwing for deep root cause analysis and return a link to the full incident report.

Installation

Install from the Cursor Marketplace, or add manually to your project's .cursor/mcp.json:

{
  "mcpServers": {
    "steadwing": {
      "command": "npx",
      "args": ["-y", "@steadwing/mcp-server"],
      "env": {
        "STEADWING_API_KEY": "your-api-key-here"
      }
    }
  }
}

Setup

  1. Get your API key from https://app.steadwing.com/organization
  2. Set the STEADWING_API_KEY environment variable or enter it when prompted by Cursor

Plugin components

Component Description
mcp.json MCP server definition — runs @steadwing/mcp-server via npx
rules/use-steadwing-rca.mdc Conditional rule that suggests RCA when errors are detected
skills/run-rca/SKILL.md Skill definition for the RCA workflow

Usage

Once installed, the Cursor agent will automatically suggest Steadwing RCA when you:

  • Paste an error message or stack trace
  • Ask for help debugging a failing test or service
  • Mention "root cause analysis" or "Steadwing"

The tool sends your error (and optionally relevant source files) to Steadwing's API and returns a URL where you can view the full analysis.

Links

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Generated from cursor/plugin-template