Skip to main content
Glama

Sentry MCP

Official
by getsentry
constants.ts502 B
import { z } from "zod"; // Sentry OAuth endpoints export const SENTRY_AUTH_URL = "/oauth/authorize/"; export const SENTRY_TOKEN_URL = "/oauth/token/"; export const TokenResponseSchema = z.object({ access_token: z.string(), refresh_token: z.string(), token_type: z.string(), // should be "bearer" expires_in: z.number(), expires_at: z.string().datetime(), user: z.object({ email: z.string().email(), id: z.string(), name: z.string().nullable(), }), scope: z.string(), });

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/getsentry/sentry-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server