Skip to main content
Glama
goperigon

Perigon MCP Server

Official
by goperigon
auth-service.ts395 B
export async function authenticateWithTurnstile( turnstileToken: string ): Promise<string> { const response = await fetch("/v1/auth", { method: "POST", headers: { "cf-turnstile-response": turnstileToken, }, }); if (!response.ok) { throw new Error("Authentication failed"); } const data = (await response.json()) as { secret: string }; return data.secret; }

Latest Blog Posts

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/goperigon/perigon-mcp-server'

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