We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/AEGISnetInc/TS-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
export declare const SERVICE_NAME = "ts-mcp";
export declare const ACCOUNT_NAME = "touchstone-api-key";
export declare const CREDENTIALS_ACCOUNT = "touchstone-credentials";
export interface StoredCredentials {
username: string;
password: string;
}
export declare class KeychainService {
getApiKey(): Promise<string | null>;
setApiKey(apiKey: string): Promise<void>;
deleteApiKey(): Promise<boolean>;
hasApiKey(): Promise<boolean>;
getCredentials(): Promise<StoredCredentials | null>;
setCredentials(username: string, password: string): Promise<void>;
deleteCredentials(): Promise<boolean>;
hasCredentials(): Promise<boolean>;
}
//# sourceMappingURL=keychain.d.ts.map