Skip to main content
Glama
index.jsโ€ข617 B
'use strict'; class AbortSignal { onabort = null; _aborted = false; constructor() { Object.defineProperty(this, "_aborted", { value: false, writable: true, }); } get aborted() { return this._aborted; } abort() { this._aborted = true; if (this.onabort) { this.onabort(this); this.onabort = null; } } } class AbortController { signal = new AbortSignal(); abort() { this.signal.abort(); } } exports.AbortController = AbortController; exports.AbortSignal = AbortSignal;

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/consigcody94/office-whisperer'

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