streamable-httpupdated 1mo ago
A Model Context Protocol (MCP) server that enables AI agents (Claude Code, Cursor, Windsurf) to look up Chinese phone number carrier and location information.
What can you do with China Phone MCP?
China Phone MCP Server
A Model Context Protocol (MCP) server that enables AI agents (Claude Code, Cursor, Windsurf) to look up Chinese phone number carrier and location information.
What it does
Given an 11-digit Chinese mobile number, returns:
- Carrier: China Mobile / China Unicom / China Telecom / China Broadnet
- Location: Province, city, area code, postal code, region code
- Number type: Mobile or landline
- Prefix validity: Based on MIIT official allocation tables
Tools
| Tool | Description |
|---|---|
lookup_china_phone |
Full attribution lookup with all fields |
get_china_phone_info |
Detailed carrier + geographic info |
Data Source
Official MIIT (Ministry of Industry and Information Technology) public number allocation tables, updated monthly. No carrier networks accessed. No personal data collected.
Quick Start
Install in Claude Code
claude mcp add china-phone https://china-phone-mcp.vercel.app/api/index
Use with Cursor
Add to your Cursor MCP config:
{
"mcpServers": {
"china-phone": {
"url": "https://china-phone-mcp.vercel.app/api/index"
}
}
}
Run locally
pip install -r requirements.txt
export RAPIDAPI_KEY=your_key_here
python server.py
Deployment
Deploy to Vercel with one click, or run on any Python host.
Set the environment variable RAPIDAPI_KEY in your deployment.
Pricing
The underlying API has a free tier (1,000 requests/day). Paid plans start at $14.99/month for 100,000 requests/month.
License
MIT
Install
Add China Phone MCP to your client. Pick the one you use.
claude mcp add --transport http china-phone-mcp https://china-phone-mcp.vercel.app/api/indexcodex mcp add china-phone-mcp --url https://china-phone-mcp.vercel.app/api/index{
"mcpServers": {
"china-phone-mcp": {
"url": "https://china-phone-mcp.vercel.app/api/index"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"china-phone-mcp": {
"type": "http",
"url": "https://china-phone-mcp.vercel.app/api/index"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"china-phone-mcp": {
"url": "https://china-phone-mcp.vercel.app/api/index"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"china-phone-mcp": {
"serverUrl": "https://china-phone-mcp.vercel.app/api/index"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
2 tools
China Phone MCP exposes 2 tools to a connected agent.
- lookup_china_phone
- Full attribution lookup with all fields
- get_china_phone_info
- Detailed carrier + geographic info
Score
60 / 100
Good
- Documentation22/25
- Maintenance16/25
- Trust6/20
- Capability4/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 49 days ago
- Has a release history
- Repository is not archived
- No licence detected
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 2 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 1.0.0Latest | Jul 14, 2026 |