atlas-mcp-server

by cyanheads
Verified

project_note_add

Add notes to projects for documentation and tracking. Supports both single note creation and bulk operations with optional categorization tags.

Input Schema

NameRequiredDescriptionDefault
modeYes'single' for one note, 'bulk' for multiple notes.
notesNoRequired for bulk mode: Array of 1-100 notes, each with content and optional tags.
projectIdYesProject ID to add notes to (must start with 'proj_').
tagsNoOptional tags for categorization.
textNoRequired for single mode: Note content.

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "mode": { "description": "'single' for one note, 'bulk' for multiple notes.", "enum": [ "single", "bulk" ], "type": "string" }, "notes": { "description": "Required for bulk mode: Array of 1-100 notes, each with content and optional tags.", "items": { "additionalProperties": false, "properties": { "tags": { "description": "Optional tags for categorization (simple strings without spaces).", "items": { "type": "string" }, "type": "array" }, "text": { "description": "Note content (non-empty text).", "minLength": 1, "type": "string" } }, "required": [ "text" ], "type": "object" }, "maxItems": 100, "minItems": 1, "type": "array" }, "projectId": { "description": "Project ID to add notes to (must start with 'proj_').", "type": "string" }, "tags": { "description": "Optional tags for categorization.", "items": { "type": "string" }, "type": "array" }, "text": { "description": "Required for single mode: Note content.", "minLength": 1, "type": "string" } }, "required": [ "mode", "projectId" ], "type": "object" }