Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog
Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

Follow AllMCPs on X (opens in a new tab)AllMCPs on GitHub (opens in a new tab)
Launched onTiny Startupstinystartups.com
Explore
  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Random discovery New
  • Submit a server
  • Pricing & Boost Boost
Learn
  • Guides hub
  • What is MCP?
  • Install guide
  • Build an MCP server
  • Deploy an MCP server
  • Security guide
  • Troubleshooting
  • MCP for SEO & AEO
  • Protocol versioning
  • Blog & updates
Tools
  • All developer tools
  • Config generator
  • Config validator
  • Config auditor
  • MCP playground
  • Token calculator
  • OpenAPI β†’ MCP
  • Badge generator
For agents
  • REST API docs
  • Trust & traffic Live
  • Remote MCP server SSE β†— (opens in a new tab)
  • llms.txt β†— (opens in a new tab)
  • Catalog JSON β†— (opens in a new tab)
Company
  • About
  • Advertise Sponsor
  • Contact
  • X (@AllMCPs) β†— (opens in a new tab)
  • GitHub β†— (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZoneAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZone
Β© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. 🏒 Workplace & Productivity
  3. Rebar
R
Health: Not checked yetWe have not completed a health check for this listing yet.No health check has run yet.

Rebar

User RatingsBe the first to rate and review this MCP server! Enrichment pendingWe haven’t run our AI enrichment pass on this listing yet, so the overview, use cases, and FAQ below may be sparse or missing. We work through the catalog over time β€” check back soon.
View Repository

Event-sourced ticket system with a Jira reconciler, exposed as an MCP server.

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β€” or use 1-click editor setup below.

Add to CursorAdd to VS Code
Manual Client & Custom JSON ConfigExpand JSON β–Ύ

Client Config & Setup

Choose your client or environment
Target File:~/Library/Application Support/Claude/claude_desktop_config.json
claude_desktop_config.json
{
  "mcpServers": {
    "rebar": {
      "command": "npx",
      "args": [
        "-y",
        "rebar"
      ]
    }
  }
}

πŸ’‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.

Install Directory Badge Claim listing Alternatives🏒 More in Workplace & Productivity

Documentation Overview

rebar

PyPI version Python versions License: Apache 2.0 CI

An event-sourced, git-backed ticket store + Jira reconciler built for agent swarms β€” one store, exposed as a Python library, a CLI, and an MCP server.

rebar's core loop: rebar ready β†’ rebar claim β†’ rebar transition … closed

  • Three surfaces, one store β€” drive rebar as a CLI (rebar), a Python library (import rebar), or an MCP server (rebar-mcp).
  • The tracker lives in the repo β€” tickets are an append-only event log on a tickets git branch; no database, no daemon, and it travels with every clone.
  • Built for parallel agents β€” atomic claims, convergent merges, and provenance links let many agents and sessions write at once without lost work.
  • Optional LLM gates β€” review a ticket's plan before work, its completion before close, and its code before it merges.
  • Bidirectional Jira sync β€” a level-triggered reconciler keeps tickets and Jira in step, so teammates stay in the loop.
  • Dogfooded through two independent gates β€” every change to rebar's own main must pass an LLM code review and CI, on Gerrit, before it lands.

Install

bash
pipx install nava-rebar          # the `rebar` CLI (add [mcp] / [agents] for those extras)
brew install navapbc/rebar/rebar # or via Homebrew

Quickstart

Run one ticket end-to-end with the CLI or the Python library; the JSON block is the MCP server config so agents can drive the same loop over MCP. rebar --help (and rebar <command> --help) is the authoritative command reference.

server.ts
# CLI: one ticket through init -> create -> ready -> claim -> close
rebar init
tid=$(rebar create task "Add a login page" -o json | python3 -c 'import json,sys; print(json.load(sys.stdin)["id"])')
rebar ready                                              # lists it as ready to work
rebar claim "$tid"                                       # open -> in_progress
rebar transition "$tid" in_progress closed              # in_progress -> closed
server.ts
import rebar                                            # the same loop via the Python library
tid = rebar.create_ticket("task", "Add a login page")
rebar.claim(tid)
rebar.transition(tid, "in_progress", "closed")
config.json
{ "mcpServers": { "rebar": { "command": "uvx", "args": ["--from", "nava-rebar[mcp]", "rebar-mcp"] } } }

That's the whole loop β€” init β†’ create β†’ ready β†’ claim β†’ close. The CLI and Python blocks each drive one ticket end-to-end (the same id threaded through every step, no hard-coded id); the JSON is the MCP server config β€” add it to your client so an agent can run the same loop via the MCP tools. State is shared through the repo so many agents (and teammates via Jira) coordinate without stepping on each other.

How it works

rebar stores tickets as an append-only event log on a dedicated tickets git orphan branch (worktree at .tickets-tracker/); ticket state is computed by replaying events, and every write auto-commits and pushes so the store is shared immediately. A level-triggered reconciler bidirectionally syncs tickets with Jira. The branch name and worktree dir are configurable (tracker.branch / tracker.dir β€” see Configuration). Reads stay sub-second into the thousands of tickets; for measured numbers and git-growth expectations see docs/scale-envelope.md.

Documentation lives under docs/ β€” start with the docs index (grouped by audience: user / operator / contributor / agent) or the day-to-day user guide.

Why rebar

If you run coding agents against a repo, you eventually want to run several at once β€” and the moment you do, they need a shared place to coordinate. Most trackers weren't built for that:

  • They're heavy. A daemon to babysit or a local database to keep running, with dependencies thick enough that a routine upgrade can break your work tracking across machines.
  • They don't travel with the code. State lives outside the repo, so a fresh clone doesn't come with its tickets.
  • They fight your git history. A tracker that writes to your working branch tangles ticket churn into your source-code commits.
  • They have no concurrency story. Nothing stops two agents from claiming the same work or clobbering each other's state, and concurrent edits produce merge conflicts you resolve by hand β€” or lose.
  • They buckle at scale. Speed and usability fall off past a few hundred tickets.

rebar's answer is to make the tracker part of the repo. Tickets are an append-only event log on a dedicated tickets orphan branch (linked in through a gitignored worktree); current state is a fast, deterministic replay of that log. That single decision pays off across the board:

  • Zero infrastructure, fully portable. No database, no daemon β€” just git and a lightweight Python install. Clone the repo and the tracker comes with it.
  • No commit interference. Ticket events live on their own branch and never touch your source history. Every write auto-commits and auto-pushes, so activity is shared in real time.
  • Concurrency by design. Each event gets a globally-unique filename, so parallel writes merge as a clean union, and the rare conflicting fork resolves deterministically β€” every clone converges with no lost data. claim is an atomic, optimistic-concurrency primitive: agents grab work without stepping on each other.
  • Built to scale. The event log plus cached replay stays fast as tickets grow.

On top of that foundation, rebar adds what parallel agent work actually needs:

  • Bidirectional Jira sync β€” agents work in rebar, teammates work in Jira, and a level-triggered reconciler keeps the two in step. To run it automatically in CI, see docs/jira-sync-setup.md (the GitHub Actions reconcile-bridge + heartbeat-canary setup).
  • Conflict-aware scheduling β€” tickets record their file impact, so next-batch hands parallel agents work that won't collide on the same files.
  • Scratch space β€” an invisible per-ticket channel for subagents to pass notes to one another.
  • Structural quality gates β€” clarity, acceptance-criteria, dispatch-readiness, and repo-wide health checks keep work dispatch-ready.
  • LLM review gates (optional). Review an agent's plan before work starts, its completion before the ticket closes, and its code before it merges. Plan-review and code-review share one four-pass kernel. A finder cites evidence, a separate verifier tests each claim with atomic yes or no questions, and deterministic policy decides what blocks. A passing plan or completion review records an operation certificate as a DSSE envelope. The envelope carries an SSHSIG signature over its PAE bytes, produced with the signing environment's Ed25519 key. The certificate names that environment as its principal. The result is a machine-checkable process record for the reviewed work.
  • Provenance links β€” discovered_from ties emergent work back to the ticket that surfaced it.
  • One store, three interfaces β€” drive it from the CLI, a Python library, or the MCP server.

Requirements

System prerequisites:

  • Python β‰₯ 3.11
  • git is a runtime prerequisite because the store uses a Git orphan branch and worktree. The runtime engine uses in-process Python and does not require bash or jq.
  • Git 2.38 or newer is required for development, tests, and CI. The floor is declared in .github/git-version-floor.txt. The test suite and CI fail when Git is below that floor.
  • Deployments that use the optional S3 repair path require Git 2.38 or newer because that path invokes git merge-tree --write-tree.
  • No external lock binary is required. Write serialization uses a two-window lock built entirely from the Python standard library β€” a fcntl.flock(LOCK_EX) advisory lock plus an atomic mkdir lock (src/rebar/_store/lock.py) β€” so there is no dependency on util-linux's flock binary (or any other external tool). The mkdir window keeps mutual exclusion holding even where fcntl.flock is unreliable (e.g. some network filesystems).
  • acli (Atlassian CLI) β€” a required external binary for the Jira Cloud reconciliation/bridge path: every bridge/reconcile Cloud mutation shells out to it, so it must be installed on PATH (install pointer: docs/jira-sync-setup.md). The [jira-datacenter] Data Center path does not need it β€” it uses the jira Python library.

Python dependencies. A base install (pip install nava-rebar) provides the rebar CLI, the import rebar library, and the lean workflow engine. It installs pyyaml>=6 for the workflow DSL loader, jsonschema>=4.18 for schema registry and workflow input and output validation, and referencing>=0.30 for JSON Schema $ref resolution. The engine core and reconciler otherwise use the Python standard library. All other dependencies are optional extras that are imported lazily to keep the base installation light. CI verifies this boundary.

Read the full README β†’View source on GitHub β†’

Related MCP Servers

View all in Workplace & Productivity View all alternatives
  • SmartCut logoSmartCut

    Cutlist optimization for sheet, linear and roll stock, with grain, kerf, nesting and saw exports.

    🏒 Workplace & Productivity0 views
    Compare vs SmartCut β†’
  • Atlassian Attachments logoAtlassian Attachments

    MCP server for downloading Jira and Confluence Cloud attachments by attachment ID.

    🏒 Workplace & Productivity0 views
    Compare vs Atlassian Attachments β†’
  • Airtable User MCP logoAirtable User MCP

    Manage Airtable bases: schema, field CRUD, views, formula validation, extensions

    🏒 Workplace & Productivity1 views
    Compare vs Airtable User MCP β†’
  • MCP Gsuite logoMCP Gsuite

    Integration with gmail and Google Calendar.

    🏒 Workplace & Productivity3 views
    Compare vs MCP Gsuite β†’

Reviews

No reviews yet β€” be the first to share how this listing worked for you.

Frequently Asked Questions about Rebar

Add the following block to your claude_desktop_config.json under mcpServers: "mcpServers": { "rebar": { "command": "npx", "args": ["-y", "rebar"] } }

AllMCPs Directory Badge

Full Badge Customizer

Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.

Badge Style:
Live Dynamic SVG PreviewRebar AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/rebar?style=directory)](https://allmcps.com/mcp/rebar)
HTML Embed
<a href="https://allmcps.com/mcp/rebar"><img src="https://allmcps.com/api/badge/rebar?style=directory" alt="Rebar on AllMCPs" /></a>

Technical Specs & Signals

Category🏒Workplace & Productivity
More technical detailsExpand β–Ύ
TransportSTDIO
RuntimeNode.js
Last updatedSep 7, 2026
Views0
Unique ViewsTotal visits recorded for this listing page on AllMCPs.
Installs0
Installs & Copy ActionsTotal times users copied install commands or configuration snippets for this server.
27Quality signal: Emerging Β· 27/100How this signal is calculated β–Ύ
Server availabilityNot measured

Not scored for repo-hosted servers β€” we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership8/20
Documentation & tools11/30
Adoption & activity1/15
Community engagement0/10

A guidance signal from public completeness & health data β€” not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

β˜… FeaturedAllMCPs Server logo

AllMCPs Server

The official MCP server for AllMCPs.com - submit and manage tools directly from your AI. The open directory for MCP servers. Connect Claude, Cursor, Windsurf, and AI agents to databases, tools, files, and APIs. Explore 10,000+ servers. AllMCPs is the premier, open directory for discovering, evaluating, and installing Model Context Protocol (MCP) servers to equip AI agents and LLMs with real-world superpowers.

Explore Server β†’

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to unlock edit access and the Official badge and attach your website β€” proof is checked automatically, then reviewed by our team.

Free dofollow backlink: add your website and place the AllMCPs badge on it β€” no claim needed. We detect it automatically and keep it verified as long as the badge stays live.

Claim & get free dofollow

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.

Explore more

More in 🏒 Workplace & Productivity β†’Best MCP servers for Workplace & Productivity β†’Alternatives to Rebar β†’Install in Claude DesktopInstall in CursorInstall in VS Code