remote-capable server
The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.
Integrations
Parses JavaScript error stack traces using Source Maps to map them back to the original source code, providing context information and line details to help developers locate and fix issues.
Implements WebAssembly-based Source Map parsing to efficiently process JavaScript stack traces and extract relevant context information from source code.
Source Map Parser
This project implements a WebAssembly-based Source Map parser that can map JavaScript error stack traces back to source code and extract relevant context information. Developers can easily map JavaScript error stack traces back to source code for quick problem identification and resolution. This documentation aims to help developers better understand and use this tool.
MCP Integration
Note: Requires Node.js 18+ support
Option 1: Run directly with NPX
Option 2: Download the build artifacts
Download the corresponding version of the build artifacts from the GitHub Release page, then run:
Runtime Parameter Configuration
System runtime parameters can be flexibly configured through environment variables to meet the needs of different scenarios
SOURCE_MAP_PARSER_RESOURCE_CACHE_MAX_SIZE
: Sets the maximum memory space occupied by resource cache, default is 200MB. Adjusting this value appropriately can balance performance and memory usage.SOURCE_MAP_PARSER_CONTEXT_OFFSET_LINE
: Defines the number of context code lines to display around the error location, default is 1 line. Increasing this value provides more context information, facilitating problem diagnosis.
Example:
Feature Overview
- Stack Parsing: Parse the corresponding source code location based on provided line number, column number, and Source Map file.
- Batch Processing: Support parsing multiple stack traces simultaneously and return batch results.
- Context Extraction: Extract context code for a specified number of lines to help developers better understand the environment where errors occur.
MCP Service Tool Description
operating_guide
Get usage instructions for the MCP service. Provides information on how to use the MCP service through chat interaction.
parse_stack
Parse stack information by providing stack traces and Source Map addresses.
Request Example
- stacks: Stack information including line number, column number, and Source Map address.
- line: Line number, required.
- column: Column number, required.
- sourceMapUrl: Source Map address, required.
Response Example
Parsing Result Description
success
: Indicates whether the parsing was successful.token
: The Token object returned when parsing is successful, containing source code line number, column number, context code, and other information.error
: Error information returned when parsing fails.
Example Run
System Prompt
According to actual needs, you can use system prompts to guide the model on how to parse stack information. For security or performance reasons, some teams may not want to expose Source Maps directly to the browser for parsing, but instead process the upload path of the Source Map. For example, converting the path bar-special.js
to special/bar.js.map
. In this case, you can instruct the model to perform path conversion through prompt rules.
Here is an example:
Runtime Example
Error Stack
FAQ
1. WebAssembly Module Loading Failure
If the tool returns the following error message, please troubleshoot as follows:
parser init error: WebAssembly.instantiate(): invalid value type 'externref', enable with --experimental-wasm-reftypes @+86
- Check Node.js Version: Ensure Node.js version is 18 or higher. If it's lower than 18, please upgrade Node.js.
- Enable Experimental Flag: If Node.js version is 18+ but you still encounter issues, use the following command to start the tool:
Local Development Guide
1. Install Dependencies
Ensure Node.js and npm are installed, then run the following command to install project dependencies:
2. Link MCP Service
Run the following command to start the MCP server:
Internal Logic Overview
1. Main File Description
stack_parser_js_sdk.js
: JavaScript wrapper for the WebAssembly module, providing core stack parsing functionality.parser.ts
: Main implementation of the parser, responsible for initializing the WebAssembly module, retrieving Source Map content, and parsing stack information.server.ts
: Implementation of the MCP server, providing theparse_stack
tool interface for external calls.
2. Modify Parsing Logic
To modify the parsing logic, edit the getSourceToken
method in the parser.ts
file.
3. Add New Tools
In the server.ts
file, new tool interfaces can be added using the server.tool
method.
Notes
- Source Map Files: Ensure that the provided Source Map file address is accessible and the file format is correct.
- Error Handling: During parsing, network errors, file format errors, and other issues may be encountered; it's recommended to implement proper error handling when making calls.
Contribution Guidelines
Contributions via Issues and Pull Requests are welcome to improve this project.
License
This project is licensed under the MIT License. See the LICENSE file for details.
You must be authenticated.
Enables mapping JavaScript error stack traces back to original source code, extracting context information to help developers locate and fix issues.
- MCP Integration
- Feature Overview
- MCP Service Tool Description
- Example Run
- FAQ
- Local Development Guide
- Notes
- Contribution Guidelines
- License