Skip to main content
Glama
tom275275

Google Workspace MCP Server

by tom275275

copy_drive_file

Create a copy of any Google Drive file while preserving all formatting and content. Specify a new name and destination folder to organize the duplicate exactly where needed.

Instructions

Creates a copy of an existing Google Drive file.

This tool copies the template document to a new location with an optional new name. The copy maintains all formatting and content from the original file.

Args: user_google_email (str): The user's Google email address. Required. file_id (str): The ID of the file to copy. Required. new_name (Optional[str]): New name for the copied file. If not provided, uses "Copy of [original name]". parent_folder_id (str): The ID of the folder where the copy should be created. Defaults to 'root' (My Drive).

Returns: str: Confirmation message with details of the copied file and its link.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
file_idYes
new_nameNo
parent_folder_idNoroot
user_google_emailYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.14.3

TDQS

A4.3/5.0
Behavior4/5

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

With no annotations provided, the description carries the behavioral disclosure burden. It explains that the copy maintains formatting and content, defaults the new name to 'Copy of [original name]', and defaults the destination to root. It also describes the return value. It does not mention permission requirements for the source file, but the core behavior is transparent.

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 well-organized with a summary, a brief explanatory sentence, an Args list, and a Returns section. The first two sentences are slightly redundant ('Creates a copy' vs 'copies the template document'), but overall the structure is clear and front-loaded.

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?

The description provides all information an agent needs to invoke the tool correctly: the action, parameter semantics with defaults, and return format. The topic is a simple copy operation, and no critical details are missing.

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

Parameters5/5

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

Schema description coverage is 0%, so the description must compensate, and it does. The Args section explains all four parameters, including the optional nature of new_name with its fallback behavior, and the default value of parent_folder_id. This adds significant meaning beyond the bare schema types.

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 a specific verb and resource: 'Creates a copy of an existing Google Drive file.' This clearly distinguishes it from siblings like create_drive_file (which creates from scratch) and update_drive_file (which modifies existing files).

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

Usage Guidelines3/5

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

The description implies the tool is for duplicating a file when you want to preserve formatting and content while placing it in a new location. However, it does not explicitly state when to prefer this over alternatives such as create_drive_file, nor does it mention exclusions or prerequisites.

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

Deploy Server

Other Tools