reports_list
Retrieve and manage analysis reports with metadata from business data sources like Shopify, Stripe, and Google Analytics. Filter results to find specific reports for statistical analysis and forecasting.
Instructions
List analysis reports with metadata.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max results |
Implementation Reference
- src/index.js:105-118 (handler)The tool execution is proxied to the remote MCP server via remoteClient.callTool. The 'reports_list' tool is dynamically fetched from the remote catalog and handled here at runtime.
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, }; } });