We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/tableau/tableau-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
noop.ts•502 B
/**
* NoOp telemetry provider - does nothing.
* This is the default provider when telemetry is disabled.
*
* Zero overhead implementation that can be safely used in production
* when telemetry is not needed.
*/
import { TelemetryAttributes, TelemetryProvider } from './types.js';
export class NoOpTelemetryProvider implements TelemetryProvider {
initialize(): void {
// No-op
}
recordMetric(_name: string, _value: number, _attributes: TelemetryAttributes): void {
// No-op
}
}