MCP Catalogs
首页

visa-mcp

by byigitt·9·综合分 38

MCP 服务器用于查询申根签证预约状态,提供多种筛选选项。

productivitycommunicationother
3
Forks
3
活跃 Issue
11 个月前
最近提交
2 天前
收录于

概述

visa-mcp 服务器是一个专门的 MCP 实现,通过 visasbot.com API 提供签证预约信息访问。它提供多种工具,可根据国家代码、状态、任务代码、签证类别、签证类型和申请中心筛选签证数据。该服务器结构清晰,文档完善,支持多种安装方法,包括 npx、Docker 以及直接集成与 Claude Desktop、Cursor 和 VS Code 等 MCP 客户端。

试试问 AI

装完之后,这里有 5 个你可以让 AI 做的事:

:旅行社为客户检查签证预约可用性
:个人追踪申根签证申请状态
:领事馆工作人员监控签证预约系统可用性
:这个服务器的 API 来源是什么?
:签证数据多久更新一次?

什么时候选它

当您需要快速获取申根签证预约状态并有特定需求按国家、状态、任务或申请中心筛选签证时,选择此服务器。

什么时候不要选它

如果您需要超越状态检查的签证预约管理功能,或visasbot.com API不涵盖您需要的特定签证类型,请不要选择此服务器。

此 server 暴露的工具

从 README 抽取出 7 个工具
  • list_visaslist_visas(country_code?, visa_category?, visa_type?, center?, status?)

    Lists all visa information with filtering options by various parameters

  • get_visas_by_country_codeget_visas_by_country_code(country_code: string)

    Gets visas for a specific country code

  • get_visas_by_statusget_visas_by_status(status: string)

    Gets visas filtered by status

  • get_visas_by_mission_codeget_visas_by_mission_code(mission_code: string)

    Gets visas for a specific mission code

  • get_visas_by_visa_categoryget_visas_by_visa_category(visa_category: string)

    Gets visas filtered by visa category

  • get_visas_by_visa_typeget_visas_by_visa_type(visa_type: string)

    Gets visas filtered by visa type

  • get_visas_by_centerget_visas_by_center(center: string)

    Gets visas for a specific application center

可对比工具

schengen-mcpconsular-toolsgov-api-mcp

安装

安装

**NPM (推荐)**

npx -y visa-mcp --stdio

**Claude Desktop** 添加到您的 claude_desktop_config.json

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

**Cursor** 添加到您的 ~/.cursor/mcp.json

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

**VS Code** 添加到您的 VS Code MCP 配置:

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

FAQ

这个服务器的 API 来源是什么?
服务器使用 https://api.visasbot.com/api/visa/list API 获取签证预约信息。
签证数据多久更新一次?
README 未指定更新频率。数据新鲜度取决于底层的 visasbot.com API。

visa-mcp 对比

GitHub →

最后更新于 · 由 README + GitHub 公开数据自动生成。