Connect Your AI Agent with WorkFlowy for Slack

Integrate WorkFlowy MCP server into your Slack workspace for instant access to your AI agent.

No credit card neededOr, book a demo
Documentation
Back to MCP Servers
WorkFlowy
WorkFlowy
Simpler way to organize your work

Categories

Productivity

Available Tools

Tools that your AI agent can use through this MCP server to interact with WorkFlowy

Update Node

Updates an existing WorkFlowy node's name, note, and/or layout mode (POST /api/v1/nodes/:id). Run Search Nodes first to obtain the target node ID. At least one of name, note, or layout mode must be provided. Note that the update endpoint only returns a status, not the full updated node. See the documentation.

Search Nodes

Searches all WorkFlowy nodes by keyword. WorkFlowy has no dedicated search endpoint, so this exports all nodes (GET /api/v1/nodes-export) and filters client-side by matching the query against each node's name and note. Use this to discover node IDs before running Create Node (as a parent) or Update Node. Note: the export endpoint is rate limited to 1 request per minute. Returns matching nodes with their IDs and content. See the documentation.

Create Node

Creates a new bullet node in WorkFlowy via the beta API (POST /api/v1/nodes). Use this to add a top-level node or a child under an existing parent. To create a child node, first run Search Nodes to obtain a valid parent node ID and pass it as parentNodeId. Returns the newly created node's ID. See the documentation.