reports_view
View specific analysis reports by processing ID to access statistical insights, forecasts, and machine learning results from business data sources.
Instructions
View a specific report by processing ID.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| processing_id | Yes | Processing ID from tools_run |
Implementation Reference
- src/index.js:105-118 (handler)The tool 'reports_view' (along with all other tools) is handled by this dynamic proxy. It receives the request and forwards it to the remote client (api.mcpanalytics.ai).
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, }; } });