-
Notifications
You must be signed in to change notification settings - Fork 408
feat(plugins): add Vercel MCP plugin #1424
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
Open
bj456736
wants to merge
8
commits into
MoonshotAI:main
Choose a base branch
from
bj456736:feat/kimi-vercel-plugin
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
8d4dd8b
fix(todo-list): accept 'completed' status and normalize to 'done'
b3593a8
Merge remote-tracking branch 'upstream/main'
0644fc1
Merge remote-tracking branch 'upstream/main'
00c0caa
Merge remote-tracking branch 'upstream/main'
d83805b
Merge remote-tracking branch 'upstream/main'
5ff864b
Merge remote-tracking branch 'upstream/main'
3b57547
Merge remote-tracking branch 'upstream/main'
458d24d
feat(plugins): add Vercel MCP plugin
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,23 @@ | ||
| --- | ||
| 'kimi-code': minor | ||
| --- | ||
|
|
||
| feat(plugins): add Vercel MCP plugin | ||
|
|
||
| Introduces `kimi-vercel`, an official MCP plugin for managing Vercel projects and deployments. | ||
|
|
||
| **New plugin:** `plugins/official/kimi-vercel/` | ||
| - `bin/kimi-vercel.mjs` – MCP server (stdio transport) that talks to the Vercel REST API | ||
| - `kimi.plugin.json` – Plugin manifest | ||
| - `SKILL.md` – Plugin documentation | ||
|
|
||
| **Provided tools:** | ||
|
|
||
| | Tool | Description | | ||
| |---|---| | ||
| | `vercel_list_projects` | List all Vercel projects for the authenticated user | | ||
| | `vercel_get_project` | Get details of a specific project by name or ID | | ||
| | `vercel_list_deployments` | List deployments for a project | | ||
| | `vercel_get_deployment` | Get details of a deployment by ID or URL | | ||
|
|
||
| **Setup:** Set `VERCEL_TOKEN` environment variable with a Vercel personal access token. | ||
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,32 @@ | ||
| # Vercel for Kimi Code | ||
|
|
||
| An MCP plugin that lets Kimi Code interact with [Vercel](https://vercel.com) projects and deployments. | ||
|
|
||
| ## Setup | ||
|
|
||
| You need a Vercel personal access token. Get one from [Vercel Dashboard → Settings → Tokens](https://vercel.com/account/tokens), then set the environment variable: | ||
|
|
||
| ```bash | ||
| export VERCEL_TOKEN=<your-token> | ||
| ``` | ||
|
|
||
| ## Provided Tools | ||
|
|
||
| - `vercel_list_projects` – List all Vercel projects for the authenticated user. | ||
| - `vercel_get_project` – Get details of a specific project by name or ID. | ||
| - `vercel_list_deployments` – List deployments for a project. | ||
| - `vercel_get_deployment` – Get details of a deployment by ID or URL. | ||
|
|
||
| ## Usage | ||
|
|
||
| Ask Kimi Code to: | ||
|
|
||
| - "List my Vercel projects" | ||
| - "Show deployments for my-project" | ||
| - "Get details of deployment dpl_xxx" | ||
| - "What's the status of my-project-xxx.vercel.app?" | ||
|
|
||
| ## Requirements | ||
|
|
||
| - Node.js 18+ | ||
| - A Vercel account with a personal access token |
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.
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.
This changeset names
kimi-code, but the publishable CLI workspace is@moonshot-ai/kimi-code(as used by the existing changesets andapps/kimi-code/package.json). With this unscoped name, Changesets will not apply the release note/bump to the CLI package and may fail during versioning, so the plugin/user-visible todo change will be omitted from the intended release.Useful? React with 👍 / 👎.