The Neural Center for Chinese Local Life Agents
DragonMCP
The Neural Center for Chinese Local Life Agents
English | 简体中文 | 日本語 | 한국어 | Français | Deutsch
Let Claude / DeepSeek / Qwen directly order your takeout, hail a Didi, check high-speed rail tickets, and pay utility bills.
Product Requirements (PRD) • Architecture • Contributing
🌟 What is DragonMCP?
DragonMCP is a Model Context Protocol (MCP) server designed to bridge the gap between AI Agents and local life services in Greater China (Mainland China, Hong Kong) and Asia.
It aims to solve the "last mile" problem between AI Agents and real-world services.
🔥 Live Demo: MTR Real-time Schedule
We have implemented the MTR (Mass Transit Railway) Query Tool as our first MVP. AI Agents can now fetch real-time train schedules directly from MTR's Open API.
Scenario:
User: "When is the next train from Admiralty to Central?"
Agent Response:
"Next Island Line train from Admiralty to Central (towards Kennedy Town):
- Arriving in: 2 min(s) (10:30:00)
- Subsequent trains: 5 min(s) (10:33:00)"
(Try it yourself by connecting DragonMCP to your MCP client!)
🛠️ Supported Services (Beta)
We are actively expanding our support for local services. Below are the currently integrated interfaces (some are mocks/placeholders for development):
| Region | Category | Service | Tool Name | Description | Status |
|---|---|---|---|---|---|
| Greater China | Travel | MTR (HK) | search_mtr_schedule |
Real-time train schedule (Island/Tsuen Wan Line) | ✅ Live |
| Amap (Gaode) | amap_search_poi |
Search for POIs (Restaurants, Hotels, etc.) | ✅ Live | ||
| Amap (Gaode) | amap_walking_direction |
Walking route planning | ✅ Live | ||
| Amap (Gaode) | amap_driving_direction |
Driving route planning (Fastest) | ✅ Live | ||
| Amap (Gaode) | amap_transit_direction |
Public transit route planning (Integrated) | ✅ Live | ||
| Weather | HK Observatory | hk_weather_current |
Current weather report in Hong Kong | ✅ Live | |
| Travel | Didi | book_taxi_didi |
Estimate price and book a ride | 🚧 Mock | |
| Payment | WeChat Pay | wechat_pay_create |
Create payment order | 🚧 Mock | |
| Alipay | alipay_pay_create |
Create payment order | 🚧 Mock | ||
| Lifestyle | Meituan | meituan_search_food |
Search for food delivery | 🚧 Mock | |
| Shopping | Taobao | taobao_search_product |
Search for products | 🚧 Mock | |
| Asia Expansion | Travel | Grab (SG/SEA) | book_ride_grab |
Estimate and book a ride | 🚧 Mock |
| Naver Maps (KR) | naver_map_search |
Search for places in Korea | 🚧 Mock | ||
| Payment | LINE Pay (JP/TW) | line_pay_request |
Request a payment | 🚧 Mock |
⚠️ Security & Disclaimer
IMPORTANT: This project includes Mock implementations for sensitive services like payments (WeChat Pay, Alipay) and ride-hailing (Didi).
- Do NOT use real financial data or personal credentials in the current version.
- The payment tools (
wechat_pay_create,alipay_pay_create) currently return fake data for demonstration purposes only. No actual money is transferred. - When integrating real A
Tools (6)
search_mtr_scheduleFetch real-time train schedules for MTR lines in Hong Kong.amap_search_poiSearch for points of interest like restaurants or hotels using Amap.amap_walking_directionGet walking route planning information.amap_driving_directionGet driving route planning information.amap_transit_directionGet public transit route planning information.hk_weather_currentGet the current weather report in Hong Kong.Configuration
{ "mcpServers": { "dragon-mcp": { "command": "npx", "args": ["-y", "dragon-mcp"] } } }