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.

7 lines (6 loc) 296 B
import { z } from 'zod'; export const ChangeItemTypeSchema = z.object({ from_type: z.string().describe('Current type of the item'), from_id: z.number().positive().describe('Current ID of the item'), to_type: z.string().describe('New type (must have same base_type as from_type)') });