by danield137
mcp-workflowy is an MCP server that allows AI assistants to interact with Workflowy lists programmatically.
mcp-workflowy is a Model Context Protocol (MCP) server designed to enable AI models, such as ChatGPT, to interact with Workflowy. It provides an MCP-compatible interface, allowing AI assistants to programmatically read, manipulate, and manage your Workflowy lists.
To use mcp-workflowy, you need Node.js v18 or higher and a Workflowy account. You can install it globally using npm (npm install -g mcp-workflowy
) or run it directly with npx (npx mcp-workflowy server start
). Before starting the server, configure your Workflowy username and password in a .env
file or as environment variables. Once the server is running, connect your AI assistant to it according to your assistant's documentation. The server exposes several tools that your AI assistant can then utilize to interact with Workflowy.
list_nodes
: Retrieve a list of nodes.search_nodes
: Search for nodes by text query.create_node
: Create new nodes.update_node
: Modify existing node text or descriptions.toggle_complete
: Mark nodes as complete or incomplete.mcp-workflowy is particularly useful for automating tasks and enhancing AI assistant capabilities related to project management and note-taking within Workflowy. Example use cases include:
Q: What is MCP? A: The Model Context Protocol (MCP) is a standardized way for AI models to interact with external tools and APIs. This server implements MCP to allow AI assistants (like ChatGPT) to read and manipulate your Workflowy lists through a set of defined tools.
Q: What are the prerequisites for using mcp-workflowy? A: You need Node.js v18 or higher and a Workflowy account.
Q: How do I configure my Workflowy credentials?
A: You can create a .env
file with WORKFLOWY_USERNAME
and WORKFLOWY_PASSWORD
, or provide them as environment variables when running the server.
A Model Context Protocol (MCP) server for interacting with Workflowy. This server provides an MCP-compatible interface to Workflowy, allowing AI assistants to interact with your Workflowy lists programmatically.
The Model Context Protocol (MCP) is a standardized way for AI models to interact with external tools and APIs. This server implements MCP to allow AI assistants (like ChatGPT) to read and manipulate your Workflowy lists through a set of defined tools.
Personally, I use workflowy as my project management tool. Giving my agent access to my notes, and my code base, the following are useful prompts:
# Install the package globally
npm install -g mcp-workflowy
# Or use npx to run it directly
npx mcp-workflowy server start
Create a .env
file in your project directory with the following content:
WORKFLOWY_USERNAME=your_username_here
WORKFLOWY_PASSWORD=your_password_here
Alternatively, you can provide these credentials as environment variables when running the server.
# If installed globally
mcp-workflowy server start
# Using npx
npx mcp-workflowy server start
This MCP server provides the following tools to interact with your Workflowy:
To use this MCP server with AI assistants (like ChatGPT):
Contributions are welcome! Please feel free to submit a Pull Request.
This project is licensed under the MIT License - see the LICENSE file for details.
Please log in to share your review and rating for this MCP.