add mcp servers (#2076)

This commit is contained in:
澄潭
2025-04-16 14:48:53 +08:00
committed by GitHub
parent 4f0834d817
commit 8cce7f5d50
150 changed files with 34544 additions and 3 deletions

View File

@@ -0,0 +1,165 @@
{
"info": {
"description": "通过地区,景点名称等关键字查询景点信息,包括地址,坐标,景点类型,级别,建议游玩时间,电话,网站,开放时间等信息。——阿里云认证的金牌服务商",
"title": "全国旅游景点信息查询-景区位置数据",
"version": "1.0.0"
},
"openapi": "3.0.1",
"paths": {
"/lianzhuo/scenicspot": {
"get": {
"operationId": "景点信息查询",
"summary": "通过,地区,景点名称等关键字查询景点信息,包括简介,地址,坐标,景点类型,级别,建议游玩时间,电话,网站,开放时间,门票价格等信息",
"parameters": [
{
"description": "省",
"example": "山东",
"in": "query",
"name": "province",
"required": false,
"schema": {
"type": "string"
}
},
{
"description": "市",
"example": "济南",
"in": "query",
"name": "city",
"required": false,
"schema": {
"type": "string"
}
},
{
"description": "景点名称",
"example": "五龙潭",
"in": "query",
"name": "spot",
"required": false,
"schema": {
"type": "string"
}
},
{
"description": "第几页",
"example": "1",
"in": "query",
"name": "page",
"required": false,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"properties": {
"data": {
"properties": {
"totalpage": {
"description": "总页数",
"example": "40",
"type": "string"
},
"record": {
"items": {
"properties": {
"grade": {
"description": "景点等级",
"example": "AAAA",
"type": "string"
},
"spot": {
"description": "景点名称",
"example": "趵突泉景区",
"type": "string"
},
"lng": {
"description": "经度",
"example": "117.022525987",
"type": "string"
},
"addr": {
"description": "地址",
"example": "济南市历下区趵突泉南路1号",
"type": "string"
},
"lat": {
"description": "纬度",
"example": "36.6670831758",
"type": "string"
},
"visittime": {
"description": "推荐游览时间",
"example": "建议2-3小时",
"type": "string"
},
"type": {
"description": "景点类型",
"example": "泉",
"type": "string"
},
"opentime": {
"description": "开放时间",
"example": "4月10日-10月9日7:00-19:0010月10日-次年4月9日7:00-18:00。",
"type": "string"
},
"tel": {
"description": "联系电话",
"example": "0531-86920680",
"type": "string"
},
"url": {
"description": "官方网站",
"example": "http://www.txdyq.cn/",
"type": "string"
}
},
"type": "object"
},
"type": "array"
},
"totalcount": {
"description": "总记录数",
"example": "392",
"type": "string"
}
},
"type": "object"
},
"resp": {
"properties": {
"RespCode": {
"description": "响应代码",
"example": "200",
"type": "string"
},
"RespMsg": {
"description": "响应信息",
"example": "查询成功",
"type": "string"
}
},
"type": "object"
}
},
"type": "object"
}
}
},
"description": "查询成功"
}
}
}
}
},
"servers": [
{
"url": "https://scenicspot.market.alicloudapi.com"
}
]
}