-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathserver.json
More file actions
39 lines (39 loc) · 1.18 KB
/
Copy pathserver.json
File metadata and controls
39 lines (39 loc) · 1.18 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "com.stackscan/mcp-server",
"description": "Look up the technology stack behind any domain, and the company running it.",
"repository": {
"url": "https://github.com/stackscan/stackscan-mcp",
"source": "github"
},
"version": "0.2.1",
"websiteUrl": "https://www.stackscan.com/mcp",
"packages": [
{
"registryType": "npm",
"identifier": "@stackscan/mcp-server",
"version": "0.2.1",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "STACKSCAN_API_TOKEN",
"description": "API token from the StackScan dashboard, My Account -> API Tokens.",
"isRequired": true,
"isSecret": true
},
{
"name": "STACKSCAN_TENANT_ID",
"description": "Workspace UUID, shown on the same page as the token.",
"isRequired": true
},
{
"name": "STACKSCAN_SESSION_LOOKUP_CAP",
"description": "Maximum credit-consuming lookups per session. Defaults to 25.",
"isRequired": false
}
]
}
]
}