bottlenecks-mcp-server
Version:
Model Context Protocol server for Bottlenecks database - enables AI agents like Claude to interact with bottleneck data
15 lines • 514 B
TypeScript
/**
* MCP Schema Tools
* Provides AI agents with data structure and validation information
*/
import { MCPTool } from '../types/mcp.js';
import { MCPOAuthClient } from '../auth/oauth-client.js';
/**
* Get the complete bottleneck data schema
*/
export declare function createGetBottleneckSchemaTool(client: MCPOAuthClient): MCPTool;
/**
* Get taxonomy information (tags, categories, etc.)
*/
export declare function createGetTaxonomyTool(client: MCPOAuthClient): MCPTool;
//# sourceMappingURL=schema.d.ts.map