@the_cfdude/productboard-mcp
Version:
Model Context Protocol server for Productboard REST API with dynamic tool loading
11 lines (10 loc) • 343 B
JavaScript
export const generatedToolDocumentation = {};
// Merge with manually maintained documentation
export function mergeDocumentation(manual, generated) {
const merged = { ...generated };
// Manual documentation takes precedence
Object.entries(manual).forEach(([tool, doc]) => {
merged[tool] = doc;
});
return merged;
}