Phabricator MCP Server

  • Developer Tools
  • Version Control
Python
-
security - not tested
F
license - not found
-
quality - not tested

A Model Context Protocol (MCP) server implementation for interacting with Phabricator API. This server allows LLMs to interact with Phabricator through a standardized interface.

  1. Tools
  2. Prompts
  3. Resources
  4. Server Configuration
  5. README.md

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

Tools

Functions exposed to the LLM to take actions

NameDescription

No tools

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
PHABRICATOR_TOKENYesYour actual Phabricator API token
README.md

Phabricator MCP Server

A Model Context Protocol (MCP) server implementation for interacting with Phabricator API. This server allows LLMs to interact with Phabricator through a standardized interface.

Overview

This project provides an MCP server that exposes Phabricator functionality through:

  • Task management (viewing, creating, updating tasks)
  • Project information
  • User details

Getting Started

Prerequisites

  • Python 3.8+
  • Phabricator API token (from your Phabricator instance)
  • Access to a Phabricator instance

Installation

  1. Clone this repository:
git clone https://github.com/baba786/phabricator-mcp-server.git cd phabricator-mcp-server
  1. Create and activate a virtual environment:
python -m venv venv source venv/bin/activate # On Unix/MacOS # or .\venv\Scripts\activate # On Windows
  1. Install dependencies:
pip install -r requirements.txt
  1. Set up your environment:
# Copy the example env file cp .env.example .env # Edit .env and add your Phabricator token # Replace 'your-token-here' with your actual Phabricator API token echo "PHABRICATOR_TOKEN=your-token-here" > .env
  1. Run the server:
cd src python server.py

Usage

Currently supported commands:

  • get-task: Retrieve details of a specific Phabricator task

Example usage through the client:

from src.mcp_minimal_client import Client client = Client() response = client.get_task(task_id="123") # Replace with actual task ID print(response)

Development Status

šŸš§ This project is currently under development. Stay tuned for updates!

GitHub Badge

Glama performs regular codebase and documentation scans to:

  • Confirm that the MCP server is working as expected.
  • Confirm that there are no obvious security issues with dependencies of the server.
  • Extract server characteristics such as tools, resources, prompts, and required parameters.

Our directory badge helps users to quickly asses that the MCP server is safe, server capabilities, and instructions for installing the server.

Copy the following code to your README.md file:

Alternative MCP servers

  • -
    security
    -
    license
    -
    quality
    Tools for executing JQL queries. Tools for creating, editing, and deleting Jira tickets. Tools for listing Jira projects and statuses
    • Apple
  • -
    security
    A
    license
    -
    quality
    MCP Server for the Notion API, enabling Claude to interact with Notion workspaces.
    MIT
  • -
    security
    A
    license
    -
    quality
    A simple Model Context Protocol (MCP) server that integrates with Notion's API to manage my personal todo list through Claude.
    MIT
  • A
    security
    A
    license
    A
    quality
    MCP Server for the GitLab API, enabling project management, file operations, and more.
    MIT