ateam_create_connector
Scaffold a new MCP connector by generating server.js, package.json, and README files. Reduces boilerplate for MCP server setup, tool registration, and stdio transport.
Instructions
Scaffold a new MCP connector with server.js + package.json + README. Eliminates ~50% of identical boilerplate (MCP server setup, tool registration, stdio transport). You then fill in the tool implementations. Set ui_capable=true to include ui.listPlugins / ui.getPlugin stubs (plugin source files added separately via ateam_create_plugin). After scaffolding, the files are uploaded to Core via the same path as ateam_upload_connector.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| solution_id | Yes | The solution ID | |
| connector_id | Yes | Connector ID (lowercase-with-dashes, no spaces). Becomes the directory name. | |
| name | No | Human-readable name for the connector (e.g. 'Hue Lights'). Defaults to connector_id. | |
| ui_capable | No | If true, include ui.listPlugins/ui.getPlugin handler stubs. Default: false. |