Skip to main content
Glama
cardinalblue

Prompt Book Server

Official
by cardinalblue

copy_prompt

Copy a prompt to a different prompt book by providing its prompt ID and the destination book ID. Reorganize prompts across Notion collections with a single action.

Instructions

Copy a prompt from one book to another

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
prompt_idYesID of the prompt to copy
source_book_idNoID of the source prompt book (optional if using the active book as source)
destination_book_idYesID of the destination prompt book to copy the prompt to

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.5

TDQS

B3.2/5.0
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, yet it only states the core operation. The word 'copy' usefully implies the original is preserved, but the description does not disclose what gets duplicated (tags, types, references), whether a new prompt ID is minted in the destination, conflict behavior, or side effects — significant gaps for a mutation tool.

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?

An eight-word sentence with zero filler; the verb is front-loaded and every word carries meaning. It avoids redundant restatement of the tool name or schema content, making it an efficiently structured definition.

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?

With no annotations and no output schema, the description must supply behavioral context on its own, and it falls short: it doesn't address prerequisites (destination book must exist, active book requirement), copy semantics, or result behavior. For a mutation tool with 3 parameters, this is incomplete even though the parameters themselves are well-documented in the schema.

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% — every parameter already has a clear description, including the active-book fallback for source_book_id — so the baseline is 3. The phrase 'from one book to another' restates the source/destination relationship but adds no parameter-level meaning beyond what the schema already provides.

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?

States a specific verb ('copy') on a specific resource (a prompt) and names the source/destination relationship ('from one book to another'), making the operation unambiguous. None of the 15 sibling tools describe a cross-book duplication operation, so the description inherently distinguishes copy_prompt from add_prompt and update_prompt.

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 gives no guidance on when to choose this tool over add_prompt or update_prompt, and names no exclusions or alternatives. The only usage hint ('optional if using the active book as source') lives in the input schema, not the description, so an agent gets no context about prerequisites or selection criteria.

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