workflows-mcp-server vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
workflows-mcp-server by cyanheads | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 31 | ★ 85,748 |
| 30d uses | — | — |
| Score | 41 | 77 |
| Official | — | ✓ |
| Categories | ProductivityDeveloper ToolsAI / LLM Tools | File SystemDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 10 mo ago | this month |
workflows-mcp-server · Summary
MCP server that enables AI agents to discover, create, and execute complex workflows defined in YAML files.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
workflows-mcp-server · Use cases
- Automating complex multi-step processes by defining them as reusable workflows
- Improving agent reliability by providing structured plans for complex tasks
- Dynamically guiding agent behavior with global instructions across all workflows
filesystem · Use cases
- Enable AI models to read and write project files during development
- Allow Claude or other MCP clients to browse and analyze codebases
- Provide secure sandboxed access to specific directories for content generation
workflows-mcp-server · Install
Installation
Prerequisites
- Node.js (>=20.0.0)
- npm (comes with Node.js)
MCP Client Settings
Add the following to your MCP client's configuration file (e.g., cline_mcp_settings.json):
{
"mcpServers": {
"workflows-mcp-server": {
"command": "npx",
"args": ["workflows-mcp-server"],
"env": {
"MCP_LOG_LEVEL": "info"
}
}
}
}Manual Installation
npm install workflows-mcp-server
npm run build
npm startfilesystem · Install
Installation
Using NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}Using Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code Extension
Click the installation buttons in the README to install directly in VS Code.