| [ | |
| { | |
| "name": "maps_regeocode", | |
| "description": "将一个高德经纬度坐标转换为行政区划地址信息", | |
| "inputSchema": { | |
| "type": "object", | |
| "properties": { | |
| "location": { | |
| "type": "string", | |
| "discription": "" | |
| } | |
| }, | |
| "required": [ | |
| "location" | |
| ] | |
| } | |
| }, | |
| { | |
| "name": "maps_geo", | |
| "description": "将详细的结构化地址转换为经纬度坐标。支持对地标性名胜景区、建筑物名称解析为经纬度坐标", | |
| "inputSchema": { | |
| "type": "object", | |
| "properties": { | |
| "address": { | |
| "type": "string", | |
| "discription":"" | |
| }, | |
| "city": { | |
| "type": "string", | |
| "discription":"" | |
| } | |
| }, | |
| "required": [ | |
| "address" | |
| ] | |
| } | |
| }, | |
| { | |
| "name": "maps_ip_location", | |
| "description": "IP 定位根据用户输入的 IP 地址,定位 IP 的所在位置", | |
| "inputSchema": { | |
| "type": "object", | |
| "properties": { | |
| "ip": { | |
| "type": "string", | |
| "discription":"" | |
| } | |
| }, | |
| "required": [ | |
| "ip" | |
| ] | |
| } | |
| }, | |
| { | |
| "name": "maps_weather", | |
| "description": "根据城市名称或者标准adcode查询指定城市的天气", | |
| "inputSchema": { | |
| "type": "object", | |
| "properties": { | |
| "city": { | |
| "type": "string", | |
| "discription":"" | |
| } | |
| }, | |
| "required": [ | |
| "city" | |
| ] | |
| } | |
| }, | |
| { | |
| "name": "maps_bicycling_by_address", | |
| "description": "Plans a bicycle route between two locations using addresses. Unless you have a specific reason to use coordinates, it's recommended to use this tool.", | |
| "inputSchema": { | |
| "type": "object", | |
| "properties": { | |
| "origin_address": { | |
| "type": "string", | |
| "discription":"Starting point address (e.g. \"北京市朝阳区阜通东大街6号\")" | |
| }, | |
| "destination_address": { | |
| "type": "string", | |
| "discription":"Ending point address (e.g. \"北京市海淀区上地十街10号\")" | |
| }, | |
| "origin_city": { | |
| "type": "string", | |
| "discription":"Optional city name for the origin address to improve geocoding accuracy" | |
| }, | |
| "destination_city": { | |
| "type": "string", | |
| "discription":"Optional city name for the destination address to improve geocoding accuracy" | |
| } | |
| }, | |
| "required": [ | |
| "origin_address", | |
| "destination_address" | |
| ] | |
| } | |
| }, | |
| { | |
| "name": "maps_bicycling_by_coordinates", | |
| "description": "Plans a bicycle route between two coordinates.", | |
| "inputSchema": { | |
| "type": "object", | |
| "properties": { | |
| "origin_coordinates": { | |
| "type": "string", | |
| "discription":"Starting point coordinates in the format \"longitude,latitude\" (e.g. \"116.434307,39.90909\")" | |
| }, | |
| "destination_coordinates": { | |
| "type": "string", | |
| "discription":"Ending point coordinates in the format \"longitude,latitude\" (e.g. \"116.434307,39.90909\")" | |
| } | |
| }, | |
| "required": [ | |
| "origin_coordinates", | |
| "destination_coordinates" | |
| ] | |
| } | |
| }, | |
| { | |
| "name": "maps_direction_walking_by_address", | |
| "description": "Plans a walking route between two locations using addresses. Unless you have a specific reason to use coordinates, it's recommended to use this tool.", | |
| "inputSchema": { | |
| "type": "object", | |
| "properties": { | |
| "origin_address": { | |
| "type": "string", | |
| "discription":"Starting point address (e.g. \"北京市朝阳区阜通东大街6号\")" | |
| }, | |
| "destination_address": { | |
| "type": "string", | |
| "discription":"Ending point address (e.g. \"北京市海淀区上地十街10号\")" | |
| }, | |
| "origin_city": { | |
| "type": "string", | |
| "discription":"Optional city name for the origin address to improve geocoding accuracy" | |
| }, | |
| "destination_city": { | |
| "type": "string", | |
| "discription":"Optional city name for the destination address to improve geocoding accuracy" | |
| } | |
| }, | |
| "required": [ | |
| "origin_address", | |
| "destination_address" | |
| ] | |
| } | |
| }, | |
| { | |
| "name": "maps_direction_walking_by_coordinates", | |
| "description": "步行路径规划 API 可以根据输入起点终点经纬度坐标规划100km 以内的步行通勤方案,并且返回通勤方案的数据", | |
| "inputSchema": { | |
| "type": "object", | |
| "properties": { | |
| "origin": { | |
| "type": "string", | |
| "discription":"起点经纬度坐标,格式为\"经度,纬度\" (例如:\"116.434307,39.90909\")" | |
| }, | |
| "destination": { | |
| "type": "string", | |
| "discription":"终点经纬度坐标,格式为\"经度,纬度\" (例如:\"116.434307,39.90909\")" | |
| } | |
| }, | |
| "required": [ | |
| "origin", | |
| "destination" | |
| ] | |
| } | |
| }, | |
| { | |
| "name": "maps_direction_driving_by_address", | |
| "description": "Plans a driving route between two locations using addresses. Unless you have a specific reason to use coordinates, it's recommended to use this tool.", | |
| "inputSchema": { | |
| "type": "object", | |
| "properties": { | |
| "origin_address": { | |
| "type": "string", | |
| "discription":"Starting point address (e.g. \"北京市朝阳区阜通东大街6号\")" | |
| }, | |
| "destination_address": { | |
| "type": "string", | |
| "discription":"Ending point address (e.g. \"北京市海淀区上地十街10号\")" | |
| }, | |
| "origin_city": { | |
| "type": "string", | |
| "discription":"Optional city name for the origin address to improve geocoding accuracy" | |
| }, | |
| "destination_city": { | |
| "type": "string", | |
| "discription":"Optional city name for the destination address to improve geocoding accuracy" | |
| } | |
| }, | |
| "required": [ | |
| "origin_address", | |
| "destination_address" | |
| ] | |
| } | |
| }, | |
| { | |
| "name": "maps_direction_driving_by_coordinates", | |
| "description": "驾车路径规划 API 可以根据用户起终点经纬度坐标规划以小客车、轿车通勤出行的方案,并且返回通勤方案的数据", | |
| "inputSchema": { | |
| "type": "object", | |
| "properties": { | |
| "origin": { | |
| "type": "string", | |
| "discription":"起点经纬度坐标,格式为\"经度,纬度\" (例如:\"116.434307,39.90909\")" | |
| }, | |
| "destination": { | |
| "type": "string", | |
| "discription":"终点经纬度坐标,格式为\"经度,纬度\" (例如:\"116.434307,39.90909\")" | |
| } | |
| }, | |
| "required": [ | |
| "origin", | |
| "destination" | |
| ] | |
| } | |
| }, | |
| { | |
| "name": "maps_direction_transit_integrated_by_address", | |
| "description": "Plans a public transit route between two locations using addresses. Unless you have a specific reason to use coordinates, it's recommended to use this tool.", | |
| "inputSchema": { | |
| "type": "object", | |
| "properties": { | |
| "origin_address": { | |
| "type": "string", | |
| "discription":"Starting point address (e.g. \"北京市朝阳区阜通东大街6号\")" | |
| }, | |
| "destination_address": { | |
| "type": "string", | |
| "discription":"Ending point address (e.g. \"北京市海淀区上地十街10号\")" | |
| }, | |
| "origin_city": { | |
| "type": "string", | |
| "discription":"City name for the origin address (required for cross-city transit)" | |
| }, | |
| "destination_city": { | |
| "type": "string", | |
| "discription":"City name for the destination address (required for cross-city transit)" | |
| } | |
| }, | |
| "required": [ | |
| "origin_address", | |
| "destination_address", | |
| "origin_city", | |
| "destination_city" | |
| ] | |
| } | |
| }, | |
| { | |
| "name": "maps_direction_transit_integrated_by_coordinates", | |
| "description": "根据用户起终点经纬度坐标规划综合各类公共(火车、公交、地铁)交通方式的通勤方案,并且返回通勤方案的数据,跨城场景下必须传起点城市与终点城市", | |
| "inputSchema": { | |
| "type": "object", | |
| "properties": { | |
| "origin": { | |
| "type": "string", | |
| "discription":"起点经纬度坐标,格式为\"经度,纬度\" (例如:\"116.434307,39.90909\")" | |
| }, | |
| "destination": { | |
| "type": "string", | |
| "discription":"终点经纬度坐标,格式为\"经度,纬度\" (例如:\"116.434307,39.90909\")" | |
| }, | |
| "city": { | |
| "type": "string", | |
| "discription":"起点城市名称" | |
| }, | |
| "cityd": { | |
| "type": "string", | |
| "discription":"终点城市名称" | |
| } | |
| }, | |
| "required": [ | |
| "origin", | |
| "destination", | |
| "city", | |
| "cityd" | |
| ] | |
| } | |
| }, | |
| { | |
| "name": "maps_distance", | |
| "description": "测量两个经纬度坐标之间的距离,支持驾车、步行以及球面距离测量", | |
| "inputSchema": { | |
| "type": "object", | |
| "properties": { | |
| "origins": { | |
| "type": "string", | |
| "discription":"" | |
| }, | |
| "destination": { | |
| "type": "string", | |
| "discription":"" | |
| }, | |
| "type": { | |
| "type": "string", | |
| "discription":"" | |
| } | |
| }, | |
| "required": [ | |
| "origins", | |
| "destination" | |
| ] | |
| } | |
| }, | |
| { | |
| "name": "maps_text_search", | |
| "description": "关键词搜索 API 根据用户输入的关键字进行 POI 搜索,并返回相关的信息", | |
| "inputSchema": { | |
| "type": "object", | |
| "properties": { | |
| "keywords": { | |
| "type": "string", | |
| "discription":"" | |
| }, | |
| "city": { | |
| "type": "string", | |
| "discription":"" | |
| }, | |
| "citylimit": { | |
| "type": "string", | |
| "discription":"" | |
| } | |
| }, | |
| "required": [ | |
| "keywords" | |
| ] | |
| } | |
| }, | |
| { | |
| "name": "maps_around_search", | |
| "description": "周边搜,根据用户传入关键词以及坐标location,搜索出radius半径范围的POI", | |
| "inputSchema": { | |
| "type": "object", | |
| "properties": { | |
| "location": { | |
| "type": "string", | |
| "discription":"" | |
| }, | |
| "radius": { | |
| "type": "string", | |
| "discription":"" | |
| }, | |
| "keywords": { | |
| "type": "string", | |
| "discription":"" | |
| } | |
| }, | |
| "required": [ | |
| "location" | |
| ] | |
| } | |
| }, | |
| { | |
| "name": "maps_search_detail", | |
| "description": "查询关键词搜或者周边搜获取到的POI ID的详细信息", | |
| "inputSchema": { | |
| "type": "object", | |
| "properties": { | |
| "id": { | |
| "type": "string", | |
| "discription":"" | |
| } | |
| }, | |
| "required": [ | |
| "id" | |
| ] | |
| } | |
| }, | |
| { | |
| "name": "distance_between_coords", | |
| "description": "计算两个经纬度坐标之间的球面距离(单位:米)", | |
| "inputSchema": { | |
| "type": "object", | |
| "properties": { | |
| "lat1": { | |
| "type": "number", | |
| "discription":"" | |
| }, | |
| "lon1": { | |
| "type": "number", | |
| "discription":"" | |
| }, | |
| "lat2": { | |
| "type": "number", | |
| "discription":"" | |
| }, | |
| "lon2": { | |
| "type": "number", | |
| "discription":"" | |
| } | |
| }, | |
| "required": [ | |
| "lat1", | |
| "lon1", | |
| "lat2", | |
| "lon2" | |
| ] | |
| } | |
| }, | |
| { | |
| "name": "midpoint_coords", | |
| "description": "计算两点经纬度的中点坐标", | |
| "inputSchema": { | |
| "type": "object", | |
| "properties": { | |
| "lat1": { | |
| "type": "number", | |
| "discription":"" | |
| }, | |
| "lon1": { | |
| "type": "number", | |
| "discription":"" | |
| }, | |
| "lat2": { | |
| "type": "number", | |
| "discription":"" | |
| }, | |
| "lon2": { | |
| "type": "number", | |
| "discription":"" | |
| } | |
| }, | |
| "required": [ | |
| "lat1", | |
| "lon1", | |
| "lat2", | |
| "lon2" | |
| ] | |
| } | |
| }, | |
| { | |
| "name": "is_point_in_rect", | |
| "description": "判断点是否在矩形区域内", | |
| "inputSchema": { | |
| "type": "object", | |
| "properties": { | |
| "lat": { | |
| "type": "number", | |
| "discription":"" | |
| }, | |
| "lon": { | |
| "type": "number", | |
| "discription":"" | |
| }, | |
| "lat_min": { | |
| "type": "number", | |
| "discription":"" | |
| }, | |
| "lon_min": { | |
| "type": "number", | |
| "discription":"" | |
| }, | |
| "lat_max": { | |
| "type": "number", | |
| "discription":"" | |
| }, | |
| "lon_max": { | |
| "type": "number", | |
| "discription":"" | |
| } | |
| }, | |
| "required": [ | |
| "lat", | |
| "lon", | |
| "lat_min", | |
| "lon_min", | |
| "lat_max", | |
| "lon_max" | |
| ] | |
| } | |
| }, | |
| { | |
| "name": "random_coord_in_rect", | |
| "description": "在矩形区域内随机生成一个经纬度坐标", | |
| "inputSchema": { | |
| "type": "object", | |
| "properties": { | |
| "lat_min": { | |
| "type": "number", | |
| "discription":"" | |
| }, | |
| "lon_min": { | |
| "type": "number", | |
| "discription":"" | |
| }, | |
| "lat_max": { | |
| "type": "number", | |
| "discription":"" | |
| }, | |
| "lon_max": { | |
| "type": "number", | |
| "discription":"" | |
| } | |
| }, | |
| "required": [ | |
| "lat_min", | |
| "lon_min", | |
| "lat_max", | |
| "lon_max" | |
| ] | |
| } | |
| } | |
| ] |