devflow-mcp
Enables browsing pull requests, retrieving full PR details including diff and per-file patches, checking CI/action status, and posting reviews (approve, request changes, comment) or plain comments on GitHub repositories.
Allows fetching individual issues by key, searching issues using JQL, creating new issues, transitioning issue status, and adding comments to issues in Jira.
Enables posting messages to Slack channels, useful for notifying teams about PR reviews or other workflow events.
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., "@devflow-mcpreview PR #3 and sync Jira ticket"
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.
devflow-mcp
An MCP server for automating developer workflows across GitHub, Jira, and Slack — built for PR/code review automation (inspect PRs, check CI status, post reviews, sync the linked ticket, notify the team).
Local stdio server: runs on your machine, launched by your MCP client. Not distributed — built for personal/team use.
Tools
Tool | Service | Type | Description |
| GitHub | read | List open PRs for a repo |
| GitHub | read | Full PR detail: description, diff stats, per-file patches |
| GitHub | read | CI/Actions check-run status for a PR's latest commit |
| GitHub | write | Approve / request changes / comment on a PR |
| GitHub | write | Add a plain timeline comment to a PR |
| Jira | read | Fetch one issue by key |
| Jira | read | Search issues via JQL |
| Jira | write | Create a new issue in a project |
| Jira | write | Transition an issue to a new status |
| Jira | write | Add a comment to an issue |
| Slack | write | Post a message to a channel |
Related MCP server: Cursor Auto-Review MCP Server
Automated workflow: PR review
The individual tools above chain into a full PR review workflow — inspect the PR and its CI checks, decide a verdict, post the review, sync the linked Jira ticket, and notify Slack. It's available two ways, at two different layers:
MCP prompt (
pr_review) — defined insrc/prompts.ts, part of the MCP protocol itself. It's user-triggered: surfaced as a slash command / menu item by any MCP host that supports prompts (e.g./mcp__devflow-mcp__pr_reviewin Claude Code). Works in any MCP client this server connects to, not just Claude Code.Claude Code skill (
pr-review) —.claude/skills/pr-review/SKILL.md, checked into this repo. It's matched automatically from natural language ("review PR #3 and update Jira") without needing the exact slash command name. Claude Code only.
Both drive the same underlying tools and follow the same 5 steps; the skill is just a Claude-Code-native shortcut for triggering the same workflow implicitly.
Setup
npm install
npm run buildCopy .env.example to .env and fill in credentials, or set these env vars directly in your MCP client config:
GITHUB_TOKEN— fine-grained personal access token (Settings → Developer settings → Fine-grained personal access tokens), scoped to only the repo(s) this server touches, with permissions: Pull requests (Read and write), Checks (Read-only). Avoid classicrepo-scope tokens — they grant full access to every private repo you can see and don't force an expiration.JIRA_BASE_URL— e.g.https://your-domain.atlassian.netJIRA_EMAIL— the account email tied to the API tokenJIRA_API_TOKEN— id.atlassian.com → Security → API tokensSLACK_BOT_TOKEN— api.slack.com/apps → your app → OAuth & Permissions → Bot User OAuth Token (needs thechat:writescope; addchat:write.publictoo if it should post to public channels it hasn't been invited to)
A tool only fails at call time if its required env vars are missing — you don't need all three services configured to use the others.
Connect to Claude Code
claude mcp add devflow-mcp \
--env GITHUB_TOKEN=ghp_xxx \
--env JIRA_BASE_URL=https://your-domain.atlassian.net \
--env JIRA_EMAIL=you@example.com \
--env JIRA_API_TOKEN=xxx \
--env SLACK_BOT_TOKEN=xoxb-xxx \
-- node /home/channen2/mcp-server/devflow-mcp/dist/server.jsConnect to Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"devflow-mcp": {
"command": "node",
"args": ["/home/channen2/mcp-server/devflow-mcp/dist/server.js"],
"env": {
"GITHUB_TOKEN": "ghp_xxx",
"JIRA_BASE_URL": "https://your-domain.atlassian.net",
"JIRA_EMAIL": "you@example.com",
"JIRA_API_TOKEN": "xxx",
"SLACK_BOT_TOKEN": "xoxb-xxx"
}
}
}
}Develop
npm run dev # run directly with tsx, no build step
npm run inspector # open MCP Inspector against the dev serverCapabilities UI
A minimal static dashboard listing every tool, prompt, and skill this server exposes — introspected live from the server (not hand-maintained) plus .claude/skills/*/SKILL.md.
npm run ui # builds ui/catalog.json, then serves ui/ at http://localhost:4173Run npm run ui:build alone to just regenerate ui/catalog.json (e.g. after adding a tool).
Next steps
GitLab wasn't wired up in v1 — same shape (
src/<service>.ts+ tools insrc/tools.ts) if you need it later.Distributing beyond your own machine: this stdio server expects Node + env vars on the user's machine. If you ever need to hand this to teammates without a Node setup, repackage it as an MCPB bundle (bundles the Node runtime, installs with a double-click) — ask to use the
build-mcpbskill when you're ready.Wider/public distribution: if this ever needs to serve multiple users without local installs, move to a remote HTTP deployment (e.g. Cloudflare Workers) — ask to use the
build-mcp-serverskill again for that path.
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.
Latest Blog Posts
- 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/channen2/dev-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server