|
| 1 | +--- |
| 2 | +title: MCP server |
| 3 | +description: Use the Plane MCP server to integrate with Plane |
| 4 | +--- |
| 5 | + |
| 6 | +The [Model Context Protocol](https://modelcontextprotocol.io/overview) (MCP) is a |
| 7 | +standardized interface that enables AI models to communicate with external tools and |
| 8 | +services. When combined with Server-Sent Events (SSE), it provides a powerful |
| 9 | +mechanism for real-time data transfer between AI models and external systems. |
| 10 | + |
| 11 | +<Note> |
| 12 | +Beta |
| 13 | +The Plane MCP Server is currently in **Beta**. Some aspects of the API may change. |
| 14 | +While MCP is standardized, it is also rapidly evolving. The Plane MCP Server aims to |
| 15 | +provide a stable implementation for developers to build robust AI-powered |
| 16 | +applications. Please send any issues to [email protected]. |
| 17 | +</Note> |
| 18 | + |
| 19 | +## Prerequisites |
| 20 | + |
| 21 | +Before setting up the Plane MCP Server, ensure you have the following installed: |
| 22 | + |
| 23 | +### Node.js and npm |
| 24 | +- **Node.js**: Version 20 or later (LTS recommended) |
| 25 | +- **npm**: Comes bundled with Node.js |
| 26 | +- **npx**: Comes bundled with npm |
| 27 | + |
| 28 | +You can verify your installation by running: |
| 29 | +```bash |
| 30 | +node --version |
| 31 | +npm --version |
| 32 | +npx --version |
| 33 | +``` |
| 34 | + |
| 35 | +If you don't have Node.js installed, download it from [nodejs.org](https://nodejs.org/). |
| 36 | + |
| 37 | +<Note> |
| 38 | +The MCP server uses `npx` to run the `mcp-remote` package, which handles the connection to Plane's MCP server. This is why Node.js and npx are required. |
| 39 | +</Note> |
| 40 | + |
| 41 | +## Using the Plane MCP Server |
| 42 | + |
| 43 | +Follow these steps to integrate with the Plane MCP Server. |
| 44 | + |
| 45 | +### Claude.ai |
| 46 | + |
| 47 | +- Open **Settings** from the sidebar on the web or desktop app. |
| 48 | +- Scroll to the **Integrations** section and click **Add more**. |
| 49 | +- Enter the Integration URL: `https://mcp.plane.so/sse` |
| 50 | +- Click **Connect** to link your Plane workspace. |
| 51 | + |
| 52 | +### Claude Desktop |
| 53 | + |
| 54 | +Add Plane to [Claude Desktop](https://modelcontextprotocol.io/quickstart/user) by |
| 55 | +updating your `claude_desktop_config.json`: |
| 56 | + |
| 57 | +```json |
| 58 | +{ |
| 59 | + "mcpServers": { |
| 60 | + "plane": { |
| 61 | + "command": "npx", |
| 62 | + "args": ["mcp-remote", "https://mcp.plane.so/sse"] |
| 63 | + } |
| 64 | + } |
| 65 | +} |
| 66 | +``` |
| 67 | + |
| 68 | +### VSCode |
| 69 | + |
| 70 | +Connect Plane to [VSCode](https://code.visualstudio.com/docs/copilot/chat/mcp-servers#_add-an-mcp-server) |
| 71 | +by editing your `.vscode.json` or `mcp.json` file: |
| 72 | + |
| 73 | +```json |
| 74 | +{ |
| 75 | + "servers": { |
| 76 | + "plane": { |
| 77 | + "command": "npx", |
| 78 | + "args": ["mcp-remote", "https://mcp.plane.so/sse"] |
| 79 | + } |
| 80 | + } |
| 81 | +} |
| 82 | +``` |
| 83 | + |
| 84 | +### Windsurf |
| 85 | + |
| 86 | +1. Press `Ctrl/Cmd + ,` to open Windsurf settings |
| 87 | +2. Navigate to **Cascade** > **MCP servers** |
| 88 | +3. Select **Add Server** > **Add custom server** |
| 89 | +4. Add the following configuration: |
| 90 | + |
| 91 | +```json |
| 92 | +{ |
| 93 | + "mcpServers": { |
| 94 | + "plane": { |
| 95 | + "command": "npx", |
| 96 | + "args": ["-y", "mcp-remote", "https://mcp.plane.so/sse"] |
| 97 | + } |
| 98 | + } |
| 99 | +} |
| 100 | +``` |
| 101 | + |
| 102 | +### Zed |
| 103 | + |
| 104 | +1. Press `Cmd + ,` to open Zed settings |
| 105 | +2. Add the following configuration: |
| 106 | + |
| 107 | +```json |
| 108 | +{ |
| 109 | + "context_servers": { |
| 110 | + "plane": { |
| 111 | + "source": "custom", |
| 112 | + "command": "npx", |
| 113 | + "args": ["-y", "mcp-remote", "https://mcp.plane.so/sse"], |
| 114 | + "env": {} |
| 115 | + } |
| 116 | + } |
| 117 | +} |
| 118 | +``` |
| 119 | + |
| 120 | +## Activating the Plane MCP Server |
| 121 | + |
| 122 | +After setup, when activating the server, you will be prompted in your browser to |
| 123 | +connect your Plane workspace to the MCP server. |
| 124 | + |
| 125 | +When prompted to authorize, click **Approve**. |
| 126 | + |
| 127 | +Next, choose the workspace you want to connect, review the permissions, and click |
| 128 | +**Accept**. |
| 129 | + |
| 130 | +## Troubleshooting |
| 131 | + |
| 132 | +### Common Issues |
| 133 | + |
| 134 | +**Authentication Errors** |
| 135 | + |
| 136 | +If you encounter authentication issues, clear saved auth tokens: |
| 137 | + |
| 138 | +```bash |
| 139 | +rm -rf ~/.mcp-auth |
| 140 | +``` |
| 141 | + |
| 142 | +**Connection Timeouts** |
| 143 | + |
| 144 | +- Ensure you have a stable internet connection |
| 145 | +- Check if your firewall or proxy is blocking MCP connections |
| 146 | +- Try using the HTTP endpoint instead of SSE if available |
| 147 | + |
| 148 | +**WSL on Windows** |
| 149 | + |
| 150 | +If you're using WSL on Windows and encountering errors, use this configuration: |
| 151 | + |
| 152 | +```json |
| 153 | +{ |
| 154 | + "mcpServers": { |
| 155 | + "plane": { |
| 156 | + "command": "wsl", |
| 157 | + "args": ["npx", "-y", "mcp-remote", "https://mcp.plane.so/sse", "--transport sse-only"] |
| 158 | + } |
| 159 | + } |
| 160 | +} |
| 161 | +``` |
| 162 | + |
| 163 | +**Node.js Version** |
| 164 | + |
| 165 | +Ensure you have a recent version of Node.js installed. MCP servers require Node.js 18 or later. |
| 166 | + |
| 167 | +### Getting Help |
| 168 | + |
| 169 | +If you continue to experience issues: |
| 170 | + |
| 171 | +1. Verify your authentication credentials |
| 172 | +2. Contact support at [email protected] for Plane-specific issues |
| 173 | +3. Check the [MCP community forums](https://modelcontextprotocol.io) for general MCP issues |
| 174 | + |
| 175 | +## Congrats! |
| 176 | + |
| 177 | +You have successfully connected your Plane workspace to the MCP server! |
0 commit comments