Standup notes from merge request state, with the failed job's error lines.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag β we're steadily working through the catalog.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Standup notes from merge request state, not commit logs.
Most standup tools read your local git log. That answers "what did I type",
which is not what anyone asks in a standup. This one reads GitLab or GitHub:
what is ready to merge, what is blocked, what is waiting on you β and when a
pipeline is red, it opens the job log and tells you why.
| commit-log tools | standup-mr | |
|---|---|---|
| Source | local git log | GitLab or GitHub API |
| Merge request state | β | ready / blocked / draft / stale |
| Review queue | β | pending only, approvals filtered out |
| Failed pipeline | β | error lines from the job trace or the Actions job log |
| Self-hosted (GitLab CE/EE, GitHub Enterprise) | varies | first class |
| GitHub | GitLab | |
|---|---|---|
| Flags | --host / --token | --host / --token |
| Env | GITHUB_HOST / GITHUB_TOKEN | GITLAB_HOST / GITLAB_TOKEN |
| CLI session | gh auth config | glab auth config |
GitHub defaults to github.com when no host is given. GitLab has no default β
self-hosted is the norm there, so a host must come from a flag, env var, or
glab's own config.
The provider itself is picked in this order:
--provider github / --provider gitlab, if passed--host (github.com, gitlab.com, or a hostname
containing github/gitlab)STANDUP_PROVIDER, or whichever of the GITHUB_* / GITLAB_* env pairs
is setgh / glab is logged inIf none of these resolve β or both do, ambiguously β the command fails with a clear error instead of guessing.
So if you already use gh or glab, there is nothing to configure.
CLI β the core. Emits JSON; zero runtime dependencies.
MCP server (mcp/) β one tool, get_standup_data, for Claude Desktop,
Cursor, or any MCP client. See mcp/README.md.
Claude Code plugin β the note-writing playbook, shipped as the standup
skill. From inside Claude Code:
Then type /standup. Updates come with /plugin marketplace update standup-mr.
If you're not using Claude Code, wire up the MCP server for live data and paste in the note-writing rules separately.
Cursor β add to ~/.cursor/mcp.json (global) or .cursor/mcp.json
(project-local):
Codex β add to ~/.codex/config.toml:
The exact config key and file path are version-dependent for both clients β if a snippet above doesn't work, check Cursor's MCP docs or Codex's own config documentation for the current format rather than trusting this file blindly.
The server exposes three tools:
| Tool | What it does |
|---|---|
get_standup_data | Reads the provider and returns the report as JSON. Optional provider, host, lang. |
get_note_instructions | Returns the note-writing rules, so the assistant can write the note the way the skill would. |
post_standup_note | Posts a finished note to a Slack, Discord or Google Chat webhook. |
post_standup_note reads the webhook URL from STANDUP_WEBHOOK_URL and never
takes it as an argument β anyone holding that URL can post to the channel, so
it belongs with the tokens, not in a transcript. The payload shape is inferred
from the URL host; kind is only needed when a proxy hides it.
Three shapes are implemented: slack and google-chat both post {"text"},
discord posts {"content"}.
Slack and Google Chat do not render standard Markdown, so the note is rewritten
on the way out: **bold** becomes *bold* and a ## heading becomes a bold
line. Inline code, fenced blocks and their contents are left alone. Discord
speaks Markdown natively and is sent untouched. Anything else that accepts a Slack-shaped body β
Mattermost, Rocket.Chat, an n8n or Zapier endpoint β works today by passing
kind: "slack", or --slack URL on the CLI.
Outside MCP, the same rules are available on stdout:
--markdown is a digest, not a written note--markdown organizes the raw material into readable sections. It does not
group events into themes or diagnose blockers β that is the model's work, and it
lives in the MCP client's prompt or in the Claude Code skill.
Anonymised output from a real Monday run β note that Friday and Saturday each get their own section, and that a merge request GitLab has not evaluated is not called ready:
The last section is the point of the tool. Every other standup tool can tell you that pipeline is red; this one opens the failed job's log and shows you the 404 β and a 404 rather than a 403 usually means the token's scope is wrong, not that the package is missing.
pipelineMissing. Check
state is read from check-runs only.job: "unknown" with a diagnosis unavailable: β¦ error line. The merge
request is blocked either way; only the explanation is missing. Server
errors are retried twice first, and a rejected token still fails the run.0.2.0 changes the JSON output, the library API, and the MCP options. If you
pipe standup fetch into anything, or import the package, read
CHANGELOG.md before upgrading. The short version:
previous and previousEvents are replaced by previousDays[], one entry
per active day, so a weekend no longer swallows Friday. jq .previous now
returns null with no error.MergeRequest, Review and Blocker carry a required provider field, and
Provider.getReviews takes an Identity rather than a numeric id.CollectOptions.provider is now a provider name; inject a
Provider instance through providerImpl.Claude Code plugin users should run /plugin marketplace update standup-mr β
the standup skill changed along with the report shape.
Factual signals from GitHub, npm, and our automated checks β not a rating.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/standup-mr)<a href="https://allmcps.com/mcp/standup-mr"><img src="https://allmcps.com/api/badge/standup-mr?style=directory" alt="Standup Mr on AllMCPs" /></a>