amaiko-ai/plane-mcp-server
If you are the rightful owner of plane-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to dayong@mcphub.com.
The Plane Intake MCP Server is designed to manage the intake queue for Plane, a triage workflow tool, and is compatible with both self-hosted and cloud instances of Plane.
Plane Intake MCP Server
MCP server for managing Plane intake queue (triage workflow). Works with any Plane instance - self-hosted or cloud.
Features
Intake Management (Core)
- List intake items with optional status filtering and summary stats
- Accept intake items and convert to regular issues with labels
- Decline/reject intake items to keep your queue clean
- Mark items as duplicates to reduce noise
Context Discovery
- List projects to find project IDs and identifiers
- Get issues by readable ID (e.g., FIRST-123) for quick access
- List project issues to find duplicates and understand context
- List labels to find IDs for categorizing accepted items
- List states to understand project workflow
- Get workspace members for assigning issues
Collaboration
- Add comments to document triage decisions and notes
- Get issue comments to review discussion history
Installation
Homebrew (Recommended for macOS/Linux)
brew install https://raw.githubusercontent.com/amaiko-ai/plane-mcp-server/main/Formula/plane-mcp-server.rb
Then configure Claude Desktop:
{
"mcpServers": {
"plane-intake": {
"command": "plane-mcp-server",
"args": [],
"env": {
"PLANE_API_KEY": "your-api-key-here",
"PLANE_WORKSPACE_SLUG": "your-workspace-slug",
"PLANE_API_HOST_URL": "https://app.plane.so"
}
}
}
}
Config location: ~/Library/Application Support/Claude/claude_desktop_config.json (macOS)
Updates: brew upgrade plane-mcp-server
Windows
Download and extract the Windows binary from releases:
plane-mcp-server-windows-x64.exe.zip(extract to get.exe)
Then configure Claude Desktop at %APPDATA%\Claude\claude_desktop_config.json:
{
"mcpServers": {
"plane-intake": {
"command": "C:\\path\\to\\plane-mcp-server-windows-x64.exe",
"args": [],
"env": {
"PLANE_API_KEY": "your-api-key-here",
"PLANE_WORKSPACE_SLUG": "your-workspace-slug",
"PLANE_API_HOST_URL": "https://app.plane.so"
}
}
}
}
Quick Install Script (Alternative - macOS/Linux)
macOS and Linux:
curl -fsSL https://raw.githubusercontent.com/amaiko-ai/plane-mcp-server/main/install.sh | bash
This will download, install, and configure everything automatically.
Manual Installation
Option 1: Standalone Binary
Download the pre-built binary for your platform from the latest release:
- macOS ARM64 (Apple Silicon):
plane-mcp-server-macos-arm64.xz - macOS x64 (Intel):
plane-mcp-server-macos-x64.xz - Linux x64:
plane-mcp-server-linux-x64.xz - Linux ARM64:
plane-mcp-server-linux-arm64.xz - Windows x64:
plane-mcp-server-windows-x64.exe.zip
After downloading:
macOS/Linux:
# Decompress the binary
xz -d plane-mcp-server-macos-arm64.xz
# Make it executable
chmod +x plane-mcp-server-macos-arm64
# macOS only: Remove quarantine attribute to allow execution
xattr -d com.apple.quarantine plane-mcp-server-macos-arm64
Windows:
# Extract the zip file (right-click → Extract All)
# Or via PowerShell:
Expand-Archive plane-mcp-server-windows-x64.exe.zip
Then configure Claude Desktop manually:
{
"mcpServers": {
"plane-intake": {
"command": "/path/to/plane-mcp-server-macos-arm64",
"args": [],
"env": {
"PLANE_API_KEY": "your-api-key-here",
"PLANE_API_HOST_URL": "https://app.plane.so",
"PLANE_WORKSPACE_SLUG": "your-workspace"
}
}
}
}
Config location: ~/Library/Application Support/Claude/claude_desktop_config.json (macOS)
Option 2: Via npm (Requires Node.js)
Click to expand npm installation instructions
Add to your claude_desktop_config.json:
{
"mcpServers": {
"plane-intake": {
"command": "npx",
"args": ["-y", "@amaiko-ai/plane-mcp-server"],
"env": {
"PLANE_API_KEY": "your-api-key-here",
"PLANE_API_HOST_URL": "https://app.plane.so",
"PLANE_WORKSPACE_SLUG": "your-workspace"
}
}
}
}
⚠️ macOS PATH Issue:
On macOS, Claude Desktop (GUI app) may not find npx in your PATH. If you see errors like spawn npx ENOENT, use the absolute path to npx:
# Find your npx location
which npx
# Example output: /usr/local/bin/npx or /Users/you/.nvm/versions/node/v20.0.0/bin/npx
Then update your config with the absolute path:
{
"mcpServers": {
"plane-intake": {
"command": "/usr/local/bin/npx",
"args": ["-y", "@amaiko-ai/plane-mcp-server"],
"env": {
"PLANE_API_KEY": "your-api-key-here",
"PLANE_API_HOST_URL": "https://app.plane.so",
"PLANE_WORKSPACE_SLUG": "your-workspace"
}
}
}
}
Configuration file locations:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json - Linux:
~/.config/Claude/claude_desktop_config.json
Claude Code Plugin
If you're using the Amaiko Plane plugin for Claude Code, this server is automatically configured. See the plane plugin for details.
Configuration
The server requires these environment variables:
| Variable | Required | Default | Description |
|---|---|---|---|
PLANE_API_KEY | ✅ Yes | - | Your Plane API key |
PLANE_WORKSPACE_SLUG | ✅ Yes | - | Your workspace identifier |
PLANE_API_HOST_URL | ❌ No | https://app.plane.so | Plane instance URL |
Getting Your API Key
- Go to your Plane instance
- Navigate to Settings → API Tokens
- Create a new token
- Copy and use it as
PLANE_API_KEY
Finding Your Workspace Slug
Your workspace slug is in the URL: https://app.plane.so/{workspace-slug}/...
Available Tools
Context Discovery
list_projects
List all projects in the workspace to find project IDs and identifiers.
Parameters: None
Example:
// No parameters needed
Response:
{
"total": 5,
"projects": [
{
"id": "abc-123",
"name": "Product Development",
"identifier": "PROD",
"description": "Main product features"
}
]
}
get_issue
Get issue details using readable identifier (e.g., FIRST-123). Much easier than using UUIDs!
Parameters:
project_identifier(string, required): Project identifier (e.g., "FIRST")issue_number(string, required): Issue number (e.g., "123")
Example:
{
"project_identifier": "FIRST",
"issue_number": "123"
}
list_project_issues
List issues in a project. Useful for finding duplicates and understanding context. Returns up to 20 issues by default.
Parameters:
project_id(string, required): UUID of the projectlimit(number, optional): Max issues to return (default: 20, max: 100)
Example:
{
"project_id": "abc-123",
"limit": 50
}
list_labels
List all labels in a project. Essential for categorizing accepted intake items.
Parameters:
project_id(string, required): UUID of the project
Example:
{
"project_id": "abc-123"
}
Response:
{
"total": 10,
"labels": [
{
"id": "label-uuid",
"name": "bug",
"color": "#FF0000",
"description": "Bug reports"
}
]
}
list_states
List all workflow states in a project.
Parameters:
project_id(string, required): UUID of the project
Example:
{
"project_id": "abc-123"
}
get_workspace_members
Get all members in the workspace for assigning issues.
Parameters: None
Example:
// No parameters needed
Response:
{
"total": 15,
"members": [
{
"id": "user-uuid",
"name": "John Doe",
"email": "john@example.com",
"role": 20
}
]
}
Comments
add_issue_comment
Add a comment to an issue or intake item. Perfect for documenting triage decisions.
Parameters:
project_id(string, required): UUID of the projectissue_id(string, required): UUID of the issuecomment(string, required): Comment text (plain text, automatically converted to HTML)
Example:
{
"project_id": "abc-123",
"issue_id": "issue-789",
"comment": "Accepted as feature request. Assigning to sprint 24."
}
get_issue_comments
Get all comments for an issue or intake item.
Parameters:
project_id(string, required): UUID of the projectissue_id(string, required): UUID of the issue
Example:
{
"project_id": "abc-123",
"issue_id": "issue-789"
}
Intake Management
list_intake_items
List all intake items for a project with optimized response format including summary statistics.
Parameters:
project_id(string, required): UUID of the projectstatus(string, optional): Filter by status-2: Pending-1: Declined1: Accepted2: Duplicate
Example:
{
"project_id": "abc-123-def-456",
"status": "-2" // Only pending items
}
Response:
{
"summary": {
"total": 47,
"pending": 35,
"accepted": 8,
"declined": 3,
"duplicate": 1
},
"items": [
{
"id": "uuid",
"sequence_id": 123,
"name": "Bug in login",
"status": "pending",
"priority": "high",
"created_at": "2025-01-11T10:00:00Z"
}
],
"note": "Showing 50 of 47 items"
}
accept_intake_item
Accept an intake item and convert it to a regular issue.
Parameters:
project_id(string, required): UUID of the projectissue_id(string, required): UUID of the intake issuelabel_ids(array, optional): Label UUIDs to add after accepting
Example:
{
"project_id": "abc-123-def-456",
"issue_id": "issue-789",
"label_ids": ["label-1", "label-2"]
}
decline_intake_item
Decline/reject an intake item.
Parameters:
project_id(string, required): UUID of the projectissue_id(string, required): UUID of the intake issue
Example:
{
"project_id": "abc-123-def-456",
"issue_id": "issue-789"
}
mark_intake_duplicate
Mark an intake item as duplicate of another issue.
Parameters:
project_id(string, required): UUID of the projectduplicate_issue_id(string, required): UUID of the duplicate intake issueprimary_issue_id(string, required): UUID of the primary issue
Example:
{
"project_id": "abc-123-def-456",
"duplicate_issue_id": "issue-789",
"primary_issue_id": "issue-123"
}
Usage Examples
With Claude Desktop
Once configured, you can ask Claude:
Basic Intake Management:
"Show me all pending intake items for project PROD"
"Accept PROD-123 and label it as a bug"
"Decline PROD-124 with a comment explaining why"
"Mark PROD-125 as duplicate of PROD-100"
Context Discovery:
"List all my projects"
"Show me details for issue FIRST-123"
"Find recent issues in project ABC that might be related to 'authentication'"
"What labels are available in the Product project?"
"Who are the members in this workspace?"
Smart Workflows:
"Check PROD-123, find if there are duplicates, and if not, accept it with 'feature' label"
"Review all pending intake items, add comments to each explaining the triage decision"
"List all high-priority bugs in FIRST project to help me triage new intake items"
With MCP Inspector
For testing and debugging:
npx @modelcontextprotocol/inspector npx @amaiko-ai/plane-mcp-server
Development
Setup
git clone https://github.com/amaiko-ai/plane-mcp-server.git
cd plane-mcp-server
pnpm install
Build
# Build TypeScript
pnpm build
# Build standalone executables (requires Bun)
./scripts/build-executables.sh
Test Locally
# Set environment variables
export PLANE_API_KEY=your-key
export PLANE_WORKSPACE_SLUG=your-workspace
export PLANE_API_HOST_URL=https://app.plane.so
# Run in development mode
pnpm dev
Testing with MCP Inspector
export PLANE_API_KEY=your-key
export PLANE_WORKSPACE_SLUG=your-workspace
npx @modelcontextprotocol/inspector pnpm dev
Troubleshooting
Server won't start
Check environment variables:
echo $PLANE_API_KEY
echo $PLANE_WORKSPACE_SLUG
Verify API key works:
curl -H "X-API-Key: $PLANE_API_KEY" \
"https://app.plane.so/api/v1/workspaces/$PLANE_WORKSPACE_SLUG/projects/"
Tools not appearing in Claude
- Restart Claude Desktop completely (quit and reopen)
- Check the MCP logs:
- macOS:
~/Library/Logs/Claude/mcp.log - Windows:
%APPDATA%\Claude\Logs\mcp.log
- macOS:
- Verify your
claude_desktop_config.jsonsyntax is valid
API errors
401 Unauthorized:
- Verify your API key is correct
- Check key hasn't expired in Plane settings
404 Not Found:
- Verify workspace slug is correct
- Ensure project IDs are valid UUIDs
Roadmap
- Support for creating intake items
- Bulk operations (accept/decline multiple)
- Filtering by priority, labels, assignee
- Integration with Plane webhooks
- Support for custom intake workflows
Contributing
Contributions are welcome! Please:
- Fork the repository
- Create a feature branch
- Make your changes
- Add tests if applicable
- Submit a pull request
License
MIT © Amaiko