@spaik/mcp-server-roi
Version:
MCP server for AI ROI prediction and tracking with Monte Carlo simulations
26 lines • 953 B
JavaScript
// Re-export from industry-benchmarks
export * from './industry-benchmarks.js';
// Helper to get benchmarks for a specific industry
export async function getBenchmarks(industry) {
// Use the exported getBenchmarkData function
const { getBenchmarkData } = await import('./industry-benchmarks.js');
// Get default benchmark for now
const benchmark = await getBenchmarkData(industry, 'general');
// Transform to expected format
return {
automationSavings: {
percentage: benchmark.adoption_rate,
confidence: benchmark.confidence_factor
},
errorReduction: {
percentage: 0.7, // Default
confidence: benchmark.confidence_factor
},
implementationTimeline: {
typicalMonths: benchmark.average_payback_months,
confidence: benchmark.confidence_factor
},
projectTypes: []
};
}
//# sourceMappingURL=index.js.map