@grebyn/toolflow-mcp-server
Version:
MCP server for managing other MCP servers - discover, install, organize into bundles, and automate with workflows. Uses StreamableHTTP transport with dual OAuth/API key authentication.
17 lines • 438 B
TypeScript
/**
* MCP Server Configuration
*
* Minimal configuration - no secrets required.
* All authentication happens on the backend.
*/
export interface ServerConfig {
apiEndpoint: string;
oauthBaseUrl: string;
disableAuth?: boolean;
}
/**
* Get server configuration
* These can be hardcoded since they're public endpoints
*/
export declare function getServerConfig(): ServerConfig;
//# sourceMappingURL=server-config.d.ts.map