-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathserver.json
More file actions
38 lines (38 loc) · 1.17 KB
/
server.json
File metadata and controls
38 lines (38 loc) · 1.17 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-07-09/server.schema.json",
"name": "io.github.MasonChow/source-map-parser-mcp",
"description": "Parse JavaScript error stack traces back to original source code using source maps",
"status": "active",
"repository": {
"url": "https://github.com/MasonChow/source-map-parser-mcp",
"source": "github"
},
"version": "1.3.2",
"packages": [
{
"registry_type": "npm",
"registry_base_url": "https://registry.npmjs.org",
"identifier": "source-map-parser-mcp",
"version": "1.3.2",
"transport": {
"type": "stdio"
},
"environment_variables": [
{
"description": "Context lines around error locations in source code",
"is_required": false,
"format": "string",
"is_secret": false,
"name": "SOURCE_MAP_PARSER_CONTEXT_OFFSET_LINE"
},
{
"description": "Maximum memory cache size in MB for source maps",
"is_required": false,
"format": "string",
"is_secret": false,
"name": "SOURCE_MAP_PARSER_RESOURCE_CACHE_MAX_SIZE"
}
]
}
]
}