Skip to main content
Glama

Sentry MCP

Official
by getsentry
app.test.ts786 B
import { describe, it, expect } from "vitest"; import app from "./app"; describe("app", () => { describe("GET /robots.txt", () => { it("should return correct robots.txt content", async () => { const res = await app.request("/robots.txt"); expect(res.status).toBe(200); const text = await res.text(); expect(text).toBe( ["User-agent: *", "Allow: /$", "Disallow: /"].join("\n"), ); }); }); describe("GET /llms.txt", () => { it("should return correct llms.txt content", async () => { const res = await app.request("/llms.txt"); expect(res.status).toBe(200); const text = await res.text(); expect(text).toContain("# sentry-mcp"); expect(text).toContain("Model Context Protocol"); }); }); });

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