Skip to main content
Glama
by thoughtspot
index.ts397 B
export enum TrackEvent { CallTool = "mcp-call-tool", Init = "mcp-init", } export interface Tracker { track(eventName: string, props: { [key: string]: any }): void; } export class Trackers extends Set<Tracker> { track(eventName: TrackEvent, props: { [key: string]: any } = {}) { for (const tracker of this) { tracker.track(eventName, props); } } }

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

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