Token导航 LogoToken导航TokenDH.com
Yolcu360 MCP Server logo
金融服务未说明官方级别未说明来源级核验

Yolcu360 MCP Server

MCP Server

Yolcu360的MCP服务器,为AI助手提供租车搜索、预订和管理功能。

工具数

16

提示词数

0

GitHub Stars

0

资源数

0
TypeScriptClaude支付处理Claude DesktopClaude

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

作者 / 组织

kiliczsh

提供方

kiliczsh

最后核验

2026/5/17 20:20

快速接入

先看主来源和安装命令,再打开仓库或文档;下面只保留这个条目的关键接入事实。

详细介绍

Yolcu360 MCP服务器

用于Yolcu360汽车租赁API的MCP(模型上下文协议)服务器。使AI助手能够搜索、预订和管理租车预订。

特性

  • 15工具:位置搜索、汽车搜索、订单管理、付款、Findeks信用验证
  • 5资源:汽车类别、燃料类型、变速器类型、交付类型、供应商
  • 2提示:汽车搜索工作流、预订工作流
  • 2运输:HTTP(流式HTTP)和stdio(适用于Claude Desktop)

先决条件

  • 包子 运行时已安装
  • Yolcu360 API证书(密钥和机密)

安装

# Install dependencies
bun install

# Configure environment
cp .env.example .env
# Edit .env with your Yolcu360 API credentials

配置

编辑 .env 文件:

YOLCU360_API_KEY=your-api-key
YOLCU360_API_SECRET=your-api-secret
YOLCU360_API_URL=https://staging.api.pro.yolcu360.com/api/v1
TRANSPORT=http
PORT=3000

运行服务器

HTTP模式(默认)

bun start
# or
bun run start:http

服务器终结点:

  • 健康: http://localhost:3000/health
  • MCP: http://localhost:3000/mcp

stdio模式

bun run start:stdio

可用工具

定位工具

  • search-locations -搜索接送地点
  • get-location-details -获取位置坐标和详细信息

搜索工具

  • search-cars -按坐标和日期搜索可用的租车
  • get-car-extras -获得可用的额外服务(保险、GPS、儿童座椅等)

订购工具

  • create-order -创建新的租赁订单
  • get-order -获取订单详细信息
  • check-cancel-eligibility -检查订单是否可以取消
  • cancel-order -取消订单

支付工具

  • process-payment -处理付款(信用卡或代理信用)
  • get-installment-info -获取卡的分期付款选项

Findeks工具(信用验证)

  • check-findeks-eligibility -检查现有信用状态
  • get-findeks-phones -获取注册电话号码
  • generate-findeks-report -开始生成信用报告
  • confirm-findeks-pin -确认短信PIN
  • renew-findeks-pin -请求新PIN

健康工具

  • check-health -检查API服务状态

可用资源

资源URI描述
汽车类yolcu360://helper-data/car-classes汽车类别(经济型、SUV等)
燃料类型yolcu360://helper-data/fuel-types燃料类型(汽油、柴油等)
传输类型yolcu360://helper-data/transmission-types变速器类型
交货类型yolcu360://helper-data/delivery-types交付选项
供应商yolcu360://helper-data/suppliers汽车租赁供应商

可用提示

提示描述
汽车搜索工作流程搜索租车指南
预订工作流程完成所选汽车的预订流程

Claude桌面集成

添加到您的Claude桌面配置(~/.config/claude/claude_desktop_config.json 在Linux/Mac或 %APPDATA%\Claude\claude_desktop_config.json 在Windows上):

{
  "mcpServers": {
    "yolcu360": {
      "command": "bun",
      "args": ["run", "/path/to/yolcu360-mcp-server/src/index.ts"],
      "env": {
        "YOLCU360_API_KEY": "your-api-key",
        "YOLCU360_API_SECRET": "your-api-secret",
        "TRANSPORT": "stdio"
      }
    }
  }
}

发展

# Run with hot reload
bun dev

# Type check
bun run typecheck

# Run tests
bun test

项目结构

src/
├── index.ts              # Entry point
├── server.ts             # MCP server setup
├── config.ts             # Environment config
├── auth/
│   └── manager.ts        # Token management
├── tools/
│   ├── index.ts          # Tool aggregator
│   ├── health.tools.ts
│   ├── location.tools.ts
│   ├── search.tools.ts
│   ├── order.tools.ts
│   ├── payment.tools.ts
│   └── findeks.tools.ts
├── resources/
│   ├── index.ts
│   └── helper-data.ts
├── prompts/
│   ├── index.ts
│   └── workflows.ts
├── transports/
│   ├── http.ts
│   └── stdio.ts
└── utils/
    └── error-handler.ts

许可证

麻省理工学院

目录标签

目录标签

TypeScriptClaude支付处理租车服务本地部署API协议AI集成信用验证

支持客户端

Claude DesktopClaude

接入字段

传输方式(transport,传输协议)

未说明

鉴权方式(authType,认证方式)

token

工具数量(toolCount,工具数)

16

资源数量(resourceCount,资源数)

0

提示词数量(promptCount,提示词数)

0

权限和风险

未说明token部署方式未说明

接入前请确认传输方式、认证方式和部署位置,并根据实际工具能力限制访问范围。

安装前确认

不要直接授予不必要的文件、网络或账号权限;先核对安装命令和配置内容。

仍需确认:installCommand

来源信息

继续浏览同类 MCP