stacktrace-mcp

stacktrace-mcpは、TypeScriptで書かれたエラーハンドリングツールです。スタックトレースを解析し、エラーの発生場所や原因を特定するのに役立ちます。開発者は、デバッグを効率化し、コードの品質を向上させることができます。特に大規模なアプリケーションでのエラー管理に有用です。

GitHubスター

1

ユーザー評価

未評価

お気に入り

0

閲覧数

22

フォーク

1

イシュー

1

README
stacktrace-mcp

Simple JS Stacktrace MCP for getting the nearest error location from JavaScript bundle URL
and lets an LLM checks if it matches anything in the current codebase.

Designed for non-sourcemap users.

Getting started
  1. Clone the repo
  2. Run pnpm i for install
  3. Run pnpm build for building the server
  4. Add the local mcp server file path to your MCP-supported app (VSCode Copilot, etc):
    // settings.json
    "mcp": {
        "servers": {
        "stacktrace-mcp-server": {
            "type": "stdio",
            "command": "node",
            "args": [
                 "<your-path-to>\/stacktrace-mcp\/dist\/mcp_server.cjs"
            ]
        }
        }
    }
    
  5. Make sure the mcp tool is already enabled
  6. Copy your error stack trace to the prompt chat! That's it