Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| DYNALIST_API_TOKEN | Yes | Your Dynalist API token (generate at https://dynalist.io/developer) |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| list_documents | List all documents and folders in your Dynalist account |
| search_documents | Search for documents and folders by name. Returns matching items with their ID, title, URL, and type. |
| read_node_as_markdown | Read a Dynalist document or specific node and return it as Markdown. Provide either a URL (with optional #z=nodeId deep link) or file_id + node_id. WARNING: Large documents may return many words - use max_depth to limit. |
| send_to_inbox | Send items to your Dynalist inbox. Supports indented markdown/bullets for hierarchical content. |
| edit_node | Edit an existing node in a Dynalist document |
| insert_node | Insert a new node into a Dynalist document |
| search_in_document | Search for text in a Dynalist document. Returns matching nodes with optional parent context and children. WARNING: Many matches with parents/children can return many words. |
| get_recent_changes | Get nodes created or modified within a time period. WARNING: Long time periods with active documents can return many words. |
| delete_node | Delete a node from a Dynalist document. By default, only the node is deleted and its children move up to the parent. Use include_children=true to delete the node AND all its descendants. |
| move_node | Move a node to a different location in a Dynalist document |
| move_node_relative | Move a node (and all its children) to a new position relative to a reference node. This is the intuitive way to reorganize your outline - just specify where you want the node to go. |
| insert_nodes_from_markdown | Insert multiple nodes from indented markdown/text. Supports both '- bullet' format and plain indented text. Preserves hierarchy. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |