npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@amaiko-ai/plane-mcp-server

v1.3.1

Published

MCP server for managing Plane intake queue and issue workflows

Downloads

10

Readme

Plane Intake MCP Server

npm version License: MIT

MCP server for managing Plane intake queue (triage workflow). Works with any Plane instance - self-hosted or cloud.

Features

  • List intake items with optional status filtering
  • 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

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 the Windows binary from releases:

  • plane-mcp-server-windows-x64.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
  • macOS x64 (Intel): plane-mcp-server-macos-x64
  • Linux x64: plane-mcp-server-linux-x64
  • Linux ARM64: plane-mcp-server-linux-arm64
  • Windows x64: plane-mcp-server-windows-x64.exe

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)

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

  1. Go to your Plane instance
  2. Navigate to SettingsAPI Tokens
  3. Create a new token
  4. 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

list_intake_items

List all intake items for a project.

Parameters:

  • project_id (string, required): UUID of the project
  • status (string, optional): Filter by status
    • -2: Pending
    • -1: Declined
    • 1: Accepted
    • 2: Duplicate

Example:

{
  "project_id": "abc-123-def-456",
  "status": "-2"  // Only pending items
}

accept_intake_item

Accept an intake item and convert it to a regular issue.

Parameters:

  • project_id (string, required): UUID of the project
  • issue_id (string, required): UUID of the intake issue
  • label_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 project
  • issue_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 project
  • duplicate_issue_id (string, required): UUID of the duplicate intake issue
  • primary_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:

"Show me all pending intake items for project ABC"
"Accept intake item XYZ and add labels 'bug' and 'high-priority'"
"Decline intake item ABC"
"Mark intake item DEF as duplicate of issue GHI"

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

  1. Restart Claude Desktop completely (quit and reopen)
  2. Check the MCP logs:
    • macOS: ~/Library/Logs/Claude/mcp.log
    • Windows: %APPDATA%\Claude\Logs\mcp.log
  3. Verify your claude_desktop_config.json syntax 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:

  1. Fork the repository
  2. Create a feature branch
  3. Make your changes
  4. Add tests if applicable
  5. Submit a pull request

License

MIT © Amaiko

Links

Support