Skip to main content
Glama
flafkus
by flafkus

duplicate_project

Copy an Overleaf project by providing its ID or exact name and a new name. Receive the new project's ID and editor URL for immediate access.

Instructions

Duplicate an Overleaf project. Returns the new id and editor URL.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesName for the copied project
projectYesSource project id (24-char hex) or exact name

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.6/5.0
Behavior3/5

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

Annotations already indicate this is not read-only, not idempotent, and not destructive. The description adds the return information but does not disclose additional behavioral details such as whether all files are copied or whether the original remains untouched. However, destructiveHint=false helps cover the safety profile, so the description is adequate but not rich.

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 concise sentence that front-loads the action and includes the key outcome. There is no filler, redundancy, or unnecessary detail.

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

Completeness4/5

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

Given the low complexity, full schema coverage, present annotations, and available output schema, the description covers the essential action and return values. It falls slightly short of complete because it does not provide usage guidance or explicit confirmation of behavior beyond the duplication itself.

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?

Schema description coverage is 100%, so both parameters are already documented with meaningful descriptions. The tool description adds no further parameter-level semantics beyond what the schema provides, so the baseline score of 3 is appropriate.

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 clearly states a specific action ('Duplicate') applied to a specific resource ('an Overleaf project') and names the result ('the new id and editor URL'). This distinguishes it from sibling tools like create_project by implying duplication of an existing project.

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 explicit guidance on when to use this tool versus alternatives such as create_project. The intended usage is inferable from the name and description, but there are no stated conditions, prerequisites, or exclusions.

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