filesystem vs mcp-walichat
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | mcp-walichat by walichat | |
|---|---|---|
| Stars | ★ 85,748 | ★ 1 |
| 30d uses | — | — |
| Score | 77 | 34 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | CommunicationProductivityDeveloper Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | 11 mo ago |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
mcp-walichat · Summary
WhatsApp MCP connector for AI clients to automate messaging, analyze conversations, and manage groups via WaliChat API.
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-walichat · Use cases
- Automate customer service responses through WhatsApp from AI assistants
- Send bulk messages and campaigns to WhatsApp contacts from AI prompts
- Analyze chat conversations for insights and sentiment analysis
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-walichat · Install
Installation
Local Installation
npm install mcp-walichatHTTP Streaming (Recommended)
For clients that support HTTP streaming, add the following configuration:
**Claude Desktop Configuration** Add to your claude_desktop_config.json:
{
"mcpServers": {
"walichat": {
"type": "http",
"url": "https://api.wali.chat/mcp?key=YOUR_WALICHAT_API_KEY"
}
}
}**VS Code Copilot Configuration** In VS Code settings:
{
"mcp.servers": {
"walichat": {
"url": "https://api.wali.chat/mcp?key=YOUR_WALICHAT_API_KEY",
"transport": "http-streaming"
}
}
}