Export Sentry Issue
Exporting and analyzing Sentry issues
Installation
npx export-sentry-issueAsk AI about Export Sentry Issue
Powered by Claude Β· Grounded in docs
I know everything about Export Sentry Issue. Ask me about installation, configuration, usage, or troubleshooting.
0/500
Reviews
Documentation
Export Sentry Issue
ηΉι«δΈζη (Traditional Chinese)
A collection of tools for exporting and analyzing Sentry issues.
Packages
This repository contains multiple packages:
π¦ export-sentry-issue
A Python CLI tool for exporting Sentry issues to plain text files.
Features:
- Export complete error messages and stack traces
- Support both Self-hosted Sentry and SaaS version
- Include Request information, Breadcrumbs, Spans, and Context data
- Secure token management with file permissions
- Batch export multiple issues
Quick Start:
pip install export-sentry-issue
# Initialize configuration (secure, token hidden)
export-sentry-issue init
# Export issues
export-sentry-issue export --ids "12345,67890"
π export-sentry-issue-mcp
An Model Context Protocol (MCP) server that allows AI assistants like Claude to export and analyze Sentry issues.
Features:
- π§ MCP Tools for Sentry issue management
- π€ Auto-triggered when you mention Sentry URLs or issue numbers
- π Secure configuration with file permissions
- π Rich export format with stack traces, breadcrumbs, spans
- π Multiple transport modes (STDIO and HTTP/SSE)
Quick Start:
Using Docker:
docker pull ghcr.io/jlhg/export-sentry-issue-mcp:latest
Or install via pip:
pip install export-sentry-issue-mcp
# Initialize configuration
export-sentry-issue-mcp init
# Add to Claude Desktop config (~/.config/claude/claude_desktop_config.json)
{
"mcpServers": {
"sentry": {
"command": "export-sentry-issue-mcp"
}
}
}
Development
This is a monorepo containing multiple Python packages. Each package can be developed and published independently.
Project Structure
export-sentry-issue/
βββ packages/
β βββ export-sentry-issue/ # CLI tool
β β βββ src/
β β βββ pyproject.toml
β β βββ README.md
β βββ export-sentry-issue-mcp/ # MCP server
β βββ src/
β βββ pyproject.toml
β βββ README.md
βββ LICENSE
βββ README.md
Local Development
# Install a package in editable mode
cd packages/export-sentry-issue
pip install -e .
# Or for the MCP server
cd packages/export-sentry-issue-mcp
pip install -e .
License
MIT License - see LICENSE file for details.
