@@ -5,46 +5,45 @@ description: Use the Plane MCP server to integrate with Plane
5
5
sidebar_position : 1
6
6
---
7
7
8
- { frontMatter .description && <h3 className = " description" >{ frontMatter .description } </h3 >}
8
+ { frontMatter .description && (
9
+ <h3 className = " description" >{ frontMatter .description } </h3 >
10
+ )}
9
11
10
12
## Introduction
11
13
12
- The [ Model Context Protocol] ( https://modelcontextprotocol.io/overview ) (MCP) is
13
- a standardized interface that enables AI models to communicate with external
14
- tools and services. When combined with Server-Sent Events (SSE), it provides a
15
- powerful mechanism for real-time data transfer between AI models and external
16
- systems.
14
+ The [ Model Context Protocol] ( https://modelcontextprotocol.io/overview ) (MCP) is a
15
+ standardized interface that enables AI models to communicate with external tools and
16
+ services. When combined with Server-Sent Events (SSE), it provides a powerful
17
+ mechanism for real-time data transfer between AI models and external systems.
17
18
18
19
:::tip Alpha
19
20
The Plane MCP Server is currently in ** Alpha** . Some aspects of the API may change.
20
- While MCP is standardized, it is also rapidly evolving. The Plane MCP Server
21
- aims to provide a stable implementation that can be used by developers to build
22
- robust applications that leverage the power of AI.
23
- Please send feedback to
[email protected] .
21
+ While MCP is standardized, it is also rapidly evolving. The Plane MCP Server aims to
22
+ provide a stable implementation for developers to build robust AI-powered
23
+ applications. Please send feedback to
[email protected] .
24
24
:::
25
25
26
26
## Using the Plane MCP Server
27
27
28
- Follow the steps below to integrate with the Plane MCP Server.
28
+ Follow these steps to integrate with the Plane MCP Server.
29
29
30
30
### Claude.ai
31
31
32
32
- Open ** Settings** from the sidebar on the web or desktop app.
33
- - Scroll down to the ** Integrations** section and click ** Add more** .
34
- - Enter the following Integration URL: ` https://mcp.plane.so/sse `
33
+ - Scroll to the ** Integrations** section and click ** Add more** .
34
+ - Enter the Integration URL: ` https://mcp.plane.so/sse `
35
35
- Click ** Connect** to link your Plane workspace.
36
36
37
37
### Claude Desktop
38
38
39
- You can add Plane to [ Claude
40
- Desktop] ( https://modelcontextprotocol.io/quickstart/user ) by updating your
41
- ` claude_desktop_config.json ` :
39
+ Add Plane to [ Claude Desktop] ( https://modelcontextprotocol.io/quickstart/user ) by
40
+ updating your ` claude_desktop_config.json ` :
42
41
43
42
``` json
44
43
{
45
44
"mcpServers" : {
46
45
"plane" : {
47
- "command" : " npx" ,
46
+ "command" : " npx" ,
48
47
"args" : [" mcp-remote" , " https://mcp.plane.so/sse" ]
49
48
}
50
49
}
@@ -53,48 +52,37 @@ Desktop](https://modelcontextprotocol.io/quickstart/user) by updating your
53
52
54
53
### VSCode
55
54
56
- You can also connect Plane to
57
- [ VSCode] ( https://code.visualstudio.com/docs/copilot/chat/mcp-servers#_add-an-mcp-server )
55
+ Connect Plane to [ VSCode] ( https://code.visualstudio.com/docs/copilot/chat/mcp-servers#_add-an-mcp-server )
58
56
by editing your ` .vscode.json ` or ` mcp.json ` file:
59
57
60
58
``` json
61
59
{
62
60
"servers" : {
63
61
"plane" : {
64
- "command" : " npx" ,
62
+ "command" : " npx" ,
65
63
"args" : [" mcp-remote" , " https://mcp.plane.so/sse" ]
66
64
}
67
65
}
68
66
}
69
67
```
70
68
71
- If you face any issues with Plane Auth, please run the command below in the
72
- terminal to remove stale auth tokens. Then, restart the server. MCP Remote
73
- servers are still experimental.
69
+ If you encounter issues with Plane Auth, run the following command in your terminal to
70
+ remove stale auth tokens, then restart the server. MCP Remote servers are still
71
+ experimental.
74
72
75
73
``` bash
76
74
rm -rf ~ /.mcp-auth/mcp-remote-*
77
75
```
78
76
79
77
## Activating the Plane MCP Server
80
78
81
- After following the above steps , when activating the server, you will be
82
- prompted via your browser to connect your Plane workspace to the MCP server.
79
+ After setup , when activating the server, you will be prompted in your browser to
80
+ connect your Plane workspace to the MCP server.
83
81
84
- When prompted to authorize, click " ** Approve** " .
82
+ When prompted to authorize, click ** Approve** .
85
83
86
- import Approve from ' @site/static/images/mcp/approve.png' ;
87
-
88
- <img style = { {width: ' 600px' }} className = " center" src = { Approve } alt = " authorization" />
89
-
90
- <br />
91
- <br />
92
- Next, choose the workspace to which you want to connect, review the permissions
93
- and click "** Accept** ".
94
-
95
- import Accept from ' @site/static/images/mcp/accept.png' ;
96
-
97
- <img style = { {width: ' 600px' }} className = " center" src = { Accept } alt = " accept" />
84
+ Next, choose the workspace you want to connect, review the permissions, and click
85
+ ** Accept** .
98
86
99
87
## Congrats!
100
88
0 commit comments