-
Notifications
You must be signed in to change notification settings - Fork 20
docs: sync MCP server docs to plane-mcp-server v0.3.0 #313
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
📐 Maintainability & Code Quality | 🟠 Major | ⚡ Quick win
🧩 Analysis chain
🏁 Script executed:
Repository: makeplane/developer-docs
Length of output: 162
🏁 Script executed:
Repository: makeplane/developer-docs
Length of output: 50382
🌐 Web query:
Plane Helm chart plane-mcp-server extraEnv environment variables chart templates💡 Result:
As of August 2026, there is no official, published Helm chart specifically for the plane-mcp-server [1]. While there have been community discussions and pull requests aimed at creating one, the primary documentation for the Plane MCP server focuses on direct configuration via environment variables (such as PLANE_API_KEY, PLANE_WORKSPACE_SLUG, and PLANE_BASE_URL) rather than Helm deployment [2][3][4]. For the main Plane platform Helm charts (plane-ce and plane-enterprise), the platform does provide a mechanism for injecting additional environment variables globally across its workloads using an
extraEnvparameter [5]. If you are working with the main Plane Helm charts, you can define custom environment variables in yourvalues.yamlfile using the following structure [5]: extraEnv: - name: CUSTOM_VAR_NAME value: "your-value" - name: ANOTHER_VAR value: "another-value" ThisextraEnvsetting applies the defined environment variables to all workloads (web, api, worker, etc.) within the deployment [5]. Important Considerations: 1. Plane MCP Server Deprecation: Note that the Node.js-based plane-mcp-server is deprecated [2][6][7]. The current recommendation is to use the Python-based implementation, which is typically configured as an MCP server for your AI client (e.g., in your Claude or other MCP-compatible editor configuration file) rather than as a standalone Kubernetes service [2][3]. 2. Helm Chart Availability: Because the dedicated plane-mcp-server Helm chart is not officially published, if you require a containerized deployment of the MCP server, you would currently need to create your own Kubernetes deployment manifests or custom Helm chart using the official Plane MCP container image [1]. 3. OAuth Configuration: There have been reports that specific configurations for MCP server OAuth integration are currently missing from the standard Community Edition Helm charts, which may complicate direct integration in some self-hosted environments [8].Citations:
services.pi.enableandplane_oauthconfigurations in Community Edition helm chart plane#9431🏁 Script executed:
Repository: makeplane/developer-docs
Length of output: 549
🏁 Script executed:
Repository: makeplane/developer-docs
Length of output: 732
🏁 Script executed:
Repository: makeplane/developer-docs
Length of output: 849
Remove or correct the Helm deployment section.
https://helm.plane.sopublishes onlyplane-ceandplane-enterprise. It has noplane-mcp-serverchart, so the documentedhelm installcommand cannot work. Publish the MCP chart, or document the supported Kubernetes deployment method and its actual environment-variable configuration. Do not documentextraEnvunless the chart templates support it.🤖 Prompt for AI Agents
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The chart does exist —
plane-mcp-server(v1.3.0) in Plane's commercial Helm repository — but it isn't published tohelm.plane.so, so this section (which predates this PR) currently points at the wrong repo. Flagging to the team to either publish the chart tohelm.plane.soor point this section at the commercial repository; the environment-variable wording here does not claimextraEnvsupport.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@vihar, thanks for the clarification.The
extraEnvconcern does not apply. The current wording only states that unsupported Helm values must be set on the deployment.The finding remains valid for the repository URL. The documented
helm repo add plane https://helm.plane.socommand cannot installplane-mcp-serveruntil the chart is published there. The section should either use the commercial Helm repository or wait for publication tohelm.plane.so.🐇🔎
✏️ Learnings added
You are interacting with an AI system.