We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/swen128/cloud-logging-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
log-id.ts•408 B
/**
* LogId type - wraps string to provide type safety
*/
export interface LogId {
readonly value: string;
readonly _brand: "LogId";
}
/**
* Create a LogId from a string
*/
export function createLogId(id: string): LogId {
return {
value: id,
_brand: "LogId"
};
}
/**
* Get the string value from a LogId
*/
export function getLogIdValue(logId: LogId): string {
return logId.value;
}