Skip to main content
Glama
jameslundie42

Schedule MCP Server

notion_create_task

Create a task in your Notion database by providing a name, due date, and initial status. Returns the created task's ID and URL.

Instructions

Create a new task in the Notion Tasks database.

Args: params.name: Task name. params.due_date: Optional due date (ISO date string). params.status: Initial status (default: Not started).

Returns: str: JSON dict of the created task including its Notion ID and URL.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
paramsYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observedv0.1.0

TDQS

A4/5.0
Behavior3/5

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

The description communicates that the tool creates a task and returns a JSON dict with Notion ID and URL, which adds return-format context beyond the annotations. However, it does not mention behavior like repeated-call effects, permissions, or failure cases. There is no contradiction with the annotations.

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 compact and front-loaded: one clear one-sentence purpose, followed by a terse Args list and a Returns note. There is no filler or redundancy.

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?

For a simple create operation with a rich input schema and a stated return format, the description covers the essential inputs and output shape. The main gap is lack of explicit guidance on when to choose this over updating an existing task, but the low complexity makes this a minor omission.

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?

The schema-level coverage is effectively 0%, but the Args block compensates by naming all three parameters (name, due_date, status) and their purpose, optionality, and default behavior. This is sufficient for an agent to populate the nested params object correctly, though it adds little beyond the schema's own 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?

Opens with a specific verb and resource: 'Create a new task in the Notion Tasks database.' This clearly distinguishes it from siblings like notion_update_task and notion_create_appointment. The return statement additionally clarifies what object is produced.

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 use for creating new tasks, but it does not explicitly state when to use this tool instead of notion_update_task or another sibling. A phrase like 'use notion_update_task to modify an existing task' would improve guidance. Sibling names make the distinction inferable but not explicit.

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

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/jameslundie42/schedule-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server