UNPKG

bottlenecks-mcp-server

Version:

Model Context Protocol server for Bottlenecks database - enables AI agents like Claude to interact with bottleneck data

23 lines 843 B
/** * MCP Validation Operations Tools * Provides AI agents with validation and completeness checking capabilities */ import { MCPTool } from '../types/mcp.js'; import { MCPOAuthClient } from '../auth/oauth-client.js'; /** * Get validation status for a specific card */ export declare function createGetCardValidationTool(client: MCPOAuthClient): MCPTool; /** * Validate multiple cards and get completeness summary */ export declare function createBulkValidationTool(client: MCPOAuthClient): MCPTool; /** * Find cards that need validation attention */ export declare function createFindCardsNeedingValidationTool(client: MCPOAuthClient): MCPTool; /** * Get validation statistics and insights */ export declare function createGetValidationStatsTool(client: MCPOAuthClient): MCPTool; //# sourceMappingURL=validation-operations.d.ts.map