@blario/mcp
Version:
Blar Model Context Protocol server
13 lines (12 loc) • 505 B
JavaScript
export function formatConsideration(feature) {
return [
`Title: ${feature.title || 'Unknown'}`,
`Description: ${feature.description || 'Unknown'}`,
`Tags: ${feature.tags.join(', ') || 'Unknown'}`,
`Code Snippet: ${feature.code_snippet || 'No code snippet'}`,
`Active: ${feature.active ? 'Yes' : 'No'}`,
`Created At: ${feature.created_at || 'Unknown'}`,
`Source Type: ${feature.source_type_name || 'Unknown'}`,
'---',
].join('\n');
}