AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified MIT Self-run

Swe Bench Pro Action

mcp-greynewell-swe-bench-pro-action · by greynewell

GitHub Action for SWE-bench Pro evaluation powered by mcpbr

No reviews yet
0 installs
17 views
0.0% view→install

Install

$ agentstack add mcp-greynewell-swe-bench-pro-action

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-greynewell-swe-bench-pro-action)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
5mo ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Swe Bench Pro Action? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

SWE-bench Pro Evaluation Action

[](https://github.com/greynewell/swe-bench-pro-action/actions/workflows/preflight.yml) [](https://github.com/greynewell/swe-bench-pro-action/actions/workflows/test.yml) [](LICENSE)

A GitHub Action for running SWE-bench Pro preflight validation and agent evaluation, powered by mcpbr.

SWE-bench Pro is Scale AI's multi-language software engineering benchmark: 1,865 task instances across 41 repositories in Python, Go, JavaScript, and TypeScript. This action lets you validate golden patches (preflight) and run agent evaluations against those instances directly in CI.

Quick Start

Preflight Validation

Validate that golden patches pass their test suites before running agent evaluations:

- uses: greynewell/swe-bench-pro-action@v1
  with:
    mode: preflight
    sample-size: "5"

Full Evaluation

Run your MCP agent against SWE-bench Pro instances:

- uses: greynewell/swe-bench-pro-action@v1
  with:
    mode: evaluate
    config: mcpbr.yaml
    anthropic-api-key: ${{ secrets.ANTHROPIC_API_KEY }}
    sample-size: "10"

Inputs

| Input | Default | Description | |-------|---------|-------------| | mode | preflight | preflight (validate golden patches) or evaluate (run agent) | | benchmark | swe-bench-pro | Benchmark name | | sample-size | (all) | Number of instances to evaluate | | task-ids | (empty) | Comma-separated instance IDs | | filter-category | (empty) | Filter by language or repo substring | | max-concurrent | 2 | Max concurrent Docker containers | | timeout | 300 | Per-test timeout in seconds | | fail-fast | false | Stop on first failure | | config | (empty) | Path to mcpbr YAML config (required for evaluate) | | anthropic-api-key | (empty) | Anthropic API key (evaluate mode) | | model | (empty) | Model override | | output-format | json,junit | Comma-separated: json, junit, markdown, html | | mcpbr-version | (latest) | Pin a specific mcpbr version |

Outputs

| Output | Description | |--------|-------------| | results-path | Path to the results directory | | total | Total instances evaluated | | passed | Number passed | | failed | Number failed | | success-rate | Success rate percentage |

Examples

CI Preflight Check

Run preflight on every push to catch environment issues early:

name: SWE-bench Preflight
on: [push, pull_request]

jobs:
  preflight:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4

      - name: Free disk space
        uses: jlumbroso/free-disk-space@main
        with:
          tool-cache: false

      - name: Run SWE-bench preflight
        uses: greynewell/swe-bench-pro-action@v1
        with:
          mode: preflight
          sample-size: "3"
          fail-fast: "true"

Nightly Evaluation

Run a full evaluation on a schedule:

name: SWE-bench Evaluation
on:
  schedule:
    - cron: "0 2 * * *"  # 2 AM UTC daily

jobs:
  evaluate:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4

      - name: Free disk space
        uses: jlumbroso/free-disk-space@main
        with:
          tool-cache: false

      - name: Run evaluation
        id: eval
        uses: greynewell/swe-bench-pro-action@v1
        with:
          mode: evaluate
          config: mcpbr.yaml
          anthropic-api-key: ${{ secrets.ANTHROPIC_API_KEY }}
          sample-size: "20"
          max-concurrent: "4"
          output-format: "json,junit,markdown"

      - name: Upload results
        uses: actions/upload-artifact@v4
        with:
          name: swe-bench-results
          path: ${{ steps.eval.outputs.results-path }}

      - name: Check success rate
        run: |
          echo "Success rate: ${{ steps.eval.outputs.success-rate }}%"
          echo "Passed: ${{ steps.eval.outputs.passed }}/${{ steps.eval.outputs.total }}"

Filter by Language

Evaluate only Python instances:

- uses: greynewell/swe-bench-pro-action@v1
  with:
    mode: preflight
    filter-category: python
    sample-size: "10"

Specific Task IDs

Run specific instances:

- uses: greynewell/swe-bench-pro-action@v1
  with:
    mode: preflight
    task-ids: "django__django-16046, scikit-learn__scikit-learn-25638"

Requirements

  • Runner: ubuntu-latest (x86_64). ARM64 runners are not supported due to SWE-bench container compatibility.
  • Docker: The runner must have Docker available. GitHub-hosted runners include Docker by default.
  • Disk space: SWE-bench images are large. Free disk space before running (see below).
  • API key (evaluate mode only): An Anthropic API key passed via secrets.

Disk Space

SWE-bench Docker images are large. On GitHub-hosted runners, use jlumbroso/free-disk-space to reclaim ~30GB:

- uses: jlumbroso/free-disk-space@main
  with:
    tool-cache: false    # keep tool cache for faster builds

Concurrency Guidance

| Runner Type | Recommended max-concurrent | Notes | |-------------|------------------------------|-------| | Free (ubuntu-latest) | 2 | 2 vCPU, 7 GB RAM | | Standard (4-core) | 4 | 4 vCPU, 16 GB RAM | | Large (8-core) | 6-8 | 8 vCPU, 32 GB RAM |

Architecture

This action runs as a Docker container on the GitHub Actions runner. It uses the host's Docker daemon (via socket mount) to create sibling containers for SWE-bench instances:

GitHub Runner (ubuntu-latest, x86_64)
├── Docker Daemon (native)
├── Action Container (mcpbr + Docker CLI)
│   └── /var/run/docker.sock (auto-mounted)
├── SWE-bench Container 1 (sibling)
└── SWE-bench Container 2 (sibling)

Running on x86_64 runners avoids ARM64/QEMU compatibility issues with Go, JavaScript, and TypeScript SWE-bench Pro instances.

Contributing

See [CONTRIBUTING.md](CONTRIBUTING.md) for development setup, testing, and submission guidelines.

License

MIT

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.