Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| WORKFLOWY_API_KEY | Yes | Your WorkFlowy API key from https://beta.workflowy.com/api-key | |
| WORKFLOWY_API_URL | No | The WorkFlowy API URL | https://workflowy.com/api/v1 |
| WORKFLOWY_MAX_RETRIES | No | Maximum number of retries for failed requests | 3 |
| WORKFLOWY_REQUEST_TIMEOUT | No | Request timeout in seconds | 30 |
| WORKFLOWY_RATE_LIMIT_WINDOW | No | Rate limit window in seconds | 60 |
| WORKFLOWY_RATE_LIMIT_REQUESTS | No | Number of requests allowed per rate limit window | 60 |
Schema
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| workflowy_outline | The complete WorkFlowy outline structure |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| workflowy_create_node | Create a new node in WorkFlowy |
| workflowy_update_node | Update an existing WorkFlowy node |
| workflowy_get_node | Retrieve a specific WorkFlowy node by ID |
| workflowy_list_nodes | List WorkFlowy nodes (omit parent_id for root) |
| workflowy_delete_node | Delete a WorkFlowy node and all its children |
| workflowy_complete_node | Mark a WorkFlowy node as completed |
| workflowy_uncomplete_node | Mark a WorkFlowy node as not completed |