{"id":"0fa387f5-baf7-49d1-aeca-ccf61564be40","slug":"mcp-ry-ops-git-steer","name":"git-steer","description":"Self-hosting GitHub autonomy engine. The skid steer for your repos.","canonicalUrl":"https://xpersona.co/mcp/mcp-ry-ops-git-steer","sourceUrl":"https://github.com/ry-ops/git-steer","homepage":null,"source":"GITHUB_MCP","vendor":{"slug":"ry-ops","label":"Ry Ops","url":"https://github.com/ry-ops/git-steer"},"protocols":["MCP"],"capabilities":["github","automation","mcp","model-context-protocol","cli"],"trustScore":null,"trustConfidence":"unknown","artifactCount":0,"benchmarkCount":0,"lastRelease":"0.3.0","freshnessAt":"2026-02-25T03:03:32.313Z","freshnessLabel":"Feb 25, 2026","securityReviewed":true,"openapiReady":false,"stats":[{"label":"Trust score","value":"Unknown"},{"label":"Compatibility","value":"MCP"},{"label":"Freshness","value":"Feb 25, 2026"},{"label":"Vendor","value":"Ry Ops"},{"label":"Artifacts","value":"0"},{"label":"Benchmarks","value":"0"},{"label":"Last release","value":"0.3.0"}],"factsPreview":[{"factKey":"docs_crawl","category":"integration","label":"Crawlable docs","value":"6 indexed pages on the official domain","href":"https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar","sourceUrl":"https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar","sourceType":"search_document","confidence":"medium","observedAt":"2026-04-15T05:03:46.393Z","isPublic":true},{"factKey":"vendor","category":"vendor","label":"Vendor","value":"Ry Ops","href":"https://github.com/ry-ops/git-steer","sourceUrl":"https://github.com/ry-ops/git-steer","sourceType":"profile","confidence":"medium","observedAt":"2026-02-25T03:03:33.599Z","isPublic":true},{"factKey":"protocols","category":"compatibility","label":"Protocol compatibility","value":"MCP","href":"https://xpersona.co/api/v1/agents/mcp-ry-ops-git-steer/contract","sourceUrl":"https://xpersona.co/api/v1/agents/mcp-ry-ops-git-steer/contract","sourceType":"contract","confidence":"medium","observedAt":"2026-02-25T03:03:33.599Z","isPublic":true},{"factKey":"traction","category":"adoption","label":"Adoption signal","value":"1 GitHub stars","href":"https://github.com/ry-ops/git-steer","sourceUrl":"https://github.com/ry-ops/git-steer","sourceType":"profile","confidence":"medium","observedAt":"2026-02-25T03:03:33.599Z","isPublic":true},{"factKey":"handshake_status","category":"security","label":"Handshake status","value":"UNKNOWN","href":"https://xpersona.co/api/v1/agents/mcp-ry-ops-git-steer/trust","sourceUrl":"https://xpersona.co/api/v1/agents/mcp-ry-ops-git-steer/trust","sourceType":"trust","confidence":"medium","observedAt":null,"isPublic":true}],"highlights":["1 GitHub stars","Trust evidence available"],"agentCard":{"name":"git-steer","description":"Self-hosting GitHub autonomy engine. The skid steer for your repos.","source":"GITHUB_MCP","sourceId":"github-mcp:1146954030","repository":"https://github.com/ry-ops/git-steer","documentation":"https://xpersona.co/mcp/mcp-ry-ops-git-steer/agent/mcp-ry-ops-git-steer","protocols":["MCP"],"capabilities":["github","automation","mcp","model-context-protocol","cli"],"languages":["typescript"],"install":{"command":"git clone https://github.com/ry-ops/git-steer.git","ecosystem":"git"},"examples":[{"kind":"example","language":"text","snippet":"┌─────────────────────────────────────────────────────────────────┐\n│                        YOUR MAC                                 │\n│                                                                 │\n│   Keychain:                                                     │\n│     - GitHub App private key                                    │\n│     - App ID / Installation ID                                  │\n│                                                                 │\n│   $ npx git-steer                  (stdio → Claude Desktop)     │\n│   $ npx git-steer --http           (portal → localhost:3333)    │\n│         │                                                       │\n│         ├─► Pulls itself from ry-ops/git-steer                  │\n│         ├─► Pulls state from ry-ops/git-steer-state             │\n│         ├─► Runs MCP server in-memory (rate-limit-aware)        │\n│         └─► Commits state changes back on shutdown              │\n│                                                                 │\n└─────────────────────────────────────────────────────────────────┘\n                               │\n                    Throttled, ETag-cached,\n                    GraphQL-batched API calls\n                               │\n                               ▼\n┌─────────────────────────────────────────────────────────────────┐\n│                         GITHUB                                  │\n│                                                                 │\n│   ry-ops/git-steer              (source of truth for code)      │\n│   │                                                             │\n│   ry-ops/git-steer-state        (private repo)                  │\n│   ├── config/                                                   │\n│   │   ├── policies.yaml         (branch protection templates)   │\n│   │   ├── schedules.yaml        (job definitions)               │\n│   │   └── managed-repos.yaml    (what git-steer controls)       │\n│   ├── state/                             "},{"kind":"example","language":"text","snippet":"┌─────────────────────────────────────────────────────────────────┐\n│  YOUR MAC (MCP triggers intent)                                 │\n│                                                                 │\n│  Claude: \"Fix security vulnerabilities in cortex\"               │\n│       │                                                         │\n│       ▼                                                         │\n│  git-steer MCP: security_fix_pr(repo: \"cortex\", ...)            │\n│       │                                                         │\n│       └─► Dispatches workflow to GitHub Actions                 │\n└─────────────────────────────────────────────────────────────────┘\n                               │\n                               ▼\n┌─────────────────────────────────────────────────────────────────┐\n│  GITHUB ACTIONS (ephemeral compute)                             │\n│                                                                 │\n│  .github/workflows/security-fix.yml:                            │\n│    - Checkout target repo                                       │\n│    - Update dependencies                                        │\n│    - npm install / uv lock                                      │\n│    - Run tests                                                  │\n│    - Create branch, commit, push                                │\n│    - Open PR                                                    │\n│    - Report status back to git-steer-state                      │\n└─────────────────────────────────────────────────────────────────┘"}]}}