Skip to main content
Glama

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
NameRequiredDescriptionDefault
limitNoMax results

Implementation Reference

  • 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,
        };
      }
    });

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/embeddedlayers/mcp-analytics'

If you have feedback or need assistance with the MCP directory API, please join our Discord server