@dw8k/mcp-fallback-server
Version:
MCP fallback server that extracts keywords from prompts and triggers tool recommendations.
9 lines (8 loc) • 488 B
JavaScript
export const config = {
serverName: process.env.MCP_SERVER_NAME || 'FallbackMCPDevServer',
serverVersion: process.env.MCP_SERVER_VERSION || '0.0.1',
crawlerApiBaseUrl: process.env.CRAWLER_API_BASE_URL || 'http://localhost:8081/api/v1', // Example default
guiBeApiBaseUrl: process.env.GUI_BE_API_BASE_URL || 'http://localhost:8082/api/v1', // Example default
// Add other server-specific configurations here if needed
// e.g., serverName: 'MCP Fallback Server',
};