-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathcom.snyk-mcp-npx.json
More file actions
78 lines (78 loc) · 2.4 KB
/
Copy pathcom.snyk-mcp-npx.json
File metadata and controls
78 lines (78 loc) · 2.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"$schema": "../schemas/server-definition.schema.json",
"id": "com.snyk-mcp-npx",
"name": "Snyk (npx)",
"alias": "snyk",
"description": "Official Snyk MCP server, shipped inside the Snyk CLI. Scans code, open-source dependencies, containers, and IaC for vulnerabilities directly from your AI agent, surfacing security issues and fix guidance during development.",
"logo": "https://avatars.githubusercontent.com/u/12959162?v=4",
"schema_version": "2.1",
"categories": [
"security"
],
"tags": [
"snyk",
"security",
"vulnerabilities",
"sca",
"sast",
"dependencies",
"code-scanning"
],
"transport": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"snyk",
"mcp",
"-t",
"stdio",
"--experimental"
],
"env": {
"SNYK_TOKEN": "${input:SNYK_TOKEN}"
},
"metadata": {
"inputs": [
{
"id": "SNYK_TOKEN",
"label": "Snyk API Token",
"description": "Snyk account API token used to authenticate the CLI. Find it in your Snyk Account Settings under 'API Token'. Alternatively you can authenticate the CLI interactively with 'snyk auth'.",
"type": "text",
"required": true,
"secret": true,
"placeholder": "********-****-****-****-************",
"obtain": {
"url": "https://app.snyk.io/account",
"instructions": "1. Sign in to Snyk at https://app.snyk.io\n2. Click your name (top right) and choose 'Account Settings'\n3. Under 'API Token', click 'Show' (or 'Click to show')\n4. Copy the token value",
"button_label": "Get API Token"
}
}
]
}
},
"auth": {
"type": "api_key",
"instructions": "Set SNYK_TOKEN to your Snyk account API token (Snyk > Account Settings > API Token), or authenticate the CLI interactively with 'snyk auth'."
},
"contributor": {
"name": "Snyk",
"github": "snyk",
"url": "https://snyk.io"
},
"links": {
"repository": "https://github.com/snyk/cli",
"homepage": "https://snyk.io",
"documentation": "https://docs.snyk.io/developer-tools/snyk-cli/developer-guardrails-for-agentic-workflows/snyk-mcp-experimental"
},
"platforms": [
"all"
],
"capabilities": {
"tools": true,
"resources": false,
"prompts": false,
"read_only_mode": false
},
"changelog_url": "https://github.com/snyk/cli/releases"
}