filesystem vs welink
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | welink by runzhliu | |
|---|---|---|
| Stars | ★ 85,748 | ★ 142 |
| 30d uses | — | — |
| Score | 77 | 48 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | AI / LLM ToolsCommunicationDeveloper Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
welink · Summary
WeLink is an AI-powered platform for analyzing WeChat chat data, featuring MCP server integration for direct querying in Claude Code.
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
welink · Use cases
- Query chat history directly in Claude Code using natural language questions
- Analyze relationship dynamics and communication patterns with contacts
- Create AI clones of contacts for simulated conversations based on their chat style
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.
welink · Install
Installation
- Clone the repository:
git clone https://github.com/runzhliu/welink.git - Follow the installation instructions in the README for Docker, Windows, or macOS
- Configure your WeChat data export
- Set up MCP server by following instructions in
mcp-server/README.md - Add to Claude Desktop configuration:
{
"mcpServers": {
"welink": {
"command": "node",
"args": ["path/to/welink/mcp-server/index.js"]
}
}
}