update readme

This commit is contained in:
David Soria Parra
2024-11-24 21:08:01 +00:00
parent d20b245bd3
commit e335d98e3f

View File

@@ -6,23 +6,25 @@ MCP server for retrieving issues from sentry.io
### Resources ### Resources
The server implements a simple note storage system with: This server does not implement any resources.
- Custom note:// URI scheme for accessing individual notes
- Each note resource has a name, description and text/plain mimetype
### Prompts ### Prompts
The server provides a single prompt: The server provides a single prompt:
- summarize-notes: Creates summaries of all stored notes - sentry-issue: Retrieves a Sentry issue by ID or URL
- Optional "style" argument to control detail level (brief/detailed) - Required "issue_id_or_url" argument to specify the issue
- Generates prompt combining all current notes with style preference - Returns issue details including title, status, level, timestamps and stacktrace
### Tools ### Tools
The server implements one tool: The server implements one tool:
- add-note: Adds a new note to the server - get-sentry-issue: Retrieves and analyzes Sentry issues
- Takes "name" and "content" as required string arguments - Takes "issue_id_or_url" as required string argument
- Updates server state and notifies clients of resource changes - Used for investigating production errors and crashes
- Provides access to detailed stacktraces
- Shows error patterns and frequencies
- Includes first/last occurrence timestamps
- Displays error counts and status
## Install ## Install