@universal-mcp-toolkit/server-vercel 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -33,4 +33,4 @@
33
33
  "prompts": [
34
34
  "deployment-audit"
35
35
  ]
36
- }
36
+ }
package/LICENSE CHANGED
@@ -1,21 +1,21 @@
1
- MIT License
2
-
3
- Copyright (c) 2026 universal-mcp-toolkit
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
1
+ MIT License
2
+
3
+ Copyright (c) 2026 universal-mcp-toolkit
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,48 @@
1
+ Use Vercel projects, deployments, and account info from Claude or Cursor.
2
+
3
+ ## What it can do
4
+ - `list_projects`: Show the Vercel projects your token can see, with optional search and a limit.
5
+ - `list_deployments`: Show recent deployments, and filter by project or by `production` or `preview`.
6
+ - `get_deployment`: Show the full details for one deployment ID.
7
+
8
+ ## Setup
9
+ Set these env vars before you start:
10
+ - `VERCEL_TOKEN` (required): create a token at https://vercel.com/account/tokens
11
+ - `VERCEL_TEAM_ID` (optional): if you want to scope calls to one team, get the team ID from your Vercel team settings at https://vercel.com/teams
12
+
13
+ If you only use a personal account, you can leave `VERCEL_TEAM_ID` out.
14
+
15
+ ## Claude Desktop config
16
+ ```json
17
+ {
18
+ "mcpServers": {
19
+ "vercel": {
20
+ "command": "npx",
21
+ "args": ["-y", "@universal-mcp-toolkit/server-vercel@latest"],
22
+ "env": {
23
+ "VERCEL_TOKEN": "your_vercel_token",
24
+ "VERCEL_TEAM_ID": "your_team_id"
25
+ }
26
+ }
27
+ }
28
+ }
29
+ ```
30
+
31
+ ## Cursor config
32
+ ```json
33
+ {
34
+ "mcpServers": {
35
+ "vercel": {
36
+ "command": "npx",
37
+ "args": ["-y", "@universal-mcp-toolkit/server-vercel@latest"],
38
+ "env": {
39
+ "VERCEL_TOKEN": "your_vercel_token",
40
+ "VERCEL_TEAM_ID": "your_team_id"
41
+ }
42
+ }
43
+ }
44
+ }
45
+ ```
46
+
47
+ ## Quick example
48
+ Ask Claude: "List my 5 newest production deployments, then open the most recent failed one and tell me what I should check before I roll it back."
package/package.json CHANGED
@@ -1,18 +1,17 @@
1
1
  {
2
2
  "name": "@universal-mcp-toolkit/server-vercel",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "type": "module",
5
5
  "description": "Project, deployment, and environment tools for Vercel.",
6
6
  "license": "MIT",
7
7
  "bin": {
8
- "server-vercel": "./dist/index.js",
9
8
  "umt-vercel": "./dist/index.js"
10
9
  },
11
10
  "repository": {
12
11
  "type": "git",
13
- "url": "git+https://github.com/Markgatcha/universal-mcp-toolkit.git"
12
+ "url": "git+https://github.com/universal-mcp-toolkit/universal-mcp-toolkit.git"
14
13
  },
15
- "homepage": "https://github.com/Markgatcha/universal-mcp-toolkit#readme",
14
+ "homepage": "https://github.com/universal-mcp-toolkit/universal-mcp-toolkit#readme",
16
15
  "exports": {
17
16
  ".": {
18
17
  "types": "./dist/index.d.ts",
@@ -36,12 +35,9 @@
36
35
  "frontend"
37
36
  ],
38
37
  "dependencies": {
39
- "@universal-mcp-toolkit/core": "0.1.0",
38
+ "@universal-mcp-toolkit/core": "0.2.0",
40
39
  "zod": "^4.3.6"
41
40
  },
42
- "publishConfig": {
43
- "access": "public"
44
- },
45
41
  "scripts": {
46
42
  "build": "tsup src/index.ts --format esm --dts --clean",
47
43
  "dev": "tsx watch src/index.ts",