MCP Catalogs
Home

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
Score3677
Official
Categories
SearchAI / LLM ToolsDeveloper Tools
File SystemDeveloper ToolsProductivity
LanguageTypeScriptTypeScript
Last commit17 mo agothis 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 claude

Manual Installation

  1. Install dependencies:

``bash npm install ``

  1. Build the server:

``bash npm run build ``

  1. 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.

Comparison generated from public README + GitHub signals. Last updated automatically.