MCP.so
Sign In
Servers

Source_map_parser

@MasonChow

paser source map

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

Tags

More from Media & Design