mcp-servers-kagi vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
mcp-servers-kagi by ac3xx | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 44 | ★ 85,748 |
| 30d uses | — | — |
| Score | 36 | 77 |
| Official | — | ✓ |
| Categories | SearchAI / LLM ToolsDeveloper Tools | File SystemDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 17 mo ago | this month |
mcp-servers-kagi · Summary
A TypeScript MCP server that integrates with Kagi's Search API to provide web search capabilities.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
mcp-servers-kagi · Use cases
- Enable AI assistants to perform web searches using Kagi's API
- Provide real-time information retrieval capabilities for AI models
- Serve as a foundation for extending Kagi's functionality in AI workflows
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-servers-kagi · Install
Installation
Via Smithery
npx @smithery/cli install kagi-server --client claudeManual Installation
- Install dependencies:
``bash npm install ``
- Build the server:
``bash npm run build ``
- Add to Claude Desktop configuration:
{
"mcpServers": {
"kagi-server": {
"command": "/path/to/kagi-server/build/index.js",
"env": {
"KAGI_API_KEY": "your_api_key_here"
}
}
}
}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.