filesystem vs mcp-server-pipecd
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | mcp-server-pipecd by Warashi | |
|---|---|---|
| Stars | ★ 85,748 | ★ 4 |
| 30d uses | — | — |
| Score | 77 | 36 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | Developer ToolsOps & InfraProductivity |
| Language | TypeScript | Go |
| Last commit | this month | 2 mo ago |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
mcp-server-pipecd · Summary
MCP server for PipeCD, a continuous deployment platform, providing application management through the Model Context Protocol.
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
mcp-server-pipecd · Use cases
- Managing PipeCD deployments through Claude Desktop
- Automating application lifecycle with MCP tools
- Integrating PipeCD with AI assistants for deployment management
filesystem · 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.
mcp-server-pipecd · Install
Installation
- Install with Go:
go install github.com/Warashi/mcp-server-pipecd@latest- Configure Claude Desktop:
Add the following to your Claude Desktop configuration JSON:
{
"mcpServers": {
"pipecd": {
"command": "/Users/youruser/go/bin/mcp-server-pipecd",
"args": [],
"env": {
"PIPECD_HOST": "your.pipecd.domain:443",
"PIPECD_API_KEY_FILE": "/path/to/your/api_key",
"PIPECD_INSECURE": "false"
}
}
}
}