We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/punkpeye/pb_mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
export declare const config: {
POCKETBASE_URL: string;
SUPER_USER_LOGIN: string;
SUPER_USER_PASSWORD: string;
NODE_ENV: "development" | "production" | "test";
LOG_LEVEL: "debug" | "info" | "warn" | "error";
};
export declare const appConfig: {
readonly pocketbase: {
readonly url: string;
readonly superuser: {
readonly email: string;
readonly password: string;
};
};
readonly server: {
readonly environment: "development" | "production" | "test";
readonly logLevel: "debug" | "info" | "warn" | "error";
readonly isDevelopment: boolean;
readonly isProduction: boolean;
readonly isTest: boolean;
};
};
export type AppConfig = typeof appConfig;
export type PocketBaseConfig = typeof appConfig.pocketbase;
//# sourceMappingURL=config.d.ts.map