Awesome MCP China
A collection of MCP servers for mainland China services. 支持 MCP 的国内服务一览。
What is Awesome MCP China?
Awesome MCP China is a Model Context Protocol (MCP) server that allows AI assistants like Claude, Cursor, and VS Code to collection of mcp servers for mainland china services. 支持 mcp 的国内服务一览。
A collection of MCP servers for mainland China services. 支持 MCP 的国内服务一览。
This server falls under the Developer Tools category on MCPgee, the world's largest MCP server directory with 33,000+ servers.
Features
- A collection of MCP servers for mainland China services. 支持
Use Cases
Maintainer
Works with
Installation
Manual Installation
npx awesome-mcp-server-cnConfiguration
Configuration Details
claude_desktop_config.json
Performance
Response Metrics
Resource Usage
How to Set Up and Use Awesome MCP China
Awesome MCP Server CN is a curated reference collection of MCP servers built for mainland China internet services, aggregating community-built integrations for platforms like AutoNavi Maps (高德地图), Tencent Maps (腾讯地图), Baidu Maps (百度地图), Caiyun Weather (彩云天气), Qiniu Cloud (七牛云), Yuque (语雀), Bilibili, Alibaba Cloud, and more. It is a directory and link aggregator rather than a runnable server itself — developers use it to discover which Chinese services have MCP integrations and where to find them, then install the individual servers from their own repositories.
Prerequisites
- A GitHub account to browse and fork the repository
- Node.js, Python, or the runtime required by whichever individual MCP server you choose to install
- An MCP-compatible client such as Claude Desktop or Cursor
- Accounts or API keys for the specific Chinese services you want to integrate (e.g. AutoNavi API key for map tools)
Browse the collection
Visit the repository on GitHub to see the full list of available MCP servers for Chinese services. Each entry links to the server's own repository.
# Open in browser:
https://github.com/LeslieLeung/awesome-mcp-server-cnChoose a service to integrate
Select the Chinese service you need — for example, AutoNavi Maps for location/navigation, Caiyun Weather for forecasts, Bilibili for video platform access, or Yuque for knowledge base management — and follow the link to its repository.
Install the chosen server
Follow the installation instructions in the individual server's repository. Most Python-based servers use uv or pip; most Node.js servers use npm or npx. As an example, the Caiyun Weather MCP server is installed from its own GitHub repo.
# Example: installing the Caiyun Weather MCP server
git clone https://github.com/caiyunapp/mcp-caiyun-weather.git
cd mcp-caiyun-weather
pip install -e .Obtain API credentials for the service
Each Chinese service requires its own API key or access token. Register a developer account on the service's platform (e.g. lbs.amap.com for AutoNavi, or the Caiyun developer portal) and copy your key.
Configure your MCP client
Add the chosen server to your MCP client's configuration with its required credentials. The exact configuration block varies by server — refer to the server's own README for the correct command, args, and env vars.
{
"mcpServers": {
"your-chosen-server": {
"command": "python",
"args": ["-m", "your_server_module"],
"env": {
"API_KEY": "your-api-key-here"
}
}
}
}Awesome MCP China Examples
Example configuration (AutoNavi Maps MCP server)
AutoNavi (高德地图) is one of the listed services. This shows a representative configuration — refer to lbs.amap.com/api/mcp-server for the official setup guide and actual parameter names.
{
"mcpServers": {
"amap": {
"command": "npx",
"args": ["-y", "@amap/mcp-server"],
"env": {
"AMAP_API_KEY": "your-amap-api-key"
}
}
}
}Prompts to try
Once you have installed one or more servers from the collection, these are representative prompts for common Chinese services.
- "Navigate from Zhongguancun to the Forbidden City and show me the route"
- "What is tomorrow's weather forecast for Shanghai?"
- "Search Bilibili for videos about machine learning fundamentals"
- "List my recent documents in Yuque"
- "Upload this file to Qiniu Cloud storage"Troubleshooting Awesome MCP China
A listed server link is broken or the repository no longer exists
The awesome-mcp-server-cn list is community-maintained and updated periodically (last updated 2025-04-30). If a link is broken, check the awesome-mcp-servers main list (github.com/punkpeye/awesome-mcp-servers) or Awesome-MCP-ZH (github.com/yzfly/Awesome-MCP-ZH) for an alternative or updated link.
Chinese service API keys are not accepted by the MCP server
Most Chinese service APIs require registering as a developer on the platform's Chinese-language developer portal and agreeing to their terms. Ensure your API key is for the correct product tier (some services have separate keys for different API versions or quotas).
The MCP server for a Chinese service connects but returns no data
Many Chinese service APIs are region-restricted and may block requests from non-China IP addresses. If you are testing from outside mainland China, you may need a VPN or server located in China. Check the individual server's README for any region notes.
Frequently Asked Questions about Awesome MCP China
What is Awesome MCP China?
Awesome MCP China is a Model Context Protocol (MCP) server that collection of mcp servers for mainland china services. 支持 mcp 的国内服务一览。 It connects AI assistants to external tools and data sources through a standardized interface.
How do I install Awesome MCP China?
Follow the installation instructions on the Awesome MCP China GitHub repository. Clone the repo, install dependencies, and add the server config to your AI client.
Which AI clients work with Awesome MCP China?
Awesome MCP China works with all major MCP-compatible AI clients including Claude Desktop, Claude Code, Cursor, VS Code (GitHub Copilot), Windsurf, and Cline.
Is Awesome MCP China free to use?
Yes, Awesome MCP China is open source and available under the MIT license. You can use it freely in both personal and commercial projects.
Awesome MCP China Alternatives — Similar Developer Tools Servers
Looking for alternatives to Awesome MCP China? Here are other popular developer tools servers you can use with Claude, Cursor, and VS Code.
Ecc
★ 188.2kThe agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.
Javaguide
★ 155.8kJava 面试 & 后端通用面试指南,覆盖计算机基础、数据库、分布式、高并发、系统设计与 AI 应用开发
Gemini CLI
★ 104.5kA secure MCP server that wraps the Google Gemini CLI, allowing clients to query Gemini models using local OAuth sessions without requiring an API key. It provides tools for model interaction and diagnostics with built-in protection against command in
Awesome MCP Servers
★ 87.3k⭐ Curated list of Model Context Protocol (MCP) servers - tools that extend Claude Desktop, Cursor, Windsurf, and other MCP clients with custom capabilities.
MCP Servers
★ 86.0kModel Context Protocol Servers
CC Switch
★ 77.5kA cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Gemini CLI & Hermes Agent. Only official website: ccswitch.io
Browse More Developer Tools MCP Servers
Explore all developer tools servers available in the MCPgee directory. Each server includes setup guides for Claude, Cursor, and VS Code.
Set Up Awesome MCP China in Your Editor
Choose your AI client for step-by-step setup instructions.
Quick Config Preview
Add this to your claude_desktop_config.json or .cursor/mcp.json
Ready to use Awesome MCP China?
Browse our complete directory of 33,000+ MCP servers, read setup guides for your editor, and start building with the Model Context Protocol.