bottlenecks-mcp-server
Version:
Model Context Protocol server for Bottlenecks database - enables AI agents like Claude to interact with bottleneck data
9 lines • 639 B
TypeScript
/**
* Bottlenecks MCP Server - Main Entry Point
* Exports the MCP server for programmatic use and npm package distribution
*/
export { BottlenecksMCPServer, createBottlenecksMCPServer } from './server.js';
export { MCPOAuthClient } from './auth/oauth-client.js';
export { createMCPTools, getToolDefinitions, TOOL_CATEGORIES, } from './tools/index.js';
export type { MCPConfig, MCPTool, MCPToolResult, BottleneckSchema, FileAttachment, SearchFilters, PaginationParams, APIResponse, CreateBottleneckData, UpdateBottleneckData, FileUploadData, ValidationError, ValidationResult, } from './types/mcp.js';
//# sourceMappingURL=index.d.ts.map