Skip to main content
Glama

reports_search

Search reports by job ID, tool name, or keyword to find specific analysis results within the MCP Analytics server.

Instructions

Search reports by job ID, tool name, or keyword.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
queryNoSearch query
job_idsNoFilter by processing IDs

Implementation Reference

  • The tool "reports_search" is not hardcoded in this codebase. Instead, this MCP proxy dynamically fetches available tools from a remote server (api.mcpanalytics.ai) and forwards all `tools/call` requests (including "reports_search") to that remote server using `remoteClient.callTool`.
    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