waybill
Alternative git host integration that enables syncing Bitbucket pull requests and issues for token attribution and reporting.
Allows attribution of token usage to GitHub pull requests and issues, syncing PRs, merges, and commit history to generate work receipts and performance reports.
Alternative git host integration that enables syncing GitLab merge requests and issues for token attribution and reporting.
Allows attribution of token usage to Jira stories, syncing issues, story points, and epics to generate work receipts and performance reports.
Alternative issue tracker integration that enables syncing Linear issues, story points, and epics for token attribution and reporting.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@waybillinitialize my waybill ledger"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Waybill
Bring receipts. Waybill is token accounting for AI-assisted work — a Claude Code plugin that meters every token, attributes it to the Jira story it shipped, and turns the receipts into value reports, performance-review packets, and token-budget requests that survive scrutiny.
A waybill is the shipping document that itemizes cargo and its charges. You ship; Waybill keeps the itemized record.
Why
Two conversations decide a lot of an engineer's year, and both run on the same broken input:
"What was the AI budget worth?" — more teams allocate Claude tokens by demonstrated value. Use them well, show it, get more.
"What did you accomplish this cycle?" — performance reviews, promo packets, sprint reviews.
Humans answer both from memory, the night before, in adjectives. The person deciding can't tell honest claims from inflated ones, so they discount everything. Waybill fixes the evidence, not the persuasion: it records work as it happens, ties every claim to an artifact — a PR, an issue, a deploy tag, a transcript — and refuses to let you make the kind of claim that gets your next pitch ignored.
Related MCP server: Token Analyzer MCP
Sixty seconds to your first receipt
claude plugin marketplace add Jakeintech/waybill
claude plugin install waybill@waybillThen in a Claude Code session, say "initialize my waybill ledger". That's
the whole setup: no accounts, no tokens, no OAuth. Waybill seeds your
identity from git config, imports Anthropic list-price rates so costs
appear from day one, checks your transcript-retention setting, and renders
a bootstrap receipt from your local git history alone — your shipped
work, itemized, in under a minute.
Updating
Claude Code doesn't push plugin-update notifications; updating is one command whenever you like:
claude plugin update waybill@waybillThen restart Claude Code. waybill status (or waybill --version) shows
the engine version you're running. Waybill never checks for updates on its
own — no network calls without you asking is a commitment,
not an oversight. Releases and changelogs live on the
releases page; watch the
repo (Watch → Custom → Releases) if you want GitHub to email you.
The upgrade path (optional, five minutes)
Connecting your tracker and git host turns commits into receipts with story points, epics, and merge timestamps:
# Easiest — reuse your authenticated gh CLI:
export GITHUB_MCP_PAT="$(gh auth token)"
# Or mint a fine-grained read-only PAT (repos/PRs) at
# https://github.com/settings/personal-access-tokens and export it instead./mcp→ complete the OAuth flow foratlassian(no token needed).Say "sync my ledger and give me a bootstrap report."
Not sure what is or is not connected? waybill status says, and prints the
exact command to fix anything missing.
That imports your last ~90 days of your own issues and merged PRs and produces a facts-only report — shipped items, points, PRs, deploys — before you've changed a single habit. From then on, opening tasks through the ledger unlocks the stronger claims (see tiers below).
How it works
Moment | What happens |
You start a task |
|
You work | A |
Things merge |
|
You wonder where it went |
|
You need to make a case |
|
Every Claude Code token is metered deterministically from your local
transcripts and attributed to the story it served, with a per-event resolver
name and confidence, a conservation check (Σ attributed = Σ observed, per
session) you can re-run offline with waybill verify, an attribution inbox
for the ambiguous leftovers, and per-story waste diagnostics (what the
tokens bought — and what they wasted on retry loops). As of 1.0 the
schema is frozen: the receipts are the contract.
Evidence tiers (the whole idea)
Every number in a report states where it came from:
Facts — merge timestamps, deploy tags, story points, token counts.
Baseline deltas — your own pre-Claude velocity/cycle time vs. now.
Pre-registered estimates — logged before the work, reported as ranges.
Retrospective judgment — kept in the ledger, excluded from pitches by default.
Plus structural honesty: append-only storage (corrections supersede, never overwrite), ranges never collapse to midpoints, value counts only when merged or deployed, and costs (tokens spent, rework) appear in every pitch. Full rules: methodology.
Report presets
token-pitch— the ask, the receipts, the spend ledger, the efficiency trend, the forecast.perf-review— epic-level outcomes for a review period, including review/incident/docs work.sprint-recap/quarterly— the running record.
Reports render at three audience levels — self, internal, external —
with deterministic pseudonymization before anything leaves the org.
What Waybill will never do
No manager mode, no surveillance. It queries only your assigned issues and your authored PRs.
No peer ranking. The methodology refuses individual colleague comparisons by design — you compete with your own baseline, not with Dave.
No hosted service, no telemetry. Everything lives in
~/.waybill/(a local git repo you own).No time tracking. It records outcomes and estimates, not keystrokes.
These are commitments, not gaps. See ROADMAP.md.
Pausing, quieting, leaving
Trust in a tool that logs your work includes knowing exactly how to stop it. The full exit path, from turning it down to walking away:
Pause metering (client engagement, shared machine, debugging): set
"metering": { "enabled": false }in~/.waybill/config.json. Nothing is captured or metered while paused —waybill statusreportsmetering: PAUSEDso the state is never silent. Existing data is untouched; flip it back to resume.Turn down the talking:
"notices": { "level": "minimal" }keeps only budget-threshold lines ("off"silences everything Waybill says unprompted — metering still runs). The renewal reminder (budgets.renewal_reminder_days, default 14) obeys the same switch.Take your data:
waybill export --format json(orcsv) emits the spend ledger; the entire ledger is already plain JSONL in~/.waybill/— a local git repo you own. Copy it anywhere; nothing is proprietary.Uninstall the tool, keep the data:
claude plugin uninstall waybill@waybill, then restart Claude Code. Hooks and skills go away;~/.waybill/stays yours.Delete everything:
rm -rf ~/.waybill(or$WAYBILL_HOMEif you set one). That is the whole footprint — Waybill keeps no other state. Session transcripts under~/.claude/belong to Claude Code, not Waybill, and are governed by itscleanupPeriodDayssetting.
Compared to the alternatives
Memory / a spreadsheet brag doc | Org admin dashboards | Waybill | |
Captured when it happens | ✗ | ✓ | ✓ |
Tied to PRs/issues/deploys | ✗ | partial | ✓ |
Honest counterfactuals | ✗ | ✗ | ✓ (pre-registered, ranged) |
Works bottom-up, for you | ✓ | ✗ | ✓ |
Data you own locally | ✓ | ✗ | ✓ |
Docs
Tutorial: this README's quickstart, above.
Reference: ledger entry & config schema · skill reference · test plan — the docs Claude reads are the docs you read.
Explanation: value-measurement methodology · roadmap & scope · brand & voice · schema freeze & migration policy
Spec: full product specification — the normative design the shipped engine implements.
FAQ
Does it work without Jira or GitHub? Yes — that's the default. Git-only mode needs zero configuration and zero auth: metering, attribution by branch/pin, and the bootstrap receipt all run from local data. Connecting a tracker/git host upgrades the receipts; any of them with an MCP server can be swapped in (adapters).
Can I use this for performance reviews if my company doesn't ration tokens? Yes — that's the perf-review preset. The token pitch is one output of the ledger, not the point of it.
Is my data private? Local JSONL under your home directory; the only network calls are the MCP calls you authorize, scoped to your own items.
Why won't it compare me to teammates? Story points aren't comparable across people, scraping colleagues reads as surveillance, and your own trajectory is stronger evidence anyway. (methodology §6)
How do I justify AI spend to my manager? Run sync, then "build my token pitch". Bring the one-pager; keep the ledger for the follow-up questions.
Contributing
Issues and PRs welcome — see CONTRIBUTING.md, the roadmap, and issues labeled good first receipt. Adapter configs for other trackers are the most-wanted contribution. Please read the Code of Conduct; security reports go through SECURITY.md.
License
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseBquality-maintenanceProvides comprehensive telemetry and usage analytics for Claude Code sessions, including token usage tracking, cost monitoring, and tool usage patterns. Enables users to monitor their Claude usage with detailed metrics, warnings, and trend analysis.12
- Flicense-quality-maintenanceProvides intelligent analysis of token usage patterns and optimization recommendations to improve efficiency and reduce costs in Claude Code sessions. Offers real-time analysis, cost metrics, and actionable insights for better context window and tool usage optimization.3
- Alicense-qualityDmaintenanceTracks token usage and records coding sessions for Claude Desktop users, supporting both local SQLite and cloud Cloudflare D1 databases.283MIT
- Alicense-qualityCmaintenanceAutomatically tracks AI-assisted work sessions, code changes, and commands in Claude Code or Codex CLI, and provides daily stats, weekly reports, and data export through MCP tools.22MIT
Related MCP Connectors
Persistent context for Claude. Your AI always knows your projects and next actions across sessions.
Agentic workflow budget approvals with usage receipts.
Paid remote MCP for Claude Code skill update gate MCP, structured receipts, audit logs, and reviewer
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Jakeintech/waybill'
If you have feedback or need assistance with the MCP directory API, please join our Discord server