Skip to main content
Glama

get_image_history

Retrieve previously generated or edited images within a session to maintain visual consistency and reference past creations.

Instructions

Get the list of generated/edited images in a session for reference

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
conversation_idYesThe session ID to get image history for

Implementation Reference

  • The implementation of the get_image_history tool handler which retrieves image history from a conversation context.
    case "get_image_history": {
      const { conversation_id } = args as any;
    
      const context = conversations.get(conversation_id);
      if (!context || !context.imageHistory?.length) {
        return {
          content: [
            {
              type: "text",
              text: `No image history found for session: ${conversation_id}`,
            },
          ],
        };
      }
    
      const historyInfo = context.imageHistory.map((img, index) => ({
        index,
        reference: `history:${index}`,
        id: img.id,
        filePath: img.filePath,
        prompt: img.prompt,
        type: img.type,
        timestamp: new Date(img.timestamp).toISOString(),
      }));
    
      return {
        content: [
          {
            type: "text",
            text: `Image History for session "${conversation_id}" (${context.imageHistory.length} images):\n\n` +
                  `Use "last" to reference the most recent image, or "history:N" (e.g., "history:0") to reference by index.\n\n` +
                  JSON.stringify(historyInfo, null, 2),
          },
        ],
      };
    }
  • src/index.ts:394-405 (registration)
    Tool registration for get_image_history with its input schema definition.
    name: "get_image_history",
    description: "Get the list of generated/edited images in a session for reference",
    inputSchema: {
      type: "object",
      properties: {
        conversation_id: {
          type: "string",
          description: "The session ID to get image history for",
        },
      },
      required: ["conversation_id"],
    },
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It implies a read-only operation ('Get the list') but does not specify permissions, rate limits, pagination, or what 'session' entails. This is inadequate for a tool that likely interacts with session data, leaving key behavioral traits undisclosed.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that directly states the tool's function without unnecessary words. It is front-loaded and appropriately sized, making it easy to parse quickly.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the lack of annotations and output schema, the description is incomplete. It does not explain what the returned list contains (e.g., image metadata, URLs), how it's structured, or any error conditions. For a tool that retrieves historical data, this leaves significant gaps in understanding its full context.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 100% description coverage, with the parameter 'conversation_id' documented as 'The session ID to get image history for'. The description adds no additional meaning beyond this, such as format examples or constraints, so it meets the baseline for high schema coverage without compensating value.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Get the list') and resource ('generated/edited images in a session'), making the purpose understandable. However, it does not explicitly differentiate from sibling tools like 'gemini_generate_image' or 'gemini_edit_image', which might handle similar image-related operations but with different functions.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives, such as how it relates to sibling tools like 'gemini_generate_image' or 'clear_conversation'. It mentions 'for reference' but lacks explicit context, prerequisites, or exclusions, leaving usage unclear.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

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/pistachiomatt/nanobanana-mcp'

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