datasets_update
Update dataset metadata including name, description, tags, and visibility settings for business analytics data from Shopify, Stripe, WooCommerce, and other sources.
Instructions
Update dataset metadata — name, description, tags, visibility.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| uuid | Yes | Dataset UUID |
Implementation Reference
- src/index.js:105-118 (handler)The tool 'datasets_update' is not locally implemented. This proxy server forwards all tool calls (including 'datasets_update') to a remote MCP server via the `remoteClient.callTool` handler.
server.setRequestHandler(CallToolRequestSchema, async (request) => { try { const result = await remoteClient.callTool({ name: request.params.name, arguments: request.params.arguments || {}, }); return result; } catch (err) { return { content: [{ type: "text", text: `Error: ${err.message}` }], isError: true, }; } });