UNPKG

bottlenecks-mcp-server

Version:

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

19 lines 669 B
/** * MCP CRUD Operations Tools * Provides AI agents with create, update, and validation capabilities for bottlenecks */ import { MCPTool } from '../types/mcp.js'; import { MCPOAuthClient } from '../auth/oauth-client.js'; /** * Create a new bottleneck */ export declare function createCreateBottleneckTool(client: MCPOAuthClient): MCPTool; /** * Update an existing bottleneck */ export declare function createUpdateBottleneckTool(client: MCPOAuthClient): MCPTool; /** * Validate bottleneck data without creating/updating */ export declare function createValidateBottleneckDataTool(client: MCPOAuthClient): MCPTool; //# sourceMappingURL=crud-operations.d.ts.map