filesystem vs titanmind-whatsapp-mcp
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | titanmind-whatsapp-mcp by TitanmindAGI | |
|---|---|---|
| Stars | ★ 85,748 | ★ 18 |
| 30d uses | — | — |
| Score | 77 | 37 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | CommunicationAI / LLM ToolsProductivity |
| Language | TypeScript | Python |
| Last commit | this month | 10 mo ago |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
titanmind-whatsapp-mcp · Summary
WhatsApp marketing and messaging MCP server using Titanmind for conversation management and template-based messaging.
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
titanmind-whatsapp-mcp · Use cases
- Automated customer support through WhatsApp conversations
- Marketing campaigns using approved message templates
- Bulk messaging to customer lists with country-specific formatting
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.
titanmind-whatsapp-mcp · Install
Installation
Prerequisites:
- Python 3.10 or higher
- API Key and Business Code from Titanmind
Using pipx:
# Install pipx
brew install pipx # macOS
sudo apt install pipx # Ubuntu/Debian
# Install Titanmind WhatsApp MCP
pipx install titanmind-whatsapp-mcp
pipx ensurepathClaude Desktop Configuration
Add to Claude Desktop config.json:
{
"mcpServers": {
"TitanMindMCP": {
"command": "npx",
"args": [
"mcp-remote",
"https://mcp.titanmind.so/whatsapp/mcp/",
"--header",
"api-key:XXXXXXXXXXXXXXXXXXXXXXX",
"--header",
"bus-code:XXXXXX"
]
}
}
}