Source_map_parser
@MasonChow
About Source_map_parser
paser source map
Basic information
Config
Add this server to your MCP-compatible client using the configuration below.
{
"mcpServers": {
"source_map_parser": {
"command": "npx",
"args": [
"-y",
"source-map-parser-mcp"
]
}
}
}Tools
No tools detected
We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.
Overview
What is Source_map_parser?
Source_map_parser is a WebAssembly-based Source Map parser that maps JavaScript error stack traces back to source code and extracts relevant context information. It is designed for developers debugging minified or compiled JavaScript code.
How to use Source_map_parser?
Run it directly via NPX: npx -y source-map-parser-mcp@latest (requires Node.js 20+). Alternatively, install as an npm package and embed the tools into your own MCP server. Configure runtime parameters through environment variables SOURCE_MAP_PARSER_RESOURCE_CACHE_MAX_SIZE and SOURCE_MAP_PARSER_CONTEXT_OFFSET_LINE.
Key features of Source_map_parser
- Parses stack traces to original source code locations.
- Supports batch processing of multiple stack traces.
- Extracts surrounding context code lines.
- Looks up original source context for compiled positions.
- Unpacks all source files from a source map.
Use cases of Source_map_parser
- Debugging JavaScript errors in production by mapping minified stack traces.
- Analyzing crash reports that include line/column numbers from bundled code.
- Extracting original source files from source maps for code review.
- Integrating into error monitoring tools for automated deobfuscation.
FAQ from Source_map_parser
WebAssembly Module Loading Failure?
Ensure Node.js version is 20 or higher. If still failing, enable the experimental WebAssembly reftypes flag by starting with npx --node-arg=--experimental-wasm-reftypes -y source-map-parser-mcp@latest.
What runtime dependencies does Source_map_parser have?
It requires Node.js 20+. The server can be run via NPX or installed as an npm package. No other external services are required.
Where are source maps resolved from?
The tool fetches source maps from URLs you provide. Ensure the source map URL is accessible and the file format is correct.
What transport does the MCP server use?
Source_map_parser uses the stdio transport (StdioServerTransport). There is no built-in authentication; it relies on the host environment.
How can I configure cache and context lines?
Set environment variables before starting: SOURCE_MAP_PARSER_RESOURCE_CACHE_MAX_SIZE (default 200MB) for cache size, and `SOURCE_M
More Media & Design MCP servers
Figma MCP Server
thirdstrandstudioFigma MCP Server with full API functionality
百度地图 MCP Server
baidu-mapsBaidu Map MCP Server
Photoshop MCP Server
loonghaoA Model Context Protocol (MCP) server that interfaces with Adobe Photoshop's Python API. Enables LLMs to execute image editing operations, automate workflows, and manage Photoshop tasks through structured commands and context-aware interactions.
YouTube Transcript MCP Server
jkawamotoMCP server retrieving transcripts of YouTube videos
RustChain MCP
ScottcjnMCP server for RustChain blockchain and BoTTube video platform — AI agent tools for earning RTC tokens. Built on createkr's RustChain SDK.
Comments