@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.
Files changed (2) hide show
  1. package/package.json +2 -1
  2. package/smithery.yaml +20 -22
package/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "@perceptdot/vercel",
3
- "version": "0.1.5",
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
- configSchema:
9
- type: object
10
- required:
11
- - vercelToken
12
- properties:
13
- vercelToken:
14
- type: string
15
- description: "Vercel API 토큰. vercel.com/account/tokens 에서 발급."
16
- vercelTeamId:
17
- type: string
18
- description: "Vercel 팀 ID (선택). 팀 프로젝트 조회 시 필요."
19
-
20
- commandFunction: |-
21
- config => ({
22
- command: 'npx',
23
- args: ['-y', '@perceptdot/vercel'],
24
- env: {
25
- VERCEL_TOKEN: config.vercelToken,
26
- ...(config.vercelTeamId ? { VERCEL_TEAM_ID: config.vercelTeamId } : {})
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
+ })