工具 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>

devOAuth1 积分

调用信息

工具标识
sentry-mcp.get_sentry_resource
服务提供方
Sentry
平均响应
0 ms
近 7 天调用
0

输入参数

url

Sentry URL. The resource type is auto-detected from the URL pattern.

resourceType

Resource type. With a URL, overrides the auto-detected type (e.g., 'breadcrumbs' on an issue URL).

resourceId

Resource identifier: issue shortId (e.g., 'PROJECT-123'), event ID, or trace ID. Required when not using a URL.

organizationSlug

The organization's slug. You can find a existing list of organizations you have access to using the `find_organizations()` tool.