Skip to main content
Glama

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
NameRequiredDescriptionDefault
uuidYesDataset UUID
secretNoDataset secret key
rowsNoNumber of rows to preview

Implementation Reference

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

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