We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jrklein343-svg/restaurant-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
export type CredentialKey = 'resy-api-key' | 'resy-auth-token' | 'resy-email' | 'resy-password' | 'opentable-token';
export declare function getCredential(key: CredentialKey): Promise<string | null>;
export declare function setCredential(key: CredentialKey, value: string): Promise<void>;
export declare function deleteCredential(key: CredentialKey): Promise<boolean>;
export declare function getAllCredentialKeys(): Promise<CredentialKey[]>;
export declare function maskCredential(value: string): string;
export declare function maskEmail(email: string): string;
export interface AuthStatus {
platform: 'resy' | 'opentable';
hasApiKey: boolean;
hasAuthToken: boolean;
hasLogin: boolean;
email?: string;
}
export declare function getResyAuthStatus(): Promise<AuthStatus>;
export declare function getOpenTableAuthStatus(): Promise<AuthStatus>;