filesystem vs kindly-web-search-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | kindly-web-search-mcp-server by Shelpuk-AI-Technology-Consulting | |
|---|---|---|
| Stars | ★ 85,748 | ★ 325 |
| 30d uses | — | — |
| Score | 77 | 50 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | Web ScrapingAI / LLM ToolsDeveloper Tools |
| Language | TypeScript | Python |
| Last commit | this month | 1 mo ago |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
kindly-web-search-mcp-server · Summary
Web search MCP server with robust content retrieval for AI coding tools and agents.
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
kindly-web-search-mcp-server · Use cases
- Improving AI coding assistants by providing complete StackOverflow and GitHub discussions
- Retrieving up-to-date documentation and API references for programming
- Enhancing AI agents with comprehensive web search and content extraction capabilities
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.
kindly-web-search-mcp-server · Install
Installation
- Install
uvx:
curl -LsSf https://astral.sh/uv/install.sh | sh- Install a Chromium-based browser (required for
page_content)
- Set your search API key (Serper, Tavily, or SearXNG)
- Run the MCP server:
uvx --from git+https://github.com/Shelpuk-AI-Technology-Consulting/kindly-web-search-mcp-server \
kindly-web-search-mcp-server start-mcp-serverClaude Desktop Configuration
Add to your config.json:
{
"mcpServers": {
"kindly-web-search": {
"command": "uvx",
"args": ["--from", "git+https://github.com/Shelpuk-AI-Technology-Consulting/kindly-web-search-mcp-server", "kindly-web-search-mcp-server", "start-mcp-server"],
"env": {
"SERPER_API_KEY": "your-serper-key",
"GITHUB_TOKEN": "your-github-token"
}
}
}
}