datasets_read
Preview dataset contents including rows, columns, and data types to understand structure before analysis.
Instructions
Read dataset contents — preview rows, columns, and types.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| uuid | Yes | Dataset UUID | |
| secret | No | Dataset secret key | |
| rows | No | Number of rows to preview |
Implementation Reference
- src/index.js:105-118 (handler)The tool "datasets_read" is not implemented locally. Instead, this proxy server forwards all tool calls, including "datasets_read", to a remote MCP server via the `remoteClient.callTool` method.
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, }; } });