Skip to main content
Glama
goperigon

Perigon MCP Server

Official
by goperigon
perigon.ts648 B
import { Configuration, V1Api } from "@goperigon/perigon-ts"; import { AuthIntrospectionResponse } from "../types/types"; import { typedFetch } from "./typed-fetch"; const BASE_URL = "https://api.perigon.io/v1"; export class Perigon extends V1Api { private apiKey: string; constructor(apiKey: string) { super(new Configuration({ apiKey })); this.apiKey = apiKey; } async introspection(): Promise<AuthIntrospectionResponse> { return await typedFetch<AuthIntrospectionResponse>( `${BASE_URL}/auth/introspect`, { headers: { Authorization: `Bearer ${this.apiKey}`, }, }, ); } }

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