Workflowy MCP Server
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Workflowy MCP Serverlist my inbox items"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Workflowy MCP Server
Workflowy MCP Server for Nanobot - 讓 nanobot 可以透過 Model Context Protocol 操作 Workflowy。
功能
list_targets- 列出所有可用的 targets (inbox, home 等)list_nodes- 列出指定 parent 的子節點get_node- 取得單一節點的詳細資訊create_node- 建立新節點update_node- 更新節點內容delete_node- 刪除節點move_node- 移動節點到新的父節點complete_node- 標記節點為完成uncomplete_node- 取消節點的完成狀態export_all_nodes- 匯出所有節點
Related MCP server: ClickUp Multi-Workspace MCP Server
安裝
# 使用 uvx 直接執行
uvx workflowy-mcp
# 或先安裝後使用
pip install workflowy-mcp
workflowy-mcp
# nanobot 使用特定的虛擬環境,先啟動該 venv,然後執行: (推薦)
source /path/to/nanobot-venv/bin/activate
pip install /home/user/workspace/workflowy-mcp
設定
1. 取得 Workflowy API Key
前往 https://workflowy.com/api-key 取得 API Key。
2. 設定 nanobot config
在 nanobot 的設定檔中加入:
{
"tools": {
"mcpServers": {
"workflowy": {
"command": "uvx",
"args": ["workflowy-mcp"],
"env": {
"WORKFLOWY_API_KEY": "your-api-key",
"WORKFLOWY_DEFAULT_PARENT": "home"
}
}
}
}
}環境變數
變數 | 說明 | 必填 | 預設 |
| Workflowy API Key | 是 | - |
| 預設 parent_id | 否 | inbox |
使用方式
nanobot 啟動後,LLM 可以使用以下 tools:
mcp_workflowy_list_targets - 列出所有 targets
mcp_workflowy_list_nodes - 列出子節點 (parent_id 預設為 inbox)
mcp_workflowy_get_node - 取得節點詳情
mcp_workflowy_create_node - 建立新節點
mcp_workflowy_update_node - 更新節點
mcp_workflowy_delete_node - 刪除節點
mcp_workflowy_move_node - 移動節點
mcp_workflowy_complete_node - 標記完成
mcp_workflowy_uncomplete_node - 取消完成
mcp_workflowy_export_all_nodes - 匯出所有節點範例
# 在 inbox 建立新任務
mcp_workflowy_create_node(
parent_id="inbox",
name="每週回顧",
note="每週五下午進行",
layout_mode="todo"
)
# 列出 inbox 的內容
mcp_workflowy_list_nodes(parent_id="inbox")
# 移動節點到 home
mcp_workflowy_move_node(
id="xxx-xxx-xxx",
parent_id="home",
position="top"
)parent_id 可用值
"inbox"- 預設的收件匣"home"- 預設的首頁"None"- 頂層節點UUID - 任意節點的 ID
開發
# 安裝開發依賴
pip install -e ".[dev]"
# 執行
python -m workflowy_mcp
# 測試
pytestLicense
MIT
This server cannot be deployed
Maintenance
Related MCP Connectors
A Model Context Protocol server for Wix AI tools
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
Manage Superlist tasks and lists in plain language from any MCP-compatible AI agent.
Model Context Protocol server for todo.vu task management and time tracking.
Related MCP Servers
- AlicenseNot gradedqualityAmaintenanceEnables interaction between LLMs and Obsidian vaults through the Model Context Protocol, supporting secure file operations, content management, and advanced search capabilities.6,218 npm682Apache 2.0
- AlicenseNot gradedqualityCmaintenanceEnables AI agents to interact with tasks, spaces, lists, and folders across multiple ClickUp workspaces via the Model Context Protocol.13 npm1MIT
- AlicenseNot gradedqualityDmaintenanceEnables management of n8n workflows directly within LLMs through the Model Context Protocol, including listing, executing, and monitoring workflows.51 npm18ISC
- FlicenseNot gradedqualityDmaintenanceEnables AI agents to interact with ClickUp tasks, spaces, lists, and folders through the Model Context Protocol, supporting task creation, updates, moves, duplicates, and workspace organization.14,449 npm-