MCP Catalogs
Home

visa-mcp vs filesystem

Side-by-side comparison to help you pick between these two MCP servers.

visa-mcp
by byigitt
filesystem
by modelcontextprotocol
Stars★ 9★ 85,748
30d uses
Score3877
Official
Categories
ProductivityCommunicationOther
File SystemDeveloper ToolsProductivity
LanguageTypeScriptTypeScript
Last commit11 mo agothis month

visa-mcp · Summary

MCP server for querying Schengen visa appointment status through multiple filter options.

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

visa-mcp · Use cases

  • Travel agents checking visa appointment availability for clients
  • Individuals tracking Schengen visa application status
  • Consular staff monitoring visa appointment system availability

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

visa-mcp · Install

Installation

**NPM (recommended)**

npx -y visa-mcp --stdio

**Claude Desktop** Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "visa-mcp": {
      "command": "npx",
      "args": ["-y", "visa-mcp", "--stdio"]
    }
  }
}

**Cursor** Add to your ~/.cursor/mcp.json:

{
  "mcpServers": {
    "visa-mcp": {
      "command": "npx",
      "args": ["-y", "visa-mcp", "--stdio"]
    }
  }
}

**VS Code** Add to your VS Code MCP configuration:

"mcp": {
  "servers": {
    "visa-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "visa-mcp", "--stdio"]
    }
  }
}

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.