工具 API
get_ sentry_ resource
Fetch a Sentry resource by URL or by type and ID. <examples> ### From a Sentry URL get_sentry_resource(url='https://sentry.io/issues/PROJECT-123/') ### Breadcrumbs from a Sentry URL get_sentry_resource(url='https://sentry.io/issues/PROJECT-123/', resourceType='breadcrumbs') ### By type and ID get_sentry_resource(resourceType='issue', organizationSlug='my-org', resourceId='PROJECT-123') </examples>
调用信息
- 工具标识
- sentry-mcp.get_sentry_resource
- 服务提供方
- Sentry
- 平均响应
- 0 ms
- 近 7 天调用
- 0
输入参数
urlSentry URL. The resource type is auto-detected from the URL pattern.
resourceTypeResource type. With a URL, overrides the auto-detected type (e.g., 'breadcrumbs' on an issue URL).
resourceIdResource identifier: issue shortId (e.g., 'PROJECT-123'), event ID, or trace ID. Required when not using a URL.
organizationSlugThe organization's slug. You can find a existing list of organizations you have access to using the `find_organizations()` tool.