Skip to main content
Glama

get_tile

Retrieve detailed information about a specific research tile to explore hierarchical connections, analyze content, and support organization of interconnected research ideas.

Instructions

Get details of a specific tile

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tileIdYesID of the tile

Implementation Reference

  • Core handler function in ResearchTreeManager that executes the tool logic: retrieves Tile from internal Map by tileId.
    getTile(tileId: string): Tile | undefined {
      return this.tiles.get(tileId);
    }
  • MCP server dispatch handler for get_tile tool call: extracts tileId arg, calls treeManager.getTile, serializes result as JSON response.
    case "get_tile": {
      const result = treeManager.getTile(args.tileId as string);
      return {
        content: [
          {
            type: "text",
            text: JSON.stringify(result, null, 2),
          },
        ],
      };
    }
  • src/index.ts:222-235 (registration)
    Tool registration in TOOLS array including name, description, and input schema (requires tileId string).
    {
      name: "get_tile",
      description: "Get details of a specific tile",
      inputSchema: {
        type: "object",
        properties: {
          tileId: {
            type: "string",
            description: "ID of the tile",
          },
        },
        required: ["tileId"],
      },
    },
  • Input schema definition for get_tile tool: object with required tileId string property.
      inputSchema: {
        type: "object",
        properties: {
          tileId: {
            type: "string",
            description: "ID of the tile",
          },
        },
        required: ["tileId"],
      },
    },

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/k-chrispens/tiling-trees-mcp'

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