Skip to main content
Glama

Flint Note

by disnet

create_note

Generate single or multiple notes with specified types, titles, content, and metadata. Organize notes in markdown format for efficient AI collaboration, using a structured vault system for storage and retrieval.

Instructions

Create one or more notes of the specified type(s)

Input Schema

NameRequiredDescriptionDefault
contentNoContent of the note in markdown format - only used for single note creation
metadataNoAdditional metadata fields for the note (validated against note type schema) - only used for single note creation
notesNoArray of notes to create - used for batch creation
titleNoTitle of the note - only used for single note creation
typeNoNote type (must exist) - only used for single note creation
vault_idNoOptional vault ID to operate on. If not provided, uses the current active vault.

Input Schema (JSON Schema)

{ "properties": { "content": { "description": "Content of the note in markdown format - only used for single note creation", "type": "string" }, "metadata": { "additionalProperties": true, "description": "Additional metadata fields for the note (validated against note type schema) - only used for single note creation", "type": "object" }, "notes": { "description": "Array of notes to create - used for batch creation", "items": { "properties": { "content": { "description": "Content of the note in markdown format", "type": "string" }, "metadata": { "additionalProperties": true, "description": "Additional metadata fields for the note", "type": "object" }, "title": { "description": "Title of the note", "type": "string" }, "type": { "description": "Note type (must exist)", "type": "string" } }, "required": [ "type", "title", "content" ], "type": "object" }, "type": "array" }, "title": { "description": "Title of the note - only used for single note creation", "type": "string" }, "type": { "description": "Note type (must exist) - only used for single note creation", "type": "string" }, "vault_id": { "description": "Optional vault ID to operate on. If not provided, uses the current active vault.", "type": "string" } }, "required": [], "type": "object" }

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/disnet/flint-note'

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