We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/dahuangbaojian/sms-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
{
"name": "phone-carrier-detector",
"version": "1.0.0",
"description": "MCP server for detecting Chinese mobile phone carriers and locations",
"author": "dahuangbaojian",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dahuangbaojian/sms-mcp-server.git"
},
"homepage": "https://github.com/dahuangbaojian/sms-mcp-server#readme",
"bugs": {
"url": "https://github.com/dahuangbaojian/sms-mcp-server/issues"
},
"keywords": [
"mcp",
"phone",
"carrier",
"detection",
"china",
"mobile",
"telecom",
"location"
],
"engines": {
"python": ">=3.8"
},
"mcpServers": {
"phone-carrier-detector": {
"command": "python",
"args": [
"mcp_server.py"
],
"env": {}
}
},
"features": [
"Chinese mobile carrier detection",
"Phone number location detection",
"Batch phone number processing",
"Real-time database lookup",
"Format validation"
],
"supportedCarriers": [
"China Mobile",
"China Unicom",
"China Telecom",
"China Broadcasting",
"China Tietong"
],
"examples": [
{
"description": "Detect single phone number carrier and location",
"input": {
"phone_number": "13812345678"
},
"output": {
"success": true,
"carrier": "China Mobile",
"province": "江苏",
"city": "连云港"
}
},
{
"description": "Batch detect multiple numbers",
"input": {
"phone_numbers": [
"13812345678",
"18687654321",
"13312345678"
]
},
"output": {
"success": true,
"total": 3,
"results": [
{
"success": true,
"carrier": "China Mobile",
"province": "江苏",
"city": "连云港"
}
]
}
}
]
}