@kya-os/mcp-i
Version:
The TypeScript MCP framework with identity features built-in
42 lines (41 loc) • 866 B
TypeScript
/**
* Default values for CORS config
*/
export declare const DEFAULT_CORS_CONFIG: {
origin: string;
methods: string[];
allowedHeaders: string[];
exposedHeaders: string[];
credentials: boolean;
maxAge: number;
};
/**
* Default values for the HTTP transport
*/
export declare const DEFAULT_HTTP_CONFIG: {
port: number;
host: string;
bodySizeLimit: number;
debug: boolean;
endpoint: string;
cors: {
origin: string;
methods: string[];
allowedHeaders: string[];
exposedHeaders: string[];
credentials: boolean;
maxAge: number;
};
};
/**
* Default values for the STDIO transport
*/
export declare const DEFAULT_STDIO_CONFIG: {
debug: boolean;
};
/**
* Default values for the tools directory
*/
export declare const DEFAULT_PATHS_CONFIG: {
tools: string;
};