@perceptdot/vercel 0.1.5 → 0.1.6
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.
- package/package.json +2 -1
- package/smithery.yaml +20 -22
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@perceptdot/vercel",
|
|
3
|
-
"
|
|
3
|
+
"mcpName": "io.github.perceptdot/vercel",
|
|
4
|
+
"version": "0.1.6",
|
|
4
5
|
"description": "AI agent vision for Vercel deployments — with ROI measurement. perceptdot.com",
|
|
5
6
|
"type": "module",
|
|
6
7
|
"main": "dist/index.js",
|
package/smithery.yaml
CHANGED
|
@@ -4,25 +4,23 @@
|
|
|
4
4
|
|
|
5
5
|
startCommand:
|
|
6
6
|
type: stdio
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
}
|
|
28
|
-
})
|
|
7
|
+
configSchema:
|
|
8
|
+
type: object
|
|
9
|
+
required:
|
|
10
|
+
- vercelToken
|
|
11
|
+
properties:
|
|
12
|
+
vercelToken:
|
|
13
|
+
type: string
|
|
14
|
+
description: "Vercel API token. Generate at vercel.com/account/tokens"
|
|
15
|
+
vercelTeamId:
|
|
16
|
+
type: string
|
|
17
|
+
description: "Vercel Team ID (optional). Required for team project access."
|
|
18
|
+
commandFunction: |-
|
|
19
|
+
config => ({
|
|
20
|
+
command: 'npx',
|
|
21
|
+
args: ['-y', '@perceptdot/vercel'],
|
|
22
|
+
env: {
|
|
23
|
+
VERCEL_TOKEN: config.vercelToken,
|
|
24
|
+
...(config.vercelTeamId ? { VERCEL_TEAM_ID: config.vercelTeamId } : {})
|
|
25
|
+
}
|
|
26
|
+
})
|