filesystem vs mcp-server-bwt
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | mcp-server-bwt by zizzfizzix | |
|---|---|---|
| Stars | ★ 85,748 | ★ 6 |
| 30d uses | — | — |
| Score | 77 | 34 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | AI / LLM ToolsDeveloper Toolsseo |
| Language | TypeScript | Python |
| Last commit | this month | 13 mo ago |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
mcp-server-bwt · Summary
Python MCP server exposing Bing Webmaster Tools API functionality to AI assistants like Claude.
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-bwt · Use cases
- SEO professionals using Claude to monitor website performance and submit content for indexing
- Developers building AI-powered analytics tools that integrate with Bing Webmaster data
- Content creators optimizing their sites by submitting pages directly through AI assistants
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-bwt · Install
Installation
Using uvx (recommended)
Add to Claude desktop config:
"mcpServers": {
"mcp_server_bwt": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/zizzfizzix/mcp-server-bwt",
"mcp_server_bwt"
]
}
}Using make
- Install dependencies:
make install- Add to Claude desktop config:
"mcpServers": {
"bwtServer": {
"command": "/PATH/TO/mcp-server-bwt/.venv/bin/python",
"args": ["/PATH/TO/mcp-server-bwt/mcp_server_bwt/main.py"],
"env": {
"BING_WEBMASTER_API_KEY": "YOUR_API_KEY_HERE"
}
}
}