visa-mcp vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
visa-mcp by byigitt | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 9 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 38 | 77 |
| 官方 | — | ✓ |
| 分类 | 效率工具沟通协作其它 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 11 个月前 | 本月 |
visa-mcp · 概述
MCP 服务器用于查询申根签证预约状态,提供多种筛选选项。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
visa-mcp · 使用场景
- 旅行社为客户检查签证预约可用性
- 个人追踪申根签证申请状态
- 领事馆工作人员监控签证预约系统可用性
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
visa-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"]
}
}
}everything · 安装
NPX(推荐)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}Windows 用户请使用 cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}全局安装
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything