Skip to main content
Glama

create_image

Turn a URL into a structured image entity for the Geo knowledge graph. Add optional name and description to enrich the record for publishing.

Instructions

Create an image entity from a URL

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYesURL of the image to upload
nameNoName for the image entity
descriptionNoDescription of the image

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.8.0

TDQS

C2.9/5.0
Behavior2/5

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

The description only states that an image entity is created from a URL. It does not disclose whether the URL is fetched at creation time, whether the image is copied/stored, idempotency, or required permissions. The readOnlyHint=false annotation signals mutation, and the description agrees, but it adds little behavioral context beyond that.

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, compact sentence with no filler or redundant content. The core action, resource, and source are front-loaded in an easily parseable form.

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?

For a mutation tool with no output schema and minimal annotations, the description is under-specified. It omits what the agent should expect after invocation, how the URL is processed, and how this specialized creation differs from general entity creation. An agent could call it correctly, but it lacks contextual safeguards or next-step information.

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 already describes all three parameters with 100% coverage, so a baseline of 3 is appropriate. The description adds that the source is a URL, which slightly reinforces the url parameter's purpose, but it does not explain how name or description are used.

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 uses a specific verb and resource: 'Create an image entity from a URL.' This clearly identifies the operation and its input source. It does not explicitly contrast with sibling create_* tools like create_entity, but the 'image entity' resource is distinct enough to avoid major ambiguity.

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?

No guidance is provided about when to use this tool versus alternatives such as create_entity or create_property. There are no conditions, exclusions, or precedents described. An agent must infer usage solely from the tool name and one-line description.

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