-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathcom.socket-mcp-npx.json
More file actions
74 lines (74 loc) · 2.3 KB
/
Copy pathcom.socket-mcp-npx.json
File metadata and controls
74 lines (74 loc) · 2.3 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
{
"$schema": "../schemas/server-definition.schema.json",
"id": "com.socket-mcp-npx",
"name": "Socket (npx)",
"alias": "socket",
"description": "Query Socket.dev for dependency security scores, supply-chain risk, malware/typosquat threat feeds, and package metadata across npm, PyPI, Cargo, Maven, NuGet, RubyGems, Go, and more. Runs locally via npx.",
"logo": "https://avatars.githubusercontent.com/u/69326764?v=4",
"schema_version": "2.1",
"categories": [
"security",
"developer-tools"
],
"tags": [
"socket",
"security",
"dependencies",
"supply-chain",
"vulnerabilities",
"sca"
],
"transport": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@socketsecurity/mcp"
],
"env": {
"SOCKET_API_TOKEN": "${input:SOCKET_API_TOKEN}"
},
"metadata": {
"inputs": [
{
"id": "SOCKET_API_TOKEN",
"label": "Socket API Token",
"description": "Socket.dev API token used to query dependency scores and security data. Only the 'packages:list' permission scope is required.",
"type": "text",
"required": true,
"secret": true,
"placeholder": "sktsec_****************************",
"obtain": {
"url": "https://socket.dev/dashboard/org/gh/settings/api-tokens",
"instructions": "1. Sign in at https://socket.dev\n2. Go to your organization Settings > API Tokens\n3. Click 'New API Token'\n4. Grant the 'packages:list' scope\n5. Create and copy the token",
"button_label": "Create API Token"
}
}
]
}
},
"auth": {
"type": "api_key",
"instructions": "Create a Socket API token at https://socket.dev (Settings > API Tokens) with the 'packages:list' scope and set it as SOCKET_API_TOKEN."
},
"contributor": {
"name": "Socket",
"github": "SocketDev",
"url": "https://socket.dev"
},
"links": {
"repository": "https://github.com/SocketDev/socket-mcp",
"homepage": "https://socket.dev",
"documentation": "https://docs.socket.dev/docs/local-socket-mcp"
},
"platforms": [
"all"
],
"capabilities": {
"tools": true,
"resources": false,
"prompts": false,
"read_only_mode": false
},
"changelog_url": "https://github.com/SocketDev/socket-mcp/releases"
}