constants.ts•469 B
// Default MCP Server
export const DEFAULT_MCP_URL = "https://mcp.sentry.dev";
// Default AI model - using GPT-4
export const DEFAULT_MODEL = "gpt-4o";
// OAuth configuration
export const OAUTH_REDIRECT_PORT = 8765;
export const OAUTH_REDIRECT_URI = `http://localhost:${OAUTH_REDIRECT_PORT}/callback`;
// Default OAuth scopes
export const DEFAULT_OAUTH_SCOPES = [
"org:read",
"project:read",
"project:write",
"team:read",
"team:write",
"event:write",
];