We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/get-convex/convex-backend'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
// sentry.edge.config.js or sentry.edge.config.ts
import * as Sentry from "@sentry/nextjs";
import { Integrations } from "@sentry/nextjs";
const { RequestData } = Integrations;
const SENTRY_DSN = process.env.SENTRY_DSN || process.env.NEXT_PUBLIC_SENTRY_DSN;
const environment =
process.env.NEXT_PUBLIC_ENVIRONMENT === "production"
? "production"
: "development";
Sentry.init({
dsn: SENTRY_DSN,
tracesSampleRate: 0.01,
tunnel: `${process.env.NEXT_PUBLIC_BIG_BRAIN_URL}/sentry`,
environment,
integrations: [
new RequestData({
include: {
cookies: false,
},
}),
],
});