UNPKG

@etm-professional-control/winccoa-mcp-server

Version:

MCP Server for WinCC OA with field-specific configurations

26 lines 823 B
/** * Central Type Export * * Re-exports all types from the types directory for convenient importing. * Use: import { ServerContext, OpcUaConnectionConfig } from '../types/index.js'; */ // MCP Types export * from './mcp/responses.js'; // WinCC OA Types export * from './winccoa/datapoint.js'; export * from './winccoa/manager.js'; export * from './winccoa/constants.js'; // Driver Types export * from './drivers/connection.js'; export * from './drivers/browse.js'; // Server Types export * from './server/context.js'; export * from './server/config.js'; // Tool Types export * from './tools/index.js'; // Dashboard Types export * from './dashboards/schema.js'; export * from './dashboards/layout.js'; export * from './dashboards/widgets.js'; export * from './dashboards/dashboard.js'; //# sourceMappingURL=index.js.map