UNPKG

@shirokuma-library/mcp-knowledge-base

Version:

Shirokuma MCP Server for comprehensive knowledge management including issues, plans, documents, and work sessions. All stored data is structured for AI processing, not human readability.

9 lines (8 loc) 281 B
export function isListItem(item) { return (typeof item === 'object' && typeof item.id === 'string' && typeof item.type === 'string' && typeof item.title === 'string' && Array.isArray(item.tags) && typeof item.updated_at === 'string'); }