bottlenecks-mcp-server
Version:
Model Context Protocol server for Bottlenecks database - enables AI agents like Claude to interact with bottleneck data
19 lines • 665 B
TypeScript
/**
* MCP Read Operations Tools
* Provides AI agents with search, list, and get capabilities for bottlenecks
*/
import { MCPTool } from '../types/mcp.js';
import { MCPOAuthClient } from '../auth/oauth-client.js';
/**
* Search bottlenecks with filters and pagination
*/
export declare function createSearchBottlenecksTool(client: MCPOAuthClient): MCPTool;
/**
* Get a specific bottleneck by ID
*/
export declare function createGetBottleneckTool(client: MCPOAuthClient): MCPTool;
/**
* List bottlenecks with basic information
*/
export declare function createListBottlenecksTool(client: MCPOAuthClient): MCPTool;
//# sourceMappingURL=read-operations.d.ts.map