UNPKG

@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.

18 lines 579 B
/** * MCP Server Configuration * * Minimal configuration - no secrets required. * All authentication happens on the backend. */ /** * Get server configuration * These can be hardcoded since they're public endpoints */ export function getServerConfig() { return { apiEndpoint: process.env.TOOLFLOW_API_ENDPOINT || 'https://toolflow-six.vercel.app/api/mcp', oauthBaseUrl: process.env.TOOLFLOW_OAUTH_BASE_URL || 'https://toolflow-six.vercel.app', disableAuth: process.env.DISABLE_AUTH === 'true' }; } //# sourceMappingURL=server-config.js.map