decodo-back-office-mcp
Version:
Model Context Protocol (MCP) server for Decodo proxy management API integration. Provides 14 tools for managing sub-users, proxy endpoints, IP whitelists, and traffic analytics.
30 lines • 1.06 kB
TypeScript
import { z } from 'zod';
declare const configSchema: z.ZodObject<{
DECODO_API_KEY: z.ZodString;
DECODO_BASE_URL: z.ZodDefault<z.ZodString>;
LOG_LEVEL: z.ZodDefault<z.ZodEnum<["error", "warn", "info", "debug"]>>;
MCP_SERVER_NAME: z.ZodDefault<z.ZodString>;
MCP_SERVER_VERSION: z.ZodDefault<z.ZodString>;
}, "strip", z.ZodTypeAny, {
DECODO_API_KEY: string;
DECODO_BASE_URL: string;
LOG_LEVEL: "error" | "warn" | "info" | "debug";
MCP_SERVER_NAME: string;
MCP_SERVER_VERSION: string;
}, {
DECODO_API_KEY: string;
DECODO_BASE_URL?: string | undefined;
LOG_LEVEL?: "error" | "warn" | "info" | "debug" | undefined;
MCP_SERVER_NAME?: string | undefined;
MCP_SERVER_VERSION?: string | undefined;
}>;
export type Config = z.infer<typeof configSchema>;
export declare const appConfig: {
DECODO_API_KEY: string;
DECODO_BASE_URL: string;
LOG_LEVEL: "error" | "warn" | "info" | "debug";
MCP_SERVER_NAME: string;
MCP_SERVER_VERSION: string;
};
export {};
//# sourceMappingURL=config.d.ts.map