phab-arc-mcp
Provides tools for reviewing Phabricator revisions and creating draft inline comments, with context from linked Maniphest tasks.
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., "@phab-arc-mcpReview revision D35297"
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.
phab-arc-mcp
phab-arc-mcp is a small MCP stdio server for reviewing Phabricator revisions.
What This Server Exposes
The public MCP surface is intentionally small:
review-phabinline-comments-phab
Related MCP server: mcp_review_code_tool
What review-phab Does
review-phab is the tool you call when you want an AI reviewer to review a Differential properly.
You give it a revision ID like D35297. It fetches the revision title, summary, changed files, raw diff, and the linked Maniphest task context, then packages all of that together with the review prompt the model should use.
From a user point of view, this means you do not have to manually open the revision, copy the diff, inspect related tasks, and explain the background before asking for a review. The tool gives the model the code changes and the surrounding context in one shot.
That makes reviews more useful because the model can judge the change against the actual task being solved, not just the raw code diff. It can use the overall repository context to reason about likely bugs, regressions, and edge cases, and it can also check whether the revision actually does what the linked task says it should do. In practice.
After that, inline-comments-phab can take the review findings and create draft inline comments directly on the Differential.
Important details:
comments are created as draft inlines, not published comments
Installation
Requirements
Node.js 18 or newer
npmaccess to a Phabricator instance with the Conduit API enabled
a Conduit API token for an account that can read the revisions and tasks you want to review
1. Clone the repository
git clone https://github.com/wxomi/node-chat.git
cd mcp-phab2. Install dependencies
npm install3. Build the server
npm run buildThis produces the MCP server entrypoint at dist/server.js.
4. Configure environment variables
Set these before starting the server or before wiring it into your MCP client:
PHAB_API_TOKENrequired
primary token variable used by the server
CONDUIT_TOKENoptional alias for
PHAB_API_TOKEN
PHAB_CONDUIT_TOKENoptional alias for
PHAB_API_TOKEN
PHAB_CONDUIT_URIoptional
default:
https://phab.instahyre.com/should point to the base URL of your Phabricator instance
PHAB_ARC_TIMEOUT_MSoptional
default:
30000request timeout in milliseconds
Example:
export PHAB_CONDUIT_URI="https://phabricator.example.com/"
export PHAB_API_TOKEN="api-xxxxxxxxxxxxxxxx"
export PHAB_ARC_TIMEOUT_MS="30000"If you do not set PHAB_CONDUIT_URI, the server will try https://phab.instahyre.com/.
5. Start the server manually (optional)
You usually do not need this step when using the server through an MCP client. In the normal setup, the MCP client launches the stdio server process for you using its mcpServers configuration.
Run the built server manually only if you want to verify that the binary starts correctly:
npm startFor local development without building on every change:
npm run devThe server uses stdio transport, so manual npm start is optional and is not a required installation step.
Setup In An MCP Client
Codex / MCP config using the built server
{
"mcpServers": {
"phab-arc-mcp": {
"command": "node",
"args": ["/absolute/path/to/phab-arc-mcp/dist/server.js"],
"env": {
"PHAB_CONDUIT_URI": "https://phab.instahyre.com/",
"PHAB_API_TOKEN": "api-xxxxxxxxxxxxxxxx"
}
}
}
}Setup Checklist
Use this to verify the installation quickly:
npm installcompletes successfullynpm run buildcreatesdist/server.jsyour MCP client is configured with
PHAB_API_TOKENPHAB_CONDUIT_URIpoints to the correct Phabricator base URLthe MCP client can see the
review-phabandinline-comments-phabtools
Example Usage
Step 1: get review context
Call review-phab with:
{
"revision_id": "D35297"
}Notes
This server talks to Phabricator over the Conduit HTTP API.
A valid API token is required for every tool call.
Comments created by
inline-comments-phabare draft inlines and are not published automatically.
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
- 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/wxomi/mcp-phab'
If you have feedback or need assistance with the MCP directory API, please join our Discord server