Skip to main content
Glama

Create project

project_create

Create a project from a template. Returns a stable liveUrl for signed-in users to watch job progress and completed previews, plus a durable job handle. Share the returned liveUrl with the user immediately as a clickable Markdown link in a progress message, before waiting for initialization or building the scene. Use the exact returned URL and mention that sign-in is required. Do not wait until the final render; an empty project shows progress before its first preview exists. Poll job_get — the first immutable revision exists once the job completes. template=empty skips preview generation by default, because an empty scene's preview is a 132-byte GLB of nothing and a blank thumbnail; generatePreview overrides that in either direction.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesHuman-readable name for the new project.
templateNoInitial scene template; empty starts without geometry.empty
idempotencyKeyYesStable caller-chosen key for safe retries of this same request.
generatePreviewNoRender the preview GLB and 384px thumbnail for the first revision. Defaults to TRUE for templates that place geometry or lights and FALSE for template=empty, whose preview is a 132-byte GLB of nothing plus a blank thumbnail. Pass it explicitly to override either default.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
jobYes
liveUrlYesStable project preview page. Share this URL with the user immediately as a clickable link; requires sign-in and organization membership.
projectIdYesStable project ID returned by project_create or projects_list.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.8/5.0
Behavior5/5

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

The description discloses asynchronous behavior (returns a job handle), the need to share the URL before waiting, the polling requirement, and the default preview behavior for empty templates. Since annotations are all false (no readOnly, idempotent, etc.), this fills the gap with essential behavioral context.

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

Conciseness4/5

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

The description is longer than typical but each sentence contributes value, starting with the core action, then returns, usage instructions, and template specifics. It is logically structured and front-loaded with the primary purpose.

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

Completeness5/5

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

For a tool with async job creation, liveUrl, and preview generation, the description covers all necessary context: how to use the URL, polling, and template edge cases. The output schema likely handles return structure, and the description leaves no major gaps for correct invocation.

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

Parameters4/5

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

Schema coverage is 100%, so the baseline is 3, but the description adds meaningful context beyond the schema: it explains that template=empty skips preview by default and that generatePreview overrides it, adding nuance not present in the schema's property descriptions.

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

Purpose5/5

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

The description opens with 'Create a project from a template', clearly stating the verb and resource. It then details the return values (liveUrl, job handle) and distinguishes from sibling tools like project_update or project_delete by focusing on creation from a template.

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

Usage Guidelines5/5

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

Provides explicit post-call instructions: share the liveUrl immediately as a Markdown link, mention sign-in, poll job_get, and explains when to expect the first revision. It also clarifies the template=empty behavior and how generatePreview overrides it, giving an agent clear guidance on when and how to use the tool.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources