Skip to main content
Glama

notion_create_database_from_template

Copy a template database's schema to create a new Notion database under a specified parent page with your chosen title.

Instructions

Create a new database by copying schema from a template database

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
titleYesTitle for the new database
parentYesParent page for the new database
template_database_idYesID of the template database to copy schema from

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.6.1

TDQS

B3.2/5.0
Behavior3/5

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

With no annotations, the description carries the full burden, but it does add one genuinely useful behavioral fact: only the schema is copied, not the template's rows. It is silent on permissions, whether views/properties are preserved, and reversibility of the mutation.

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?

A single front-loaded sentence with no filler; the schema-copying scope is stated immediately. It is minimal but nothing is wasted.

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

Completeness3/5

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

For a mutating, no-annotation, no-output-schema tool, the description is thin: it omits permission requirements, whether the resulting database inherits views/properties, and what a caller should expect back. The schema-only clarification is the main compensating detail.

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 all three parameters (title, parent, template_database_id) are already documented in the schema. The description adds no syntax, format, or constraint details beyond that, so the baseline 3 applies.

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?

Clear specific verb+resource: 'Create a new database by copying schema from a template database'. The 'from template' qualifier distinguishes it in spirit from notion_create_database and notion_duplicate_database, though no sibling is named explicitly.

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 on when to choose this over notion_create_database (blank database) or notion_duplicate_database (copy an existing one with content). The agent must infer the distinction from the name alone.

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