add unofficial datasets
Browse files- Unofficial/Asteroids NeoWs.json +47 -0
- Unofficial/Basic data processing.json +123 -0
- Unofficial/Biological and medical literature search.json +86 -0
- Unofficial/DONKI.json +0 -0
- Unofficial/EPIC.json +50 -0
- Unofficial/Earth.json +65 -0
- Unofficial/Exoplanet.json +24 -0
- Unofficial/Google Scholar search.json +88 -0
- Unofficial/Mars.json +50 -0
- Unofficial/NASA.json +24 -0
- Unofficial/Swiss railway system information.json +86 -0
- Unofficial/Text not yet processed.json +114 -0
- Unofficial/US stock and cryptocurrency market information.json +321 -0
- Unofficial/US weather information .json +39 -0
- Unofficial/Unit conversions.json +130 -0
- Unofficial/Word document operations.json +689 -0
- Unofficial/calculate.json +275 -0
- Unofficial/date.json +78 -0
- Unofficial/location.json +505 -0
Unofficial/Asteroids NeoWs.json
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{
|
| 3 |
+
"name": "get_asteroids_feed",
|
| 4 |
+
"description": "Get a list of asteroids based on their closest approach date to Earth.",
|
| 5 |
+
"inputSchema": {
|
| 6 |
+
"type": "object",
|
| 7 |
+
"properties": {
|
| 8 |
+
"start_date": {
|
| 9 |
+
"type": "string",
|
| 10 |
+
"discription":"Start date for asteroid search in YYYY-MM-DD format."
|
| 11 |
+
},
|
| 12 |
+
"end_date": {
|
| 13 |
+
"type": "string",
|
| 14 |
+
"discription":"End date for asteroid search in YYYY-MM-DD format."
|
| 15 |
+
}
|
| 16 |
+
},
|
| 17 |
+
"required": [
|
| 18 |
+
"start_date"
|
| 19 |
+
]
|
| 20 |
+
}
|
| 21 |
+
},
|
| 22 |
+
{
|
| 23 |
+
"name": "get_asteroid_lookup",
|
| 24 |
+
"description": "Look up a specific asteroid based on its NASA JPL ID.",
|
| 25 |
+
"inputSchema": {
|
| 26 |
+
"type": "object",
|
| 27 |
+
"properties": {
|
| 28 |
+
"asteroid_id": {
|
| 29 |
+
"type": "string",
|
| 30 |
+
"discription":"Asteroid ID in the NASA JPL small body (SPK-ID) system."
|
| 31 |
+
}
|
| 32 |
+
},
|
| 33 |
+
"required": [
|
| 34 |
+
"asteroid_id"
|
| 35 |
+
]
|
| 36 |
+
}
|
| 37 |
+
},
|
| 38 |
+
{
|
| 39 |
+
"name": "browse_asteroids",
|
| 40 |
+
"description": "Browse the asteroid dataset.",
|
| 41 |
+
"inputSchema": {
|
| 42 |
+
"type": "object",
|
| 43 |
+
"properties": {},
|
| 44 |
+
"required": []
|
| 45 |
+
}
|
| 46 |
+
}
|
| 47 |
+
]
|
Unofficial/Basic data processing.json
ADDED
|
@@ -0,0 +1,123 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{
|
| 3 |
+
"name": "list_sum",
|
| 4 |
+
"description": "列表求和",
|
| 5 |
+
"inputSchema": {
|
| 6 |
+
"type": "object",
|
| 7 |
+
"properties": {
|
| 8 |
+
"nums": {
|
| 9 |
+
"type": "string",
|
| 10 |
+
"discription":""
|
| 11 |
+
}
|
| 12 |
+
},
|
| 13 |
+
"required": [
|
| 14 |
+
"nums"
|
| 15 |
+
]
|
| 16 |
+
}
|
| 17 |
+
},
|
| 18 |
+
{
|
| 19 |
+
"name": "list_avg",
|
| 20 |
+
"description": "列表平均值",
|
| 21 |
+
"inputSchema": {
|
| 22 |
+
"type": "object",
|
| 23 |
+
"properties": {
|
| 24 |
+
"nums": {
|
| 25 |
+
"type": "string",
|
| 26 |
+
"discription":""
|
| 27 |
+
}
|
| 28 |
+
},
|
| 29 |
+
"required": [
|
| 30 |
+
"nums"
|
| 31 |
+
]
|
| 32 |
+
}
|
| 33 |
+
},
|
| 34 |
+
{
|
| 35 |
+
"name": "list_max",
|
| 36 |
+
"description": "列表最大值",
|
| 37 |
+
"inputSchema": {
|
| 38 |
+
"type": "object",
|
| 39 |
+
"properties": {
|
| 40 |
+
"nums": {
|
| 41 |
+
"type": "string",
|
| 42 |
+
"discription":""
|
| 43 |
+
}
|
| 44 |
+
},
|
| 45 |
+
"required": [
|
| 46 |
+
"nums"
|
| 47 |
+
]
|
| 48 |
+
}
|
| 49 |
+
},
|
| 50 |
+
{
|
| 51 |
+
"name": "list_min",
|
| 52 |
+
"description": "列表最小值",
|
| 53 |
+
"inputSchema": {
|
| 54 |
+
"type": "object",
|
| 55 |
+
"properties": {
|
| 56 |
+
"nums": {
|
| 57 |
+
"type": "string",
|
| 58 |
+
"discription":""
|
| 59 |
+
}
|
| 60 |
+
},
|
| 61 |
+
"required": [
|
| 62 |
+
"nums"
|
| 63 |
+
]
|
| 64 |
+
}
|
| 65 |
+
},
|
| 66 |
+
{
|
| 67 |
+
"name": "list_sort",
|
| 68 |
+
"description": "列表排序",
|
| 69 |
+
"inputSchema": {
|
| 70 |
+
"type": "object",
|
| 71 |
+
"properties": {
|
| 72 |
+
"nums": {
|
| 73 |
+
"type": "string",
|
| 74 |
+
"discription":""
|
| 75 |
+
},
|
| 76 |
+
"reverse": {
|
| 77 |
+
"type": "boolean",
|
| 78 |
+
"discription":""
|
| 79 |
+
}
|
| 80 |
+
},
|
| 81 |
+
"required": [
|
| 82 |
+
"nums"
|
| 83 |
+
]
|
| 84 |
+
}
|
| 85 |
+
},
|
| 86 |
+
{
|
| 87 |
+
"name": "list_unique",
|
| 88 |
+
"description": "去重",
|
| 89 |
+
"inputSchema": {
|
| 90 |
+
"type": "object",
|
| 91 |
+
"properties": {
|
| 92 |
+
"nums": {
|
| 93 |
+
"type": "string",
|
| 94 |
+
"discription":""
|
| 95 |
+
}
|
| 96 |
+
},
|
| 97 |
+
"required": [
|
| 98 |
+
"nums"
|
| 99 |
+
]
|
| 100 |
+
}
|
| 101 |
+
},
|
| 102 |
+
{
|
| 103 |
+
"name": "list_count",
|
| 104 |
+
"description": "统计某个元素出现次数",
|
| 105 |
+
"inputSchema": {
|
| 106 |
+
"type": "object",
|
| 107 |
+
"properties": {
|
| 108 |
+
"nums": {
|
| 109 |
+
"type": "string",
|
| 110 |
+
"discription":""
|
| 111 |
+
},
|
| 112 |
+
"value": {
|
| 113 |
+
"type": "string",
|
| 114 |
+
"discription":""
|
| 115 |
+
}
|
| 116 |
+
},
|
| 117 |
+
"required": [
|
| 118 |
+
"nums",
|
| 119 |
+
"value"
|
| 120 |
+
]
|
| 121 |
+
}
|
| 122 |
+
}
|
| 123 |
+
]
|
Unofficial/Biological and medical literature search.json
ADDED
|
@@ -0,0 +1,86 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{
|
| 3 |
+
"name": "get_trips",
|
| 4 |
+
"description": "get all available SBB trips between two places after a given departure date and time.",
|
| 5 |
+
"inputSchema": {
|
| 6 |
+
"type": "object",
|
| 7 |
+
"properties": {
|
| 8 |
+
"origin_name": {
|
| 9 |
+
"type": "string",
|
| 10 |
+
"discription":""
|
| 11 |
+
},
|
| 12 |
+
"destination_name": {
|
| 13 |
+
"type": "string",
|
| 14 |
+
"discription":""
|
| 15 |
+
},
|
| 16 |
+
"departure_date": {
|
| 17 |
+
"type": "string",
|
| 18 |
+
"discription":""
|
| 19 |
+
},
|
| 20 |
+
"departure_time": {
|
| 21 |
+
"type": "string",
|
| 22 |
+
"discription":""
|
| 23 |
+
}
|
| 24 |
+
},
|
| 25 |
+
"required": []
|
| 26 |
+
}
|
| 27 |
+
},
|
| 28 |
+
{
|
| 29 |
+
"name": "get_trips_prices",
|
| 30 |
+
"description": "get all available trip prices for a list of trips.",
|
| 31 |
+
"inputSchema": {
|
| 32 |
+
"type": "object",
|
| 33 |
+
"properties": {
|
| 34 |
+
"trips": {
|
| 35 |
+
"type": "string",
|
| 36 |
+
"discription":""
|
| 37 |
+
}
|
| 38 |
+
},
|
| 39 |
+
"required": [
|
| 40 |
+
"trips"
|
| 41 |
+
]
|
| 42 |
+
}
|
| 43 |
+
},
|
| 44 |
+
{
|
| 45 |
+
"name": "buy_ticket",
|
| 46 |
+
"description": "Buy a ticket between two places",
|
| 47 |
+
"inputSchema": {
|
| 48 |
+
"type": "object",
|
| 49 |
+
"properties": {
|
| 50 |
+
"origin": {
|
| 51 |
+
"type": "string",
|
| 52 |
+
"discription":""
|
| 53 |
+
},
|
| 54 |
+
"destination": {
|
| 55 |
+
"type": "string",
|
| 56 |
+
"discription":""
|
| 57 |
+
}
|
| 58 |
+
},
|
| 59 |
+
"required": [
|
| 60 |
+
"origin",
|
| 61 |
+
"destination"
|
| 62 |
+
]
|
| 63 |
+
}
|
| 64 |
+
},
|
| 65 |
+
{
|
| 66 |
+
"name": "cancel_ticket",
|
| 67 |
+
"description": "Cancel a ticket between the two places.",
|
| 68 |
+
"inputSchema": {
|
| 69 |
+
"type": "object",
|
| 70 |
+
"properties": {
|
| 71 |
+
"origin": {
|
| 72 |
+
"type": "string",
|
| 73 |
+
"discription":""
|
| 74 |
+
},
|
| 75 |
+
"destination": {
|
| 76 |
+
"type": "string",
|
| 77 |
+
"discription":""
|
| 78 |
+
}
|
| 79 |
+
},
|
| 80 |
+
"required": [
|
| 81 |
+
"origin",
|
| 82 |
+
"destination"
|
| 83 |
+
]
|
| 84 |
+
}
|
| 85 |
+
}
|
| 86 |
+
]
|
Unofficial/DONKI.json
ADDED
|
File without changes
|
Unofficial/EPIC.json
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{
|
| 3 |
+
"name": "get_epic_imagery",
|
| 4 |
+
"description": "Get images from the EPIC (Earth Polychromatic Imaging Camera).",
|
| 5 |
+
"inputSchema": {
|
| 6 |
+
"type": "object",
|
| 7 |
+
"properties": {
|
| 8 |
+
"collection": {
|
| 9 |
+
"type": "string",
|
| 10 |
+
"discription":"Collection type. Options: natural, enhanced."
|
| 11 |
+
}
|
| 12 |
+
},
|
| 13 |
+
"required": []
|
| 14 |
+
}
|
| 15 |
+
},
|
| 16 |
+
{
|
| 17 |
+
"name": "get_epic_imagery_by_date",
|
| 18 |
+
"description": "Get images from the EPIC (Earth Polychromatic Imaging Camera) for a specific date.",
|
| 19 |
+
"inputSchema": {
|
| 20 |
+
"type": "object",
|
| 21 |
+
"properties": {
|
| 22 |
+
"date": {
|
| 23 |
+
"type": "string",
|
| 24 |
+
"discription":"Date in YYYY-MM-DD format."
|
| 25 |
+
},
|
| 26 |
+
"collection": {
|
| 27 |
+
"type": "string",
|
| 28 |
+
"discription":"Collection type. Options: natural, enhanced."
|
| 29 |
+
}
|
| 30 |
+
},
|
| 31 |
+
"required": [
|
| 32 |
+
"date"
|
| 33 |
+
]
|
| 34 |
+
}
|
| 35 |
+
},
|
| 36 |
+
{
|
| 37 |
+
"name": "get_epic_dates",
|
| 38 |
+
"description": "Get available dates for EPIC images.",
|
| 39 |
+
"inputSchema": {
|
| 40 |
+
"type": "object",
|
| 41 |
+
"properties": {
|
| 42 |
+
"collection": {
|
| 43 |
+
"type": "string",
|
| 44 |
+
"discription":"Collection type. Options: natural, enhanced."
|
| 45 |
+
}
|
| 46 |
+
},
|
| 47 |
+
"required": []
|
| 48 |
+
}
|
| 49 |
+
}
|
| 50 |
+
]
|
Unofficial/Earth.json
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{
|
| 3 |
+
"name": "get_earth_imagery",
|
| 4 |
+
"description": "Get Earth imagery from Landsat 8 satellite.",
|
| 5 |
+
"inputSchema": {
|
| 6 |
+
"type": "object",
|
| 7 |
+
"properties": {
|
| 8 |
+
"lat": {
|
| 9 |
+
"type": "number",
|
| 10 |
+
"discription":" Latitude."
|
| 11 |
+
},
|
| 12 |
+
"lon": {
|
| 13 |
+
"type": "number",
|
| 14 |
+
"discription":"Longitude."
|
| 15 |
+
},
|
| 16 |
+
"date": {
|
| 17 |
+
"type": "string",
|
| 18 |
+
"discription":"Image date in YYYY-MM-DD format. If not specified, the most recent image is used."
|
| 19 |
+
},
|
| 20 |
+
"dim": {
|
| 21 |
+
"type": "number",
|
| 22 |
+
"discription":"Width and height of the image in degrees (0.025 degrees is approximately 2.7 km)."
|
| 23 |
+
},
|
| 24 |
+
"cloud_score": {
|
| 25 |
+
"type": "boolean",
|
| 26 |
+
"discription":"Calculate the percentage of the image covered by clouds (currently not available)."
|
| 27 |
+
}
|
| 28 |
+
},
|
| 29 |
+
"required": [
|
| 30 |
+
"lat",
|
| 31 |
+
"lon"
|
| 32 |
+
]
|
| 33 |
+
}
|
| 34 |
+
},
|
| 35 |
+
{
|
| 36 |
+
"name": "get_earth_assets",
|
| 37 |
+
"description": "Get information about available imagery assets for a specific location and date.",
|
| 38 |
+
"inputSchema": {
|
| 39 |
+
"type": "object",
|
| 40 |
+
"properties": {
|
| 41 |
+
"lat": {
|
| 42 |
+
"type": "number",
|
| 43 |
+
"discription":" Latitude."
|
| 44 |
+
},
|
| 45 |
+
"lon": {
|
| 46 |
+
"type": "number",
|
| 47 |
+
"discription":"Longitude."
|
| 48 |
+
},
|
| 49 |
+
"date": {
|
| 50 |
+
"type": "string",
|
| 51 |
+
"discription":"Date in YYYY-MM-DD format."
|
| 52 |
+
},
|
| 53 |
+
"dim": {
|
| 54 |
+
"type": "number",
|
| 55 |
+
"discription":"Width and height of the image in degrees (0.025 degrees is approximately 2.7 km)."
|
| 56 |
+
}
|
| 57 |
+
},
|
| 58 |
+
"required": [
|
| 59 |
+
"lat",
|
| 60 |
+
"lon",
|
| 61 |
+
"date"
|
| 62 |
+
]
|
| 63 |
+
}
|
| 64 |
+
}
|
| 65 |
+
]
|
Unofficial/Exoplanet.json
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{
|
| 3 |
+
"name": "get_exoplanet_data",
|
| 4 |
+
"description": "Get data from NASA's Exoplanet Archive.",
|
| 5 |
+
"inputSchema": {
|
| 6 |
+
"type": "object",
|
| 7 |
+
"properties": {
|
| 8 |
+
"query": {
|
| 9 |
+
"type": "string",
|
| 10 |
+
"discription":"Specific query to filter results using Exoplanet Archive syntax. Example: \"pl_orbper > 300 and pl_rade < 2\""
|
| 11 |
+
},
|
| 12 |
+
"table": {
|
| 13 |
+
"type": "string",
|
| 14 |
+
"discription":"Table to query. Common options: exoplanets (confirmed planets), cumulative (Kepler Objects of Interest), koi (subset of cumulative), tce (Threshold Crossing Events)."
|
| 15 |
+
},
|
| 16 |
+
"format": {
|
| 17 |
+
"type": "string",
|
| 18 |
+
"discription":"Output format. Options: json, csv, xml, ipac. Default: json."
|
| 19 |
+
}
|
| 20 |
+
},
|
| 21 |
+
"required": []
|
| 22 |
+
}
|
| 23 |
+
}
|
| 24 |
+
]
|
Unofficial/Google Scholar search.json
ADDED
|
@@ -0,0 +1,88 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{
|
| 3 |
+
"name": "search_biorxiv_key_words",
|
| 4 |
+
"description": "No description available.",
|
| 5 |
+
"inputSchema": {
|
| 6 |
+
"type": "object",
|
| 7 |
+
"properties": {
|
| 8 |
+
"key_words": {
|
| 9 |
+
"type": "string",
|
| 10 |
+
"discription":" Search query string"
|
| 11 |
+
},
|
| 12 |
+
"num_results": {
|
| 13 |
+
"type": "integer",
|
| 14 |
+
"discription":" Number of results to return (default: 10)"
|
| 15 |
+
}
|
| 16 |
+
},
|
| 17 |
+
"required": [
|
| 18 |
+
"key_words"
|
| 19 |
+
]
|
| 20 |
+
}
|
| 21 |
+
},
|
| 22 |
+
{
|
| 23 |
+
"name": "search_biorxiv_advanced",
|
| 24 |
+
"description": "No description available.",
|
| 25 |
+
"inputSchema": {
|
| 26 |
+
"type": "object",
|
| 27 |
+
"properties": {
|
| 28 |
+
"term": {
|
| 29 |
+
"type": "string",
|
| 30 |
+
"discription":"General search term"
|
| 31 |
+
},
|
| 32 |
+
"title": {
|
| 33 |
+
"type": "string",
|
| 34 |
+
"discription":"Search in title"
|
| 35 |
+
},
|
| 36 |
+
"author1": {
|
| 37 |
+
"type": "string",
|
| 38 |
+
"discription":"First author"
|
| 39 |
+
},
|
| 40 |
+
"author2": {
|
| 41 |
+
"type": "string",
|
| 42 |
+
"discription":"Second author"
|
| 43 |
+
},
|
| 44 |
+
"abstract_title": {
|
| 45 |
+
"type": "string",
|
| 46 |
+
"discription":"Search in abstract and title"
|
| 47 |
+
},
|
| 48 |
+
"text_abstract_title": {
|
| 49 |
+
"type": "string",
|
| 50 |
+
"discription":"Search in full text, abstract, and title"
|
| 51 |
+
},
|
| 52 |
+
"section": {
|
| 53 |
+
"type": "string",
|
| 54 |
+
"discription":"Section of bioRxiv"
|
| 55 |
+
},
|
| 56 |
+
"start_date": {
|
| 57 |
+
"type": "string",
|
| 58 |
+
"discription":"Start date for search range (format: YYYY-MM-DD)"
|
| 59 |
+
},
|
| 60 |
+
"end_date": {
|
| 61 |
+
"type": "string",
|
| 62 |
+
"discription":"End date for search range (format: YYYY-MM-DD)"
|
| 63 |
+
},
|
| 64 |
+
"num_results": {
|
| 65 |
+
"type": "integer",
|
| 66 |
+
"discription":" Number of results to return (default: 10)"
|
| 67 |
+
}
|
| 68 |
+
},
|
| 69 |
+
"required": []
|
| 70 |
+
}
|
| 71 |
+
},
|
| 72 |
+
{
|
| 73 |
+
"name": "get_biorxiv_metadata",
|
| 74 |
+
"description": "No description available.",
|
| 75 |
+
"inputSchema": {
|
| 76 |
+
"type": "object",
|
| 77 |
+
"properties": {
|
| 78 |
+
"doi": {
|
| 79 |
+
"type": "string",
|
| 80 |
+
"discription":"DOI of the article"
|
| 81 |
+
}
|
| 82 |
+
},
|
| 83 |
+
"required": [
|
| 84 |
+
"doi"
|
| 85 |
+
]
|
| 86 |
+
}
|
| 87 |
+
}
|
| 88 |
+
]
|
Unofficial/Mars.json
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{
|
| 3 |
+
"name": "get_mars_rover_photos",
|
| 4 |
+
"description": "Get photos from a Mars rover (Curiosity, Opportunity, Spirit).",
|
| 5 |
+
"inputSchema": {
|
| 6 |
+
"type": "object",
|
| 7 |
+
"properties": {
|
| 8 |
+
"rover_name": {
|
| 9 |
+
"type": "string",
|
| 10 |
+
"discription":" Name of the rover (curiosity, opportunity, spirit)."
|
| 11 |
+
},
|
| 12 |
+
"sol": {
|
| 13 |
+
"type": "integer",
|
| 14 |
+
"discription":"Martian sol (day number, starting from landing). Use if not using earth_date."
|
| 15 |
+
},
|
| 16 |
+
"earth_date": {
|
| 17 |
+
"type": "string",
|
| 18 |
+
"discription":"Earth date in YYYY-MM-DD format. Use if not using sol."
|
| 19 |
+
},
|
| 20 |
+
"camera": {
|
| 21 |
+
"type": "string",
|
| 22 |
+
"discription":" Filter by camera abbreviation (e.g., FHAZ, RHAZ, MAST, NAVCAM, PANCAM). See documentation for full list per rover."
|
| 23 |
+
},
|
| 24 |
+
"page": {
|
| 25 |
+
"type": "integer",
|
| 26 |
+
"discription":"Page number for results (25 photos per page)."
|
| 27 |
+
}
|
| 28 |
+
},
|
| 29 |
+
"required": [
|
| 30 |
+
"rover_name"
|
| 31 |
+
]
|
| 32 |
+
}
|
| 33 |
+
},
|
| 34 |
+
{
|
| 35 |
+
"name": "get_mars_rover_manifest",
|
| 36 |
+
"description": "Get the mission manifest for a Mars rover (Curiosity, Opportunity, Spirit).",
|
| 37 |
+
"inputSchema": {
|
| 38 |
+
"type": "object",
|
| 39 |
+
"properties": {
|
| 40 |
+
"rover_name": {
|
| 41 |
+
"type": "string",
|
| 42 |
+
"discription":"Name of the rover (curiosity, opportunity, spirit)."
|
| 43 |
+
}
|
| 44 |
+
},
|
| 45 |
+
"required": [
|
| 46 |
+
"rover_name"
|
| 47 |
+
]
|
| 48 |
+
}
|
| 49 |
+
}
|
| 50 |
+
]
|
Unofficial/NASA.json
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{
|
| 3 |
+
"name": "get_astronomy_picture_of_day",
|
| 4 |
+
"description": "Get NASA's astronomy picture of the day.",
|
| 5 |
+
"inputSchema": {
|
| 6 |
+
"type": "object",
|
| 7 |
+
"properties": {
|
| 8 |
+
"date": {
|
| 9 |
+
"type": "string",
|
| 10 |
+
"discription":"Date of the image in YYYY-MM-DD format. If not specified, the current date is used."
|
| 11 |
+
},
|
| 12 |
+
"count": {
|
| 13 |
+
"type": "integer",
|
| 14 |
+
"discription":"If specified, returns 'count' random images. Cannot be used with 'date'."
|
| 15 |
+
},
|
| 16 |
+
"thumbs": {
|
| 17 |
+
"type": "boolean",
|
| 18 |
+
"discription":"If True, returns the thumbnail URL for videos. If APOD is not a video, this parameter is ignored."
|
| 19 |
+
}
|
| 20 |
+
},
|
| 21 |
+
"required": []
|
| 22 |
+
}
|
| 23 |
+
}
|
| 24 |
+
]
|
Unofficial/Swiss railway system information.json
ADDED
|
@@ -0,0 +1,86 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{
|
| 3 |
+
"name": "get_trips",
|
| 4 |
+
"description": "get all available SBB trips between two places after a given departure date and time.",
|
| 5 |
+
"inputSchema": {
|
| 6 |
+
"type": "object",
|
| 7 |
+
"properties": {
|
| 8 |
+
"origin_name": {
|
| 9 |
+
"type": "string",
|
| 10 |
+
"discription":""
|
| 11 |
+
},
|
| 12 |
+
"destination_name": {
|
| 13 |
+
"type": "string",
|
| 14 |
+
"discription":""
|
| 15 |
+
},
|
| 16 |
+
"departure_date": {
|
| 17 |
+
"type": "string",
|
| 18 |
+
"discription":""
|
| 19 |
+
},
|
| 20 |
+
"departure_time": {
|
| 21 |
+
"type": "string",
|
| 22 |
+
"discription":""
|
| 23 |
+
}
|
| 24 |
+
},
|
| 25 |
+
"required": []
|
| 26 |
+
}
|
| 27 |
+
},
|
| 28 |
+
{
|
| 29 |
+
"name": "get_trips_prices",
|
| 30 |
+
"description": "get all available trip prices for a list of trips.",
|
| 31 |
+
"inputSchema": {
|
| 32 |
+
"type": "object",
|
| 33 |
+
"properties": {
|
| 34 |
+
"trips": {
|
| 35 |
+
"type": "string",
|
| 36 |
+
"discription":""
|
| 37 |
+
}
|
| 38 |
+
},
|
| 39 |
+
"required": [
|
| 40 |
+
"trips"
|
| 41 |
+
]
|
| 42 |
+
}
|
| 43 |
+
},
|
| 44 |
+
{
|
| 45 |
+
"name": "buy_ticket",
|
| 46 |
+
"description": "Buy a ticket between two places",
|
| 47 |
+
"inputSchema": {
|
| 48 |
+
"type": "object",
|
| 49 |
+
"properties": {
|
| 50 |
+
"origin": {
|
| 51 |
+
"type": "string",
|
| 52 |
+
"discription":""
|
| 53 |
+
},
|
| 54 |
+
"destination": {
|
| 55 |
+
"type": "string",
|
| 56 |
+
"discription":""
|
| 57 |
+
}
|
| 58 |
+
},
|
| 59 |
+
"required": [
|
| 60 |
+
"origin",
|
| 61 |
+
"destination"
|
| 62 |
+
]
|
| 63 |
+
}
|
| 64 |
+
},
|
| 65 |
+
{
|
| 66 |
+
"name": "cancel_ticket",
|
| 67 |
+
"description": "Cancel a ticket between the two places.",
|
| 68 |
+
"inputSchema": {
|
| 69 |
+
"type": "object",
|
| 70 |
+
"properties": {
|
| 71 |
+
"origin": {
|
| 72 |
+
"type": "string",
|
| 73 |
+
"discription":""
|
| 74 |
+
},
|
| 75 |
+
"destination": {
|
| 76 |
+
"type": "string",
|
| 77 |
+
"discription":""
|
| 78 |
+
}
|
| 79 |
+
},
|
| 80 |
+
"required": [
|
| 81 |
+
"origin",
|
| 82 |
+
"destination"
|
| 83 |
+
]
|
| 84 |
+
}
|
| 85 |
+
}
|
| 86 |
+
]
|
Unofficial/Text not yet processed.json
ADDED
|
@@ -0,0 +1,114 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{
|
| 3 |
+
"name": "to_lower",
|
| 4 |
+
"description": "转为小写",
|
| 5 |
+
"inputSchema": {
|
| 6 |
+
"type": "object",
|
| 7 |
+
"properties": {
|
| 8 |
+
"text": {
|
| 9 |
+
"type": "string",
|
| 10 |
+
"discription":""
|
| 11 |
+
}
|
| 12 |
+
},
|
| 13 |
+
"required": [
|
| 14 |
+
"text"
|
| 15 |
+
]
|
| 16 |
+
}
|
| 17 |
+
},
|
| 18 |
+
{
|
| 19 |
+
"name": "reverse_text",
|
| 20 |
+
"description": "字符串反转",
|
| 21 |
+
"inputSchema": {
|
| 22 |
+
"type": "object",
|
| 23 |
+
"properties": {
|
| 24 |
+
"text": {
|
| 25 |
+
"type": "string",
|
| 26 |
+
"discription":""
|
| 27 |
+
}
|
| 28 |
+
},
|
| 29 |
+
"required": [
|
| 30 |
+
"text"
|
| 31 |
+
]
|
| 32 |
+
}
|
| 33 |
+
},
|
| 34 |
+
{
|
| 35 |
+
"name": "count_words",
|
| 36 |
+
"description": "统计单词数",
|
| 37 |
+
"inputSchema": {
|
| 38 |
+
"type": "object",
|
| 39 |
+
"properties": {
|
| 40 |
+
"text": {
|
| 41 |
+
"type": "string",
|
| 42 |
+
"discription":""
|
| 43 |
+
}
|
| 44 |
+
},
|
| 45 |
+
"required": [
|
| 46 |
+
"text"
|
| 47 |
+
]
|
| 48 |
+
}
|
| 49 |
+
},
|
| 50 |
+
{
|
| 51 |
+
"name": "count_chars",
|
| 52 |
+
"description": "统计字符数",
|
| 53 |
+
"inputSchema": {
|
| 54 |
+
"type": "object",
|
| 55 |
+
"properties": {
|
| 56 |
+
"text": {
|
| 57 |
+
"type": "string",
|
| 58 |
+
"discription":""
|
| 59 |
+
}
|
| 60 |
+
},
|
| 61 |
+
"required": [
|
| 62 |
+
"text"
|
| 63 |
+
]
|
| 64 |
+
}
|
| 65 |
+
},
|
| 66 |
+
{
|
| 67 |
+
"name": "is_palindrome",
|
| 68 |
+
"description": "判断字符串是否回文",
|
| 69 |
+
"inputSchema": {
|
| 70 |
+
"type": "object",
|
| 71 |
+
"properties": {
|
| 72 |
+
"text": {
|
| 73 |
+
"type": "string",
|
| 74 |
+
"discription":""
|
| 75 |
+
}
|
| 76 |
+
},
|
| 77 |
+
"required": [
|
| 78 |
+
"text"
|
| 79 |
+
]
|
| 80 |
+
}
|
| 81 |
+
},
|
| 82 |
+
{
|
| 83 |
+
"name": "remove_punctuation",
|
| 84 |
+
"description": "去除标点符号",
|
| 85 |
+
"inputSchema": {
|
| 86 |
+
"type": "object",
|
| 87 |
+
"properties": {
|
| 88 |
+
"text": {
|
| 89 |
+
"type": "string",
|
| 90 |
+
"discription":""
|
| 91 |
+
}
|
| 92 |
+
},
|
| 93 |
+
"required": [
|
| 94 |
+
"text"
|
| 95 |
+
]
|
| 96 |
+
}
|
| 97 |
+
},
|
| 98 |
+
{
|
| 99 |
+
"name": "extract_numbers",
|
| 100 |
+
"description": "提取文本中的所有数字",
|
| 101 |
+
"inputSchema": {
|
| 102 |
+
"type": "object",
|
| 103 |
+
"properties": {
|
| 104 |
+
"text": {
|
| 105 |
+
"type": "string",
|
| 106 |
+
"discription":""
|
| 107 |
+
}
|
| 108 |
+
},
|
| 109 |
+
"required": [
|
| 110 |
+
"text"
|
| 111 |
+
]
|
| 112 |
+
}
|
| 113 |
+
}
|
| 114 |
+
]
|
Unofficial/US stock and cryptocurrency market information.json
ADDED
|
@@ -0,0 +1,321 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{
|
| 3 |
+
"name": "get_income_statements",
|
| 4 |
+
"description": "Get income statements for a company.",
|
| 5 |
+
"inputSchema": {
|
| 6 |
+
"type": "object",
|
| 7 |
+
"properties": {
|
| 8 |
+
"ticker": {
|
| 9 |
+
"type": "string",
|
| 10 |
+
"discription":"Ticker symbol of the company (e.g. AAPL, GOOGL)"
|
| 11 |
+
},
|
| 12 |
+
"period": {
|
| 13 |
+
"type": "string",
|
| 14 |
+
"discription":"Period of the income statement (e.g. annual, quarterly, ttm)"
|
| 15 |
+
},
|
| 16 |
+
"limit": {
|
| 17 |
+
"type": "integer",
|
| 18 |
+
"discription":"Number of income statements to return (default: 4)"
|
| 19 |
+
}
|
| 20 |
+
},
|
| 21 |
+
"required": [
|
| 22 |
+
"ticker"
|
| 23 |
+
]
|
| 24 |
+
}
|
| 25 |
+
},
|
| 26 |
+
{
|
| 27 |
+
"name": "get_balance_sheets",
|
| 28 |
+
"description": "Get balance sheets for a company.",
|
| 29 |
+
"inputSchema": {
|
| 30 |
+
"type": "object",
|
| 31 |
+
"properties": {
|
| 32 |
+
"ticker": {
|
| 33 |
+
"type": "string",
|
| 34 |
+
"discription":"Ticker symbol of the company (e.g. AAPL, GOOGL)"
|
| 35 |
+
},
|
| 36 |
+
"period": {
|
| 37 |
+
"type": "string",
|
| 38 |
+
"discription":"Period of the balance sheet (e.g. annual, quarterly, ttm)"
|
| 39 |
+
},
|
| 40 |
+
"limit": {
|
| 41 |
+
"type": "integer",
|
| 42 |
+
"discription":"Number of balance sheets to return (default: 4)"
|
| 43 |
+
}
|
| 44 |
+
},
|
| 45 |
+
"required": [
|
| 46 |
+
"ticker"
|
| 47 |
+
]
|
| 48 |
+
}
|
| 49 |
+
},
|
| 50 |
+
{
|
| 51 |
+
"name": "get_cash_flow_statements",
|
| 52 |
+
"description": "Get cash flow statements for a company.",
|
| 53 |
+
"inputSchema": {
|
| 54 |
+
"type": "object",
|
| 55 |
+
"properties": {
|
| 56 |
+
"ticker": {
|
| 57 |
+
"type": "string",
|
| 58 |
+
"discription":"Ticker symbol of the company (e.g. AAPL, GOOGL)"
|
| 59 |
+
},
|
| 60 |
+
"period": {
|
| 61 |
+
"type": "string",
|
| 62 |
+
"discription":"Period of the cash flow statement (e.g. annual, quarterly, ttm)"
|
| 63 |
+
},
|
| 64 |
+
"limit": {
|
| 65 |
+
"type": "integer",
|
| 66 |
+
"discription":"Number of cash flow statements to return (default: 4)"
|
| 67 |
+
}
|
| 68 |
+
},
|
| 69 |
+
"required": [
|
| 70 |
+
"ticker"
|
| 71 |
+
]
|
| 72 |
+
}
|
| 73 |
+
},
|
| 74 |
+
{
|
| 75 |
+
"name": "get_current_stock_price",
|
| 76 |
+
"description": "Get the current / latest price of a company.",
|
| 77 |
+
"inputSchema": {
|
| 78 |
+
"type": "object",
|
| 79 |
+
"properties": {
|
| 80 |
+
"ticker": {
|
| 81 |
+
"type": "string",
|
| 82 |
+
"discription":"Ticker symbol of the company (e.g. AAPL, GOOGL)"
|
| 83 |
+
}
|
| 84 |
+
},
|
| 85 |
+
"required": [
|
| 86 |
+
"ticker"
|
| 87 |
+
]
|
| 88 |
+
}
|
| 89 |
+
},
|
| 90 |
+
{
|
| 91 |
+
"name": "get_historical_stock_prices",
|
| 92 |
+
"description": "Gets historical stock prices for a company.",
|
| 93 |
+
"inputSchema": {
|
| 94 |
+
"type": "object",
|
| 95 |
+
"properties": {
|
| 96 |
+
"ticker": {
|
| 97 |
+
"type": "string",
|
| 98 |
+
"discription":"Ticker symbol of the company (e.g. AAPL, GOOGL)"
|
| 99 |
+
},
|
| 100 |
+
"start_date": {
|
| 101 |
+
"type": "string",
|
| 102 |
+
"discription":"Start date of the price data (e.g. 2020-01-01)"
|
| 103 |
+
},
|
| 104 |
+
"end_date": {
|
| 105 |
+
"type": "string",
|
| 106 |
+
"discription":"End date of the price data (e.g. 2020-12-31)"
|
| 107 |
+
},
|
| 108 |
+
"interval": {
|
| 109 |
+
"type": "string",
|
| 110 |
+
"discription":"Interval of the price data (e.g. minute, hour, day, week, month)"
|
| 111 |
+
},
|
| 112 |
+
"interval_multiplier": {
|
| 113 |
+
"type": "integer",
|
| 114 |
+
"discription":"Multiplier of the interval (e.g. 1, 2, 3)"
|
| 115 |
+
}
|
| 116 |
+
},
|
| 117 |
+
"required": [
|
| 118 |
+
"ticker",
|
| 119 |
+
"start_date",
|
| 120 |
+
"end_date"
|
| 121 |
+
]
|
| 122 |
+
}
|
| 123 |
+
},
|
| 124 |
+
{
|
| 125 |
+
"name": "get_company_news",
|
| 126 |
+
"description": "Get news for a company.",
|
| 127 |
+
"inputSchema": {
|
| 128 |
+
"type": "object",
|
| 129 |
+
"properties": {
|
| 130 |
+
"ticker": {
|
| 131 |
+
"type": "string",
|
| 132 |
+
"discription":"Ticker symbol of the company (e.g. AAPL, GOOGL)"
|
| 133 |
+
}
|
| 134 |
+
},
|
| 135 |
+
"required": [
|
| 136 |
+
"ticker"
|
| 137 |
+
]
|
| 138 |
+
}
|
| 139 |
+
},
|
| 140 |
+
{
|
| 141 |
+
"name": "get_available_crypto_tickers",
|
| 142 |
+
"description": "Gets all available crypto tickers.",
|
| 143 |
+
"inputSchema": {
|
| 144 |
+
"type": "object",
|
| 145 |
+
"properties": {},
|
| 146 |
+
"required": []
|
| 147 |
+
}
|
| 148 |
+
},
|
| 149 |
+
{
|
| 150 |
+
"name": "get_crypto_prices",
|
| 151 |
+
"description": "Gets historical prices for a crypto currency.",
|
| 152 |
+
"inputSchema": {
|
| 153 |
+
"type": "object",
|
| 154 |
+
"properties": {
|
| 155 |
+
"ticker": {
|
| 156 |
+
"type": "string",
|
| 157 |
+
"discription":""
|
| 158 |
+
},
|
| 159 |
+
"start_date": {
|
| 160 |
+
"type": "string",
|
| 161 |
+
"discription":""
|
| 162 |
+
},
|
| 163 |
+
"end_date": {
|
| 164 |
+
"type": "string",
|
| 165 |
+
"discription":""
|
| 166 |
+
},
|
| 167 |
+
"interval": {
|
| 168 |
+
"type": "string",
|
| 169 |
+
"discription":""
|
| 170 |
+
},
|
| 171 |
+
"interval_multiplier": {
|
| 172 |
+
"type": "integer",
|
| 173 |
+
"discription":""
|
| 174 |
+
}
|
| 175 |
+
},
|
| 176 |
+
"required": [
|
| 177 |
+
"ticker",
|
| 178 |
+
"start_date",
|
| 179 |
+
"end_date"
|
| 180 |
+
]
|
| 181 |
+
}
|
| 182 |
+
},
|
| 183 |
+
{
|
| 184 |
+
"name": "get_historical_crypto_prices",
|
| 185 |
+
"description": "Gets historical prices for a crypto currency.",
|
| 186 |
+
"inputSchema": {
|
| 187 |
+
"type": "object",
|
| 188 |
+
"properties": {
|
| 189 |
+
"ticker": {
|
| 190 |
+
"type": "string",
|
| 191 |
+
"discription":"Ticker symbol of the crypto currency (e.g. BTC-USD). The list of available crypto tickers can be retrieved via the get_available_crypto_tickers tool."
|
| 192 |
+
},
|
| 193 |
+
"start_date": {
|
| 194 |
+
"type": "string",
|
| 195 |
+
"discription":"Start date of the price data (e.g. 2020-01-01)"
|
| 196 |
+
},
|
| 197 |
+
"end_date": {
|
| 198 |
+
"type": "string",
|
| 199 |
+
"discription":"End date of the price data (e.g. 2020-12-31)"
|
| 200 |
+
},
|
| 201 |
+
"interval": {
|
| 202 |
+
"type": "string",
|
| 203 |
+
"discription":"Interval of the price data (e.g. minute, hour, day, week, month)"
|
| 204 |
+
},
|
| 205 |
+
"interval_multiplier": {
|
| 206 |
+
"type": "integer",
|
| 207 |
+
"discription":"Multiplier of the interval (e.g. 1, 2, 3)"
|
| 208 |
+
}
|
| 209 |
+
},
|
| 210 |
+
"required": [
|
| 211 |
+
"ticker",
|
| 212 |
+
"start_date",
|
| 213 |
+
"end_date"
|
| 214 |
+
]
|
| 215 |
+
}
|
| 216 |
+
},
|
| 217 |
+
{
|
| 218 |
+
"name": "get_current_crypto_price",
|
| 219 |
+
"description": "Get the current / latest price of a crypto currency.",
|
| 220 |
+
"inputSchema": {
|
| 221 |
+
"type": "object",
|
| 222 |
+
"properties": {
|
| 223 |
+
"ticker": {
|
| 224 |
+
"type": "string",
|
| 225 |
+
"discription":"Ticker symbol of the crypto currency (e.g. BTC-USD). The list of available crypto tickers can be retrieved via the get_available_crypto_tickers tool."
|
| 226 |
+
}
|
| 227 |
+
},
|
| 228 |
+
"required": [
|
| 229 |
+
"ticker"
|
| 230 |
+
]
|
| 231 |
+
}
|
| 232 |
+
},
|
| 233 |
+
{
|
| 234 |
+
"name": "get_sec_filings",
|
| 235 |
+
"description": "Get all SEC filings for a company.",
|
| 236 |
+
"inputSchema": {
|
| 237 |
+
"type": "object",
|
| 238 |
+
"properties": {
|
| 239 |
+
"ticker": {
|
| 240 |
+
"type": "string",
|
| 241 |
+
"discription":"Ticker symbol of the company (e.g. AAPL, GOOGL)"
|
| 242 |
+
},
|
| 243 |
+
"limit": {
|
| 244 |
+
"type": "integer",
|
| 245 |
+
"discription":"Number of SEC filings to return (default: 10)"
|
| 246 |
+
},
|
| 247 |
+
"filing_type": {
|
| 248 |
+
"type": "string",
|
| 249 |
+
"discription":"Type of SEC filing (e.g. 10-K, 10-Q, 8-K)"
|
| 250 |
+
}
|
| 251 |
+
},
|
| 252 |
+
"required": [
|
| 253 |
+
"ticker"
|
| 254 |
+
]
|
| 255 |
+
}
|
| 256 |
+
},
|
| 257 |
+
{
|
| 258 |
+
"name": "search_google_scholar_key_words",
|
| 259 |
+
"description": "No description available.",
|
| 260 |
+
"inputSchema": {
|
| 261 |
+
"type": "object",
|
| 262 |
+
"properties": {
|
| 263 |
+
"query": {
|
| 264 |
+
"type": "string",
|
| 265 |
+
"discription":"Search query string"
|
| 266 |
+
},
|
| 267 |
+
"num_results": {
|
| 268 |
+
"type": "integer",
|
| 269 |
+
"discription":"Number of results to return (default: 5)"
|
| 270 |
+
}
|
| 271 |
+
},
|
| 272 |
+
"required": [
|
| 273 |
+
"query"
|
| 274 |
+
]
|
| 275 |
+
}
|
| 276 |
+
},
|
| 277 |
+
{
|
| 278 |
+
"name": "search_google_scholar_advanced",
|
| 279 |
+
"description": "No description available.",
|
| 280 |
+
"inputSchema": {
|
| 281 |
+
"type": "object",
|
| 282 |
+
"properties": {
|
| 283 |
+
"query": {
|
| 284 |
+
"type": "string",
|
| 285 |
+
"discription":"General search query"
|
| 286 |
+
},
|
| 287 |
+
"author": {
|
| 288 |
+
"type": "string",
|
| 289 |
+
"discription":"Author name"
|
| 290 |
+
},
|
| 291 |
+
"year_range": {
|
| 292 |
+
"type": "string",
|
| 293 |
+
"discription":"tuple containing (start_year, end_year)"
|
| 294 |
+
},
|
| 295 |
+
"num_results": {
|
| 296 |
+
"type": "integer",
|
| 297 |
+
"discription":" Number of results to return (default: 5)"
|
| 298 |
+
}
|
| 299 |
+
},
|
| 300 |
+
"required": [
|
| 301 |
+
"query"
|
| 302 |
+
]
|
| 303 |
+
}
|
| 304 |
+
},
|
| 305 |
+
{
|
| 306 |
+
"name": "get_author_info",
|
| 307 |
+
"description": "No description available.",
|
| 308 |
+
"inputSchema": {
|
| 309 |
+
"type": "object",
|
| 310 |
+
"properties": {
|
| 311 |
+
"author_name": {
|
| 312 |
+
"type": "string",
|
| 313 |
+
"discription":"Name of the author to search for"
|
| 314 |
+
}
|
| 315 |
+
},
|
| 316 |
+
"required": [
|
| 317 |
+
"author_name"
|
| 318 |
+
]
|
| 319 |
+
}
|
| 320 |
+
}
|
| 321 |
+
]
|
Unofficial/US weather information .json
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{
|
| 3 |
+
"name": "get_alerts",
|
| 4 |
+
"description": "Get weather alerts for a US state.",
|
| 5 |
+
"inputSchema": {
|
| 6 |
+
"type": "object",
|
| 7 |
+
"properties": {
|
| 8 |
+
"state": {
|
| 9 |
+
"type": "string",
|
| 10 |
+
"discription":"Two-letter US state code (e.g. CA, NY)"
|
| 11 |
+
}
|
| 12 |
+
},
|
| 13 |
+
"required": [
|
| 14 |
+
"state"
|
| 15 |
+
]
|
| 16 |
+
}
|
| 17 |
+
},
|
| 18 |
+
{
|
| 19 |
+
"name": "get_forecast",
|
| 20 |
+
"description": "Get weather forecast for a location.",
|
| 21 |
+
"inputSchema": {
|
| 22 |
+
"type": "object",
|
| 23 |
+
"properties": {
|
| 24 |
+
"latitude": {
|
| 25 |
+
"type": "number",
|
| 26 |
+
"discription":"Latitude of the location"
|
| 27 |
+
},
|
| 28 |
+
"longitude": {
|
| 29 |
+
"type": "number",
|
| 30 |
+
"discription":"Longitude of the location"
|
| 31 |
+
}
|
| 32 |
+
},
|
| 33 |
+
"required": [
|
| 34 |
+
"latitude",
|
| 35 |
+
"longitude"
|
| 36 |
+
]
|
| 37 |
+
}
|
| 38 |
+
}
|
| 39 |
+
]
|
Unofficial/Unit conversions.json
ADDED
|
@@ -0,0 +1,130 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{
|
| 3 |
+
"name": "celsius_to_fahrenheit",
|
| 4 |
+
"description": "摄氏度转华氏度",
|
| 5 |
+
"inputSchema": {
|
| 6 |
+
"type": "object",
|
| 7 |
+
"properties": {
|
| 8 |
+
"c": {
|
| 9 |
+
"type": "number",
|
| 10 |
+
"discription":""
|
| 11 |
+
}
|
| 12 |
+
},
|
| 13 |
+
"required": [
|
| 14 |
+
"c"
|
| 15 |
+
]
|
| 16 |
+
}
|
| 17 |
+
},
|
| 18 |
+
{
|
| 19 |
+
"name": "fahrenheit_to_celsius",
|
| 20 |
+
"description": "华氏度转摄氏度",
|
| 21 |
+
"inputSchema": {
|
| 22 |
+
"type": "object",
|
| 23 |
+
"properties": {
|
| 24 |
+
"f": {
|
| 25 |
+
"type": "number",
|
| 26 |
+
"discription":""
|
| 27 |
+
}
|
| 28 |
+
},
|
| 29 |
+
"required": [
|
| 30 |
+
"f"
|
| 31 |
+
]
|
| 32 |
+
}
|
| 33 |
+
},
|
| 34 |
+
{
|
| 35 |
+
"name": "km_to_miles",
|
| 36 |
+
"description": "公里转英里",
|
| 37 |
+
"inputSchema": {
|
| 38 |
+
"type": "object",
|
| 39 |
+
"properties": {
|
| 40 |
+
"km": {
|
| 41 |
+
"type": "number",
|
| 42 |
+
"discription":""
|
| 43 |
+
}
|
| 44 |
+
},
|
| 45 |
+
"required": [
|
| 46 |
+
"km"
|
| 47 |
+
]
|
| 48 |
+
}
|
| 49 |
+
},
|
| 50 |
+
{
|
| 51 |
+
"name": "miles_to_km",
|
| 52 |
+
"description": "英里转公里",
|
| 53 |
+
"inputSchema": {
|
| 54 |
+
"type": "object",
|
| 55 |
+
"properties": {
|
| 56 |
+
"miles": {
|
| 57 |
+
"type": "number",
|
| 58 |
+
"discription":""
|
| 59 |
+
}
|
| 60 |
+
},
|
| 61 |
+
"required": [
|
| 62 |
+
"miles"
|
| 63 |
+
]
|
| 64 |
+
}
|
| 65 |
+
},
|
| 66 |
+
{
|
| 67 |
+
"name": "kg_to_lb",
|
| 68 |
+
"description": "千克转磅",
|
| 69 |
+
"inputSchema": {
|
| 70 |
+
"type": "object",
|
| 71 |
+
"properties": {
|
| 72 |
+
"kg": {
|
| 73 |
+
"type": "number",
|
| 74 |
+
"discription":""
|
| 75 |
+
}
|
| 76 |
+
},
|
| 77 |
+
"required": [
|
| 78 |
+
"kg"
|
| 79 |
+
]
|
| 80 |
+
}
|
| 81 |
+
},
|
| 82 |
+
{
|
| 83 |
+
"name": "lb_to_kg",
|
| 84 |
+
"description": "磅转千克",
|
| 85 |
+
"inputSchema": {
|
| 86 |
+
"type": "object",
|
| 87 |
+
"properties": {
|
| 88 |
+
"lb": {
|
| 89 |
+
"type": "number",
|
| 90 |
+
"discription":""
|
| 91 |
+
}
|
| 92 |
+
},
|
| 93 |
+
"required": [
|
| 94 |
+
"lb"
|
| 95 |
+
]
|
| 96 |
+
}
|
| 97 |
+
},
|
| 98 |
+
{
|
| 99 |
+
"name": "cm_to_inch",
|
| 100 |
+
"description": "厘米转英寸",
|
| 101 |
+
"inputSchema": {
|
| 102 |
+
"type": "object",
|
| 103 |
+
"properties": {
|
| 104 |
+
"cm": {
|
| 105 |
+
"type": "number",
|
| 106 |
+
"discription":""
|
| 107 |
+
}
|
| 108 |
+
},
|
| 109 |
+
"required": [
|
| 110 |
+
"cm"
|
| 111 |
+
]
|
| 112 |
+
}
|
| 113 |
+
},
|
| 114 |
+
{
|
| 115 |
+
"name": "inch_to_cm",
|
| 116 |
+
"description": "英寸转厘米",
|
| 117 |
+
"inputSchema": {
|
| 118 |
+
"type": "object",
|
| 119 |
+
"properties": {
|
| 120 |
+
"inch": {
|
| 121 |
+
"type": "number",
|
| 122 |
+
"discription":""
|
| 123 |
+
}
|
| 124 |
+
},
|
| 125 |
+
"required": [
|
| 126 |
+
"inch"
|
| 127 |
+
]
|
| 128 |
+
}
|
| 129 |
+
}
|
| 130 |
+
]
|
Unofficial/Word document operations.json
ADDED
|
@@ -0,0 +1,689 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{
|
| 3 |
+
"name": "create_document",
|
| 4 |
+
"description": "Create a new Word document with optional metadata.",
|
| 5 |
+
"inputSchema": {
|
| 6 |
+
"type": "object",
|
| 7 |
+
"properties": {
|
| 8 |
+
"filename": {
|
| 9 |
+
"type": "string",
|
| 10 |
+
"discription":""
|
| 11 |
+
},
|
| 12 |
+
"title": {
|
| 13 |
+
"type": "string",
|
| 14 |
+
"discription":""
|
| 15 |
+
},
|
| 16 |
+
"author": {
|
| 17 |
+
"type": "string",
|
| 18 |
+
"discription":""
|
| 19 |
+
}
|
| 20 |
+
},
|
| 21 |
+
"required": [
|
| 22 |
+
"filename"
|
| 23 |
+
]
|
| 24 |
+
}
|
| 25 |
+
},
|
| 26 |
+
{
|
| 27 |
+
"name": "copy_document",
|
| 28 |
+
"description": "Create a copy of a Word document.",
|
| 29 |
+
"inputSchema": {
|
| 30 |
+
"type": "object",
|
| 31 |
+
"properties": {
|
| 32 |
+
"source_filename": {
|
| 33 |
+
"type": "string",
|
| 34 |
+
"discription":""
|
| 35 |
+
},
|
| 36 |
+
"destination_filename": {
|
| 37 |
+
"type": "string",
|
| 38 |
+
"discription":""
|
| 39 |
+
}
|
| 40 |
+
},
|
| 41 |
+
"required": [
|
| 42 |
+
"source_filename"
|
| 43 |
+
]
|
| 44 |
+
}
|
| 45 |
+
},
|
| 46 |
+
{
|
| 47 |
+
"name": "get_document_info",
|
| 48 |
+
"description": "Get information about a Word document.",
|
| 49 |
+
"inputSchema": {
|
| 50 |
+
"type": "object",
|
| 51 |
+
"properties": {
|
| 52 |
+
"filename": {
|
| 53 |
+
"type": "string",
|
| 54 |
+
"discription":""
|
| 55 |
+
}
|
| 56 |
+
},
|
| 57 |
+
"required": [
|
| 58 |
+
"filename"
|
| 59 |
+
]
|
| 60 |
+
}
|
| 61 |
+
},
|
| 62 |
+
{
|
| 63 |
+
"name": "get_document_text",
|
| 64 |
+
"description": "Extract all text from a Word document.",
|
| 65 |
+
"inputSchema": {
|
| 66 |
+
"type": "object",
|
| 67 |
+
"properties": {
|
| 68 |
+
"filename": {
|
| 69 |
+
"type": "string",
|
| 70 |
+
"discription":""
|
| 71 |
+
}
|
| 72 |
+
},
|
| 73 |
+
"required": [
|
| 74 |
+
"filename"
|
| 75 |
+
]
|
| 76 |
+
}
|
| 77 |
+
},
|
| 78 |
+
{
|
| 79 |
+
"name": "get_document_outline",
|
| 80 |
+
"description": "Get the structure of a Word document.",
|
| 81 |
+
"inputSchema": {
|
| 82 |
+
"type": "object",
|
| 83 |
+
"properties": {
|
| 84 |
+
"filename": {
|
| 85 |
+
"type": "string",
|
| 86 |
+
"discription":""
|
| 87 |
+
}
|
| 88 |
+
},
|
| 89 |
+
"required": [
|
| 90 |
+
"filename"
|
| 91 |
+
]
|
| 92 |
+
}
|
| 93 |
+
},
|
| 94 |
+
{
|
| 95 |
+
"name": "list_available_documents",
|
| 96 |
+
"description": "List all .docx files in the specified directory.",
|
| 97 |
+
"inputSchema": {
|
| 98 |
+
"type": "object",
|
| 99 |
+
"properties": {
|
| 100 |
+
"directory": {
|
| 101 |
+
"type": "string",
|
| 102 |
+
"discription":""
|
| 103 |
+
}
|
| 104 |
+
},
|
| 105 |
+
"required": []
|
| 106 |
+
}
|
| 107 |
+
},
|
| 108 |
+
{
|
| 109 |
+
"name": "get_document_xml",
|
| 110 |
+
"description": "Get the raw XML structure of a Word document.",
|
| 111 |
+
"inputSchema": {
|
| 112 |
+
"type": "object",
|
| 113 |
+
"properties": {
|
| 114 |
+
"filename": {
|
| 115 |
+
"type": "string",
|
| 116 |
+
"discription":""
|
| 117 |
+
}
|
| 118 |
+
},
|
| 119 |
+
"required": [
|
| 120 |
+
"filename"
|
| 121 |
+
]
|
| 122 |
+
}
|
| 123 |
+
},
|
| 124 |
+
{
|
| 125 |
+
"name": "insert_header_near_text",
|
| 126 |
+
"description": "Insert a header (with specified style) before or after the first paragraph containing target_text. Args: filename (str), target_text (str), header_title (str), position ('before' or 'after'), header_style (str, default 'Heading 1').",
|
| 127 |
+
"inputSchema": {
|
| 128 |
+
"type": "object",
|
| 129 |
+
"properties": {
|
| 130 |
+
"filename": {
|
| 131 |
+
"type": "string",
|
| 132 |
+
"discription":""
|
| 133 |
+
},
|
| 134 |
+
"target_text": {
|
| 135 |
+
"type": "string",
|
| 136 |
+
"discription":""
|
| 137 |
+
},
|
| 138 |
+
"header_title": {
|
| 139 |
+
"type": "string",
|
| 140 |
+
"discription":""
|
| 141 |
+
},
|
| 142 |
+
"position": {
|
| 143 |
+
"type": "string",
|
| 144 |
+
"discription":""
|
| 145 |
+
},
|
| 146 |
+
"header_style": {
|
| 147 |
+
"type": "string",
|
| 148 |
+
"discription":""
|
| 149 |
+
}
|
| 150 |
+
},
|
| 151 |
+
"required": [
|
| 152 |
+
"filename",
|
| 153 |
+
"target_text",
|
| 154 |
+
"header_title"
|
| 155 |
+
]
|
| 156 |
+
}
|
| 157 |
+
},
|
| 158 |
+
{
|
| 159 |
+
"name": "insert_line_or_paragraph_near_text",
|
| 160 |
+
"description": "Insert a new line or paragraph (with specified or matched style) before or after the first paragraph containing target_text.",
|
| 161 |
+
"inputSchema": {
|
| 162 |
+
"type": "object",
|
| 163 |
+
"properties": {
|
| 164 |
+
"filename": {
|
| 165 |
+
"type": "string",
|
| 166 |
+
"discription":""
|
| 167 |
+
},
|
| 168 |
+
"target_text": {
|
| 169 |
+
"type": "string",
|
| 170 |
+
"discription":""
|
| 171 |
+
},
|
| 172 |
+
"line_text": {
|
| 173 |
+
"type": "string",
|
| 174 |
+
"discription":""
|
| 175 |
+
},
|
| 176 |
+
"position": {
|
| 177 |
+
"type": "string",
|
| 178 |
+
"discription":"'before' or 'after'"
|
| 179 |
+
},
|
| 180 |
+
"line_style": {
|
| 181 |
+
"type": "string",
|
| 182 |
+
"discription":""
|
| 183 |
+
}
|
| 184 |
+
},
|
| 185 |
+
"required": [
|
| 186 |
+
"filename",
|
| 187 |
+
"target_text",
|
| 188 |
+
"line_text"
|
| 189 |
+
]
|
| 190 |
+
}
|
| 191 |
+
},
|
| 192 |
+
{
|
| 193 |
+
"name": "add_paragraph",
|
| 194 |
+
"description": "Add a paragraph to a Word document.",
|
| 195 |
+
"inputSchema": {
|
| 196 |
+
"type": "object",
|
| 197 |
+
"properties": {
|
| 198 |
+
"filename": {
|
| 199 |
+
"type": "string",
|
| 200 |
+
"discription":""
|
| 201 |
+
},
|
| 202 |
+
"text": {
|
| 203 |
+
"type": "string",
|
| 204 |
+
"discription":""
|
| 205 |
+
},
|
| 206 |
+
"style": {
|
| 207 |
+
"type": "string",
|
| 208 |
+
"discription":""
|
| 209 |
+
}
|
| 210 |
+
},
|
| 211 |
+
"required": [
|
| 212 |
+
"filename",
|
| 213 |
+
"text"
|
| 214 |
+
]
|
| 215 |
+
}
|
| 216 |
+
},
|
| 217 |
+
{
|
| 218 |
+
"name": "add_heading",
|
| 219 |
+
"description": "Add a heading to a Word document.",
|
| 220 |
+
"inputSchema": {
|
| 221 |
+
"type": "object",
|
| 222 |
+
"properties": {
|
| 223 |
+
"filename": {
|
| 224 |
+
"type": "string",
|
| 225 |
+
"discription":""
|
| 226 |
+
},
|
| 227 |
+
"text": {
|
| 228 |
+
"type": "string",
|
| 229 |
+
"discription":""
|
| 230 |
+
},
|
| 231 |
+
"level": {
|
| 232 |
+
"type": "integer",
|
| 233 |
+
"discription":""
|
| 234 |
+
}
|
| 235 |
+
},
|
| 236 |
+
"required": [
|
| 237 |
+
"filename",
|
| 238 |
+
"text"
|
| 239 |
+
]
|
| 240 |
+
}
|
| 241 |
+
},
|
| 242 |
+
{
|
| 243 |
+
"name": "add_picture",
|
| 244 |
+
"description": "Add an image to a Word document.",
|
| 245 |
+
"inputSchema": {
|
| 246 |
+
"type": "object",
|
| 247 |
+
"properties": {
|
| 248 |
+
"filename": {
|
| 249 |
+
"type": "string",
|
| 250 |
+
"discription":""
|
| 251 |
+
},
|
| 252 |
+
"image_path": {
|
| 253 |
+
"type": "string",
|
| 254 |
+
"discription":""
|
| 255 |
+
},
|
| 256 |
+
"width": {
|
| 257 |
+
"type": "number",
|
| 258 |
+
"discription":""
|
| 259 |
+
}
|
| 260 |
+
},
|
| 261 |
+
"required": [
|
| 262 |
+
"filename",
|
| 263 |
+
"image_path"
|
| 264 |
+
]
|
| 265 |
+
}
|
| 266 |
+
},
|
| 267 |
+
{
|
| 268 |
+
"name": "add_table",
|
| 269 |
+
"description": "Add a table to a Word document.",
|
| 270 |
+
"inputSchema": {
|
| 271 |
+
"type": "object",
|
| 272 |
+
"properties": {
|
| 273 |
+
"filename": {
|
| 274 |
+
"type": "string",
|
| 275 |
+
"discription":""
|
| 276 |
+
},
|
| 277 |
+
"rows": {
|
| 278 |
+
"type": "integer",
|
| 279 |
+
"discription":""
|
| 280 |
+
},
|
| 281 |
+
"cols": {
|
| 282 |
+
"type": "integer",
|
| 283 |
+
"discription":""
|
| 284 |
+
},
|
| 285 |
+
"data": {
|
| 286 |
+
"type": "array",
|
| 287 |
+
"discription":""
|
| 288 |
+
}
|
| 289 |
+
},
|
| 290 |
+
"required": [
|
| 291 |
+
"filename",
|
| 292 |
+
"rows",
|
| 293 |
+
"cols"
|
| 294 |
+
]
|
| 295 |
+
}
|
| 296 |
+
},
|
| 297 |
+
{
|
| 298 |
+
"name": "add_page_break",
|
| 299 |
+
"description": "Add a page break to the document.",
|
| 300 |
+
"inputSchema": {
|
| 301 |
+
"type": "object",
|
| 302 |
+
"properties": {
|
| 303 |
+
"filename": {
|
| 304 |
+
"type": "string",
|
| 305 |
+
"discription":""
|
| 306 |
+
}
|
| 307 |
+
},
|
| 308 |
+
"required": [
|
| 309 |
+
"filename"
|
| 310 |
+
]
|
| 311 |
+
}
|
| 312 |
+
},
|
| 313 |
+
{
|
| 314 |
+
"name": "delete_paragraph",
|
| 315 |
+
"description": "Delete a paragraph from a document.",
|
| 316 |
+
"inputSchema": {
|
| 317 |
+
"type": "object",
|
| 318 |
+
"properties": {
|
| 319 |
+
"filename": {
|
| 320 |
+
"type": "string",
|
| 321 |
+
"discription":""
|
| 322 |
+
},
|
| 323 |
+
"paragraph_index": {
|
| 324 |
+
"type": "integer",
|
| 325 |
+
"discription":""
|
| 326 |
+
}
|
| 327 |
+
},
|
| 328 |
+
"required": [
|
| 329 |
+
"filename",
|
| 330 |
+
"paragraph_index"
|
| 331 |
+
]
|
| 332 |
+
}
|
| 333 |
+
},
|
| 334 |
+
{
|
| 335 |
+
"name": "search_and_replace",
|
| 336 |
+
"description": "Search for text and replace all occurrences.",
|
| 337 |
+
"inputSchema": {
|
| 338 |
+
"type": "object",
|
| 339 |
+
"properties": {
|
| 340 |
+
"filename": {
|
| 341 |
+
"type": "string",
|
| 342 |
+
"discription":""
|
| 343 |
+
},
|
| 344 |
+
"find_text": {
|
| 345 |
+
"type": "string",
|
| 346 |
+
"discription":""
|
| 347 |
+
},
|
| 348 |
+
"replace_text": {
|
| 349 |
+
"type": "string",
|
| 350 |
+
"discription":""
|
| 351 |
+
}
|
| 352 |
+
},
|
| 353 |
+
"required": [
|
| 354 |
+
"filename",
|
| 355 |
+
"find_text",
|
| 356 |
+
"replace_text"
|
| 357 |
+
]
|
| 358 |
+
}
|
| 359 |
+
},
|
| 360 |
+
{
|
| 361 |
+
"name": "create_custom_style",
|
| 362 |
+
"description": "Create a custom style in the document.",
|
| 363 |
+
"inputSchema": {
|
| 364 |
+
"type": "object",
|
| 365 |
+
"properties": {
|
| 366 |
+
"filename": {
|
| 367 |
+
"type": "string",
|
| 368 |
+
"discription":""
|
| 369 |
+
},
|
| 370 |
+
"style_name": {
|
| 371 |
+
"type": "string",
|
| 372 |
+
"discription":""
|
| 373 |
+
},
|
| 374 |
+
"bold": {
|
| 375 |
+
"type": "boolean",
|
| 376 |
+
"discription":""
|
| 377 |
+
},
|
| 378 |
+
"italic": {
|
| 379 |
+
"type": "boolean",
|
| 380 |
+
"discription":""
|
| 381 |
+
},
|
| 382 |
+
"font_size": {
|
| 383 |
+
"type": "integer",
|
| 384 |
+
"discription":""
|
| 385 |
+
},
|
| 386 |
+
"font_name": {
|
| 387 |
+
"type": "string",
|
| 388 |
+
"discription":""
|
| 389 |
+
},
|
| 390 |
+
"color": {
|
| 391 |
+
"type": "string",
|
| 392 |
+
"discription":""
|
| 393 |
+
},
|
| 394 |
+
"base_style": {
|
| 395 |
+
"type": "string",
|
| 396 |
+
"discription":""
|
| 397 |
+
}
|
| 398 |
+
},
|
| 399 |
+
"required": [
|
| 400 |
+
"filename",
|
| 401 |
+
"style_name"
|
| 402 |
+
]
|
| 403 |
+
}
|
| 404 |
+
},
|
| 405 |
+
{
|
| 406 |
+
"name": "format_text",
|
| 407 |
+
"description": "Format a specific range of text within a paragraph.",
|
| 408 |
+
"inputSchema": {
|
| 409 |
+
"type": "object",
|
| 410 |
+
"properties": {
|
| 411 |
+
"filename": {
|
| 412 |
+
"type": "string",
|
| 413 |
+
"discription":""
|
| 414 |
+
},
|
| 415 |
+
"paragraph_index": {
|
| 416 |
+
"type": "integer",
|
| 417 |
+
"discription":""
|
| 418 |
+
},
|
| 419 |
+
"start_pos": {
|
| 420 |
+
"type": "integer",
|
| 421 |
+
"discription":""
|
| 422 |
+
},
|
| 423 |
+
"end_pos": {
|
| 424 |
+
"type": "integer",
|
| 425 |
+
"discription":""
|
| 426 |
+
},
|
| 427 |
+
"bold": {
|
| 428 |
+
"type": "boolean",
|
| 429 |
+
"discription":""
|
| 430 |
+
},
|
| 431 |
+
"italic": {
|
| 432 |
+
"type": "boolean",
|
| 433 |
+
"discription":""
|
| 434 |
+
},
|
| 435 |
+
"underline": {
|
| 436 |
+
"type": "boolean",
|
| 437 |
+
"discription":""
|
| 438 |
+
},
|
| 439 |
+
"color": {
|
| 440 |
+
"type": "string",
|
| 441 |
+
"discription":""
|
| 442 |
+
},
|
| 443 |
+
"font_size": {
|
| 444 |
+
"type": "integer",
|
| 445 |
+
"discription":""
|
| 446 |
+
},
|
| 447 |
+
"font_name": {
|
| 448 |
+
"type": "string",
|
| 449 |
+
"discription":""
|
| 450 |
+
}
|
| 451 |
+
},
|
| 452 |
+
"required": [
|
| 453 |
+
"filename",
|
| 454 |
+
"paragraph_index",
|
| 455 |
+
"start_pos",
|
| 456 |
+
"end_pos"
|
| 457 |
+
]
|
| 458 |
+
}
|
| 459 |
+
},
|
| 460 |
+
{
|
| 461 |
+
"name": "format_table",
|
| 462 |
+
"description": "Format a table with borders, shading, and structure.",
|
| 463 |
+
"inputSchema": {
|
| 464 |
+
"type": "object",
|
| 465 |
+
"properties": {
|
| 466 |
+
"filename": {
|
| 467 |
+
"type": "string",
|
| 468 |
+
"discription":""
|
| 469 |
+
},
|
| 470 |
+
"table_index": {
|
| 471 |
+
"type": "integer",
|
| 472 |
+
"discription":""
|
| 473 |
+
},
|
| 474 |
+
"has_header_row": {
|
| 475 |
+
"type": "boolean",
|
| 476 |
+
"discription":""
|
| 477 |
+
},
|
| 478 |
+
"border_style": {
|
| 479 |
+
"type": "string",
|
| 480 |
+
"discription":""
|
| 481 |
+
},
|
| 482 |
+
"shading": {
|
| 483 |
+
"type": "array",
|
| 484 |
+
"discription":""
|
| 485 |
+
}
|
| 486 |
+
},
|
| 487 |
+
"required": [
|
| 488 |
+
"filename",
|
| 489 |
+
"table_index"
|
| 490 |
+
]
|
| 491 |
+
}
|
| 492 |
+
},
|
| 493 |
+
{
|
| 494 |
+
"name": "protect_document",
|
| 495 |
+
"description": "Add password protection to a Word document.",
|
| 496 |
+
"inputSchema": {
|
| 497 |
+
"type": "object",
|
| 498 |
+
"properties": {
|
| 499 |
+
"filename": {
|
| 500 |
+
"type": "string",
|
| 501 |
+
"discription":""
|
| 502 |
+
},
|
| 503 |
+
"password": {
|
| 504 |
+
"type": "string",
|
| 505 |
+
"discription":""
|
| 506 |
+
}
|
| 507 |
+
},
|
| 508 |
+
"required": [
|
| 509 |
+
"filename",
|
| 510 |
+
"password"
|
| 511 |
+
]
|
| 512 |
+
}
|
| 513 |
+
},
|
| 514 |
+
{
|
| 515 |
+
"name": "unprotect_document",
|
| 516 |
+
"description": "Remove password protection from a Word document.",
|
| 517 |
+
"inputSchema": {
|
| 518 |
+
"type": "object",
|
| 519 |
+
"properties": {
|
| 520 |
+
"filename": {
|
| 521 |
+
"type": "string",
|
| 522 |
+
"discription":""
|
| 523 |
+
},
|
| 524 |
+
"password": {
|
| 525 |
+
"type": "string",
|
| 526 |
+
"discription":""
|
| 527 |
+
}
|
| 528 |
+
},
|
| 529 |
+
"required": [
|
| 530 |
+
"filename",
|
| 531 |
+
"password"
|
| 532 |
+
]
|
| 533 |
+
}
|
| 534 |
+
},
|
| 535 |
+
{
|
| 536 |
+
"name": "add_footnote_to_document",
|
| 537 |
+
"description": "Add a footnote to a specific paragraph in a Word document.",
|
| 538 |
+
"inputSchema": {
|
| 539 |
+
"type": "object",
|
| 540 |
+
"properties": {
|
| 541 |
+
"filename": {
|
| 542 |
+
"type": "string",
|
| 543 |
+
"discription":""
|
| 544 |
+
},
|
| 545 |
+
"paragraph_index": {
|
| 546 |
+
"type": "integer",
|
| 547 |
+
"discription":""
|
| 548 |
+
},
|
| 549 |
+
"footnote_text": {
|
| 550 |
+
"type": "string",
|
| 551 |
+
"discription":""
|
| 552 |
+
}
|
| 553 |
+
},
|
| 554 |
+
"required": [
|
| 555 |
+
"filename",
|
| 556 |
+
"paragraph_index",
|
| 557 |
+
"footnote_text"
|
| 558 |
+
]
|
| 559 |
+
}
|
| 560 |
+
},
|
| 561 |
+
{
|
| 562 |
+
"name": "add_endnote_to_document",
|
| 563 |
+
"description": "Add an endnote to a specific paragraph in a Word document.",
|
| 564 |
+
"inputSchema": {
|
| 565 |
+
"type": "object",
|
| 566 |
+
"properties": {
|
| 567 |
+
"filename": {
|
| 568 |
+
"type": "string",
|
| 569 |
+
"discription":""
|
| 570 |
+
},
|
| 571 |
+
"paragraph_index": {
|
| 572 |
+
"type": "integer",
|
| 573 |
+
"discription":""
|
| 574 |
+
},
|
| 575 |
+
"endnote_text": {
|
| 576 |
+
"type": "string",
|
| 577 |
+
"discription":""
|
| 578 |
+
}
|
| 579 |
+
},
|
| 580 |
+
"required": [
|
| 581 |
+
"filename",
|
| 582 |
+
"paragraph_index",
|
| 583 |
+
"endnote_text"
|
| 584 |
+
]
|
| 585 |
+
}
|
| 586 |
+
},
|
| 587 |
+
{
|
| 588 |
+
"name": "customize_footnote_style",
|
| 589 |
+
"description": "Customize footnote numbering and formatting in a Word document.",
|
| 590 |
+
"inputSchema": {
|
| 591 |
+
"type": "object",
|
| 592 |
+
"properties": {
|
| 593 |
+
"filename": {
|
| 594 |
+
"type": "string",
|
| 595 |
+
"discription":""
|
| 596 |
+
},
|
| 597 |
+
"numbering_format": {
|
| 598 |
+
"type": "string",
|
| 599 |
+
"discription":""
|
| 600 |
+
},
|
| 601 |
+
"start_number": {
|
| 602 |
+
"type": "integer",
|
| 603 |
+
"discription":""
|
| 604 |
+
},
|
| 605 |
+
"font_name": {
|
| 606 |
+
"type": "string",
|
| 607 |
+
"discription":""
|
| 608 |
+
},
|
| 609 |
+
"font_size": {
|
| 610 |
+
"type": "integer",
|
| 611 |
+
"discription":""
|
| 612 |
+
}
|
| 613 |
+
},
|
| 614 |
+
"required": [
|
| 615 |
+
"filename"
|
| 616 |
+
]
|
| 617 |
+
}
|
| 618 |
+
},
|
| 619 |
+
{
|
| 620 |
+
"name": "get_paragraph_text_from_document",
|
| 621 |
+
"description": "Get text from a specific paragraph in a Word document.",
|
| 622 |
+
"inputSchema": {
|
| 623 |
+
"type": "object",
|
| 624 |
+
"properties": {
|
| 625 |
+
"filename": {
|
| 626 |
+
"type": "string",
|
| 627 |
+
"discription":""
|
| 628 |
+
},
|
| 629 |
+
"paragraph_index": {
|
| 630 |
+
"type": "integer",
|
| 631 |
+
"discription":""
|
| 632 |
+
}
|
| 633 |
+
},
|
| 634 |
+
"required": [
|
| 635 |
+
"filename",
|
| 636 |
+
"paragraph_index"
|
| 637 |
+
]
|
| 638 |
+
}
|
| 639 |
+
},
|
| 640 |
+
{
|
| 641 |
+
"name": "find_text_in_document",
|
| 642 |
+
"description": "Find occurrences of specific text in a Word document.",
|
| 643 |
+
"inputSchema": {
|
| 644 |
+
"type": "object",
|
| 645 |
+
"properties": {
|
| 646 |
+
"filename": {
|
| 647 |
+
"type": "string",
|
| 648 |
+
"discription":""
|
| 649 |
+
},
|
| 650 |
+
"text_to_find": {
|
| 651 |
+
"type": "string",
|
| 652 |
+
"discription":""
|
| 653 |
+
},
|
| 654 |
+
"match_case": {
|
| 655 |
+
"type": "boolean",
|
| 656 |
+
"discription":""
|
| 657 |
+
},
|
| 658 |
+
"whole_word": {
|
| 659 |
+
"type": "boolean",
|
| 660 |
+
"discription":""
|
| 661 |
+
}
|
| 662 |
+
},
|
| 663 |
+
"required": [
|
| 664 |
+
"filename",
|
| 665 |
+
"text_to_find"
|
| 666 |
+
]
|
| 667 |
+
}
|
| 668 |
+
},
|
| 669 |
+
{
|
| 670 |
+
"name": "convert_to_pdf",
|
| 671 |
+
"description": "Convert a Word document to PDF format.",
|
| 672 |
+
"inputSchema": {
|
| 673 |
+
"type": "object",
|
| 674 |
+
"properties": {
|
| 675 |
+
"filename": {
|
| 676 |
+
"type": "string",
|
| 677 |
+
"discription":""
|
| 678 |
+
},
|
| 679 |
+
"output_filename": {
|
| 680 |
+
"type": "string",
|
| 681 |
+
"discription":""
|
| 682 |
+
}
|
| 683 |
+
},
|
| 684 |
+
"required": [
|
| 685 |
+
"filename"
|
| 686 |
+
]
|
| 687 |
+
}
|
| 688 |
+
}
|
| 689 |
+
]
|
Unofficial/calculate.json
ADDED
|
@@ -0,0 +1,275 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{
|
| 3 |
+
"name": "add",
|
| 4 |
+
"description": "加法",
|
| 5 |
+
"inputSchema": {
|
| 6 |
+
"type": "object",
|
| 7 |
+
"properties": {
|
| 8 |
+
"a": {
|
| 9 |
+
"type": "number",
|
| 10 |
+
"discription":""
|
| 11 |
+
},
|
| 12 |
+
"b": {
|
| 13 |
+
"type": "number",
|
| 14 |
+
"discription":""
|
| 15 |
+
}
|
| 16 |
+
},
|
| 17 |
+
"required": [
|
| 18 |
+
"a",
|
| 19 |
+
"b"
|
| 20 |
+
]
|
| 21 |
+
}
|
| 22 |
+
},
|
| 23 |
+
{
|
| 24 |
+
"name": "subtract",
|
| 25 |
+
"description": "减法",
|
| 26 |
+
"inputSchema": {
|
| 27 |
+
"type": "object",
|
| 28 |
+
"properties": {
|
| 29 |
+
"a": {
|
| 30 |
+
"type": "number",
|
| 31 |
+
"discription":""
|
| 32 |
+
},
|
| 33 |
+
"b": {
|
| 34 |
+
"type": "number",
|
| 35 |
+
"discription":""
|
| 36 |
+
}
|
| 37 |
+
},
|
| 38 |
+
"required": [
|
| 39 |
+
"a",
|
| 40 |
+
"b"
|
| 41 |
+
]
|
| 42 |
+
}
|
| 43 |
+
},
|
| 44 |
+
{
|
| 45 |
+
"name": "multiply",
|
| 46 |
+
"description": "乘法",
|
| 47 |
+
"inputSchema": {
|
| 48 |
+
"type": "object",
|
| 49 |
+
"properties": {
|
| 50 |
+
"a": {
|
| 51 |
+
"type": "number",
|
| 52 |
+
"discription":""
|
| 53 |
+
},
|
| 54 |
+
"b": {
|
| 55 |
+
"type": "number",
|
| 56 |
+
"discription":""
|
| 57 |
+
}
|
| 58 |
+
},
|
| 59 |
+
"required": [
|
| 60 |
+
"a",
|
| 61 |
+
"b"
|
| 62 |
+
]
|
| 63 |
+
}
|
| 64 |
+
},
|
| 65 |
+
{
|
| 66 |
+
"name": "divide",
|
| 67 |
+
"description": "除法,b不能为0",
|
| 68 |
+
"inputSchema": {
|
| 69 |
+
"type": "object",
|
| 70 |
+
"properties": {
|
| 71 |
+
"a": {
|
| 72 |
+
"type": "number",
|
| 73 |
+
"discription":""
|
| 74 |
+
},
|
| 75 |
+
"b": {
|
| 76 |
+
"type": "number",
|
| 77 |
+
"discription":""
|
| 78 |
+
}
|
| 79 |
+
},
|
| 80 |
+
"required": [
|
| 81 |
+
"a",
|
| 82 |
+
"b"
|
| 83 |
+
]
|
| 84 |
+
}
|
| 85 |
+
},
|
| 86 |
+
{
|
| 87 |
+
"name": "sqrt",
|
| 88 |
+
"description": "平方根",
|
| 89 |
+
"inputSchema": {
|
| 90 |
+
"type": "object",
|
| 91 |
+
"properties": {
|
| 92 |
+
"x": {
|
| 93 |
+
"type": "number",
|
| 94 |
+
"discription":""
|
| 95 |
+
}
|
| 96 |
+
},
|
| 97 |
+
"required": [
|
| 98 |
+
"x"
|
| 99 |
+
]
|
| 100 |
+
}
|
| 101 |
+
},
|
| 102 |
+
{
|
| 103 |
+
"name": "power",
|
| 104 |
+
"description": "a的b次幂",
|
| 105 |
+
"inputSchema": {
|
| 106 |
+
"type": "object",
|
| 107 |
+
"properties": {
|
| 108 |
+
"a": {
|
| 109 |
+
"type": "number",
|
| 110 |
+
"discription":""
|
| 111 |
+
},
|
| 112 |
+
"b": {
|
| 113 |
+
"type": "number",
|
| 114 |
+
"discription":""
|
| 115 |
+
}
|
| 116 |
+
},
|
| 117 |
+
"required": [
|
| 118 |
+
"a",
|
| 119 |
+
"b"
|
| 120 |
+
]
|
| 121 |
+
}
|
| 122 |
+
},
|
| 123 |
+
{
|
| 124 |
+
"name": "factorial",
|
| 125 |
+
"description": "阶乘",
|
| 126 |
+
"inputSchema": {
|
| 127 |
+
"type": "object",
|
| 128 |
+
"properties": {
|
| 129 |
+
"n": {
|
| 130 |
+
"type": "integer",
|
| 131 |
+
"discription":""
|
| 132 |
+
}
|
| 133 |
+
},
|
| 134 |
+
"required": [
|
| 135 |
+
"n"
|
| 136 |
+
]
|
| 137 |
+
}
|
| 138 |
+
},
|
| 139 |
+
{
|
| 140 |
+
"name": "gcd",
|
| 141 |
+
"description": "最大公约数",
|
| 142 |
+
"inputSchema": {
|
| 143 |
+
"type": "object",
|
| 144 |
+
"properties": {
|
| 145 |
+
"a": {
|
| 146 |
+
"type": "integer",
|
| 147 |
+
"discription":""
|
| 148 |
+
},
|
| 149 |
+
"b": {
|
| 150 |
+
"type": "integer",
|
| 151 |
+
"discription":""
|
| 152 |
+
}
|
| 153 |
+
},
|
| 154 |
+
"required": [
|
| 155 |
+
"a",
|
| 156 |
+
"b"
|
| 157 |
+
]
|
| 158 |
+
}
|
| 159 |
+
},
|
| 160 |
+
{
|
| 161 |
+
"name": "lcm",
|
| 162 |
+
"description": "最小公倍数",
|
| 163 |
+
"inputSchema": {
|
| 164 |
+
"type": "object",
|
| 165 |
+
"properties": {
|
| 166 |
+
"a": {
|
| 167 |
+
"type": "integer",
|
| 168 |
+
"discription":""
|
| 169 |
+
},
|
| 170 |
+
"b": {
|
| 171 |
+
"type": "integer",
|
| 172 |
+
"discription":""
|
| 173 |
+
}
|
| 174 |
+
},
|
| 175 |
+
"required": [
|
| 176 |
+
"a",
|
| 177 |
+
"b"
|
| 178 |
+
]
|
| 179 |
+
}
|
| 180 |
+
},
|
| 181 |
+
{
|
| 182 |
+
"name": "is_prime",
|
| 183 |
+
"description": "判断一个数是否为质数",
|
| 184 |
+
"inputSchema": {
|
| 185 |
+
"type": "object",
|
| 186 |
+
"properties": {
|
| 187 |
+
"n": {
|
| 188 |
+
"type": "integer",
|
| 189 |
+
"discription":""
|
| 190 |
+
}
|
| 191 |
+
},
|
| 192 |
+
"required": [
|
| 193 |
+
"n"
|
| 194 |
+
]
|
| 195 |
+
}
|
| 196 |
+
},
|
| 197 |
+
{
|
| 198 |
+
"name": "fibonacci",
|
| 199 |
+
"description": "返回前n项斐波那契数列",
|
| 200 |
+
"inputSchema": {
|
| 201 |
+
"type": "object",
|
| 202 |
+
"properties": {
|
| 203 |
+
"n": {
|
| 204 |
+
"type": "integer",
|
| 205 |
+
"discription":""
|
| 206 |
+
}
|
| 207 |
+
},
|
| 208 |
+
"required": [
|
| 209 |
+
"n"
|
| 210 |
+
]
|
| 211 |
+
}
|
| 212 |
+
},
|
| 213 |
+
{
|
| 214 |
+
"name": "random_int",
|
| 215 |
+
"description": "生成[a, b]区间的随机整数",
|
| 216 |
+
"inputSchema": {
|
| 217 |
+
"type": "object",
|
| 218 |
+
"properties": {
|
| 219 |
+
"a": {
|
| 220 |
+
"type": "integer",
|
| 221 |
+
"discription":""
|
| 222 |
+
},
|
| 223 |
+
"b": {
|
| 224 |
+
"type": "integer",
|
| 225 |
+
"discription":""
|
| 226 |
+
}
|
| 227 |
+
},
|
| 228 |
+
"required": [
|
| 229 |
+
"a",
|
| 230 |
+
"b"
|
| 231 |
+
]
|
| 232 |
+
}
|
| 233 |
+
},
|
| 234 |
+
{
|
| 235 |
+
"name": "random_float",
|
| 236 |
+
"description": "生成[a, b]区间的随机小数",
|
| 237 |
+
"inputSchema": {
|
| 238 |
+
"type": "object",
|
| 239 |
+
"properties": {
|
| 240 |
+
"a": {
|
| 241 |
+
"type": "number",
|
| 242 |
+
"discription":""
|
| 243 |
+
},
|
| 244 |
+
"b": {
|
| 245 |
+
"type": "number",
|
| 246 |
+
"discription":""
|
| 247 |
+
}
|
| 248 |
+
},
|
| 249 |
+
"required": [
|
| 250 |
+
"a",
|
| 251 |
+
"b"
|
| 252 |
+
]
|
| 253 |
+
}
|
| 254 |
+
},
|
| 255 |
+
{
|
| 256 |
+
"name": "round_number",
|
| 257 |
+
"description": "四舍五入到指定小数位",
|
| 258 |
+
"inputSchema": {
|
| 259 |
+
"type": "object",
|
| 260 |
+
"properties": {
|
| 261 |
+
"x": {
|
| 262 |
+
"type": "number",
|
| 263 |
+
"discription":""
|
| 264 |
+
},
|
| 265 |
+
"ndigits": {
|
| 266 |
+
"type": "integer",
|
| 267 |
+
"discription":""
|
| 268 |
+
}
|
| 269 |
+
},
|
| 270 |
+
"required": [
|
| 271 |
+
"x"
|
| 272 |
+
]
|
| 273 |
+
}
|
| 274 |
+
}
|
| 275 |
+
]
|
Unofficial/date.json
ADDED
|
@@ -0,0 +1,78 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{
|
| 3 |
+
"name": "current_datetime",
|
| 4 |
+
"description": "获取当前日期时间(ISO格式)",
|
| 5 |
+
"inputSchema": {
|
| 6 |
+
"type": "object",
|
| 7 |
+
"properties": {},
|
| 8 |
+
"required": []
|
| 9 |
+
}
|
| 10 |
+
},
|
| 11 |
+
{
|
| 12 |
+
"name": "current_date",
|
| 13 |
+
"description": "获取当前日期(YYYY-MM-DD)",
|
| 14 |
+
"inputSchema": {
|
| 15 |
+
"type": "object",
|
| 16 |
+
"properties": {},
|
| 17 |
+
"required": []
|
| 18 |
+
}
|
| 19 |
+
},
|
| 20 |
+
{
|
| 21 |
+
"name": "days_between",
|
| 22 |
+
"description": "计算两个日期之间的天数(YYYY-MM-DD格式)",
|
| 23 |
+
"inputSchema": {
|
| 24 |
+
"type": "object",
|
| 25 |
+
"properties": {
|
| 26 |
+
"date1": {
|
| 27 |
+
"type": "string",
|
| 28 |
+
"discription":""
|
| 29 |
+
},
|
| 30 |
+
"date2": {
|
| 31 |
+
"type": "string",
|
| 32 |
+
"discription":""
|
| 33 |
+
}
|
| 34 |
+
},
|
| 35 |
+
"required": [
|
| 36 |
+
"date1",
|
| 37 |
+
"date2"
|
| 38 |
+
]
|
| 39 |
+
}
|
| 40 |
+
},
|
| 41 |
+
{
|
| 42 |
+
"name": "add_days",
|
| 43 |
+
"description": "日期加天数(YYYY-MM-DD格式)",
|
| 44 |
+
"inputSchema": {
|
| 45 |
+
"type": "object",
|
| 46 |
+
"properties": {
|
| 47 |
+
"date": {
|
| 48 |
+
"type": "string",
|
| 49 |
+
"discription":""
|
| 50 |
+
},
|
| 51 |
+
"days": {
|
| 52 |
+
"type": "integer",
|
| 53 |
+
"discription":""
|
| 54 |
+
}
|
| 55 |
+
},
|
| 56 |
+
"required": [
|
| 57 |
+
"date",
|
| 58 |
+
"days"
|
| 59 |
+
]
|
| 60 |
+
}
|
| 61 |
+
},
|
| 62 |
+
{
|
| 63 |
+
"name": "weekday",
|
| 64 |
+
"description": "返回日期是星期几(YYYY-MM-DD格式)",
|
| 65 |
+
"inputSchema": {
|
| 66 |
+
"type": "object",
|
| 67 |
+
"properties": {
|
| 68 |
+
"date": {
|
| 69 |
+
"type": "string",
|
| 70 |
+
"discription":""
|
| 71 |
+
}
|
| 72 |
+
},
|
| 73 |
+
"required": [
|
| 74 |
+
"date"
|
| 75 |
+
]
|
| 76 |
+
}
|
| 77 |
+
}
|
| 78 |
+
]
|
Unofficial/location.json
ADDED
|
@@ -0,0 +1,505 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{
|
| 3 |
+
"name": "maps_regeocode",
|
| 4 |
+
"description": "将一个高德经纬度坐标转换为行政区划地址信息",
|
| 5 |
+
"inputSchema": {
|
| 6 |
+
"type": "object",
|
| 7 |
+
"properties": {
|
| 8 |
+
"location": {
|
| 9 |
+
"type": "string",
|
| 10 |
+
"discription": ""
|
| 11 |
+
}
|
| 12 |
+
},
|
| 13 |
+
"required": [
|
| 14 |
+
"location"
|
| 15 |
+
]
|
| 16 |
+
}
|
| 17 |
+
},
|
| 18 |
+
{
|
| 19 |
+
"name": "maps_geo",
|
| 20 |
+
"description": "将详细的结构化地址转换为经纬度坐标。支持对地标性名胜景区、建筑物名称解析为经纬度坐标",
|
| 21 |
+
"inputSchema": {
|
| 22 |
+
"type": "object",
|
| 23 |
+
"properties": {
|
| 24 |
+
"address": {
|
| 25 |
+
"type": "string",
|
| 26 |
+
"discription":""
|
| 27 |
+
},
|
| 28 |
+
"city": {
|
| 29 |
+
"type": "string",
|
| 30 |
+
"discription":""
|
| 31 |
+
}
|
| 32 |
+
},
|
| 33 |
+
"required": [
|
| 34 |
+
"address"
|
| 35 |
+
]
|
| 36 |
+
}
|
| 37 |
+
},
|
| 38 |
+
{
|
| 39 |
+
"name": "maps_ip_location",
|
| 40 |
+
"description": "IP 定位根据用户输入的 IP 地址,定位 IP 的所在位置",
|
| 41 |
+
"inputSchema": {
|
| 42 |
+
"type": "object",
|
| 43 |
+
"properties": {
|
| 44 |
+
"ip": {
|
| 45 |
+
"type": "string",
|
| 46 |
+
"discription":""
|
| 47 |
+
}
|
| 48 |
+
},
|
| 49 |
+
"required": [
|
| 50 |
+
"ip"
|
| 51 |
+
]
|
| 52 |
+
}
|
| 53 |
+
},
|
| 54 |
+
{
|
| 55 |
+
"name": "maps_weather",
|
| 56 |
+
"description": "根据城市名称或者标准adcode查询指定城市的天气",
|
| 57 |
+
"inputSchema": {
|
| 58 |
+
"type": "object",
|
| 59 |
+
"properties": {
|
| 60 |
+
"city": {
|
| 61 |
+
"type": "string",
|
| 62 |
+
"discription":""
|
| 63 |
+
}
|
| 64 |
+
},
|
| 65 |
+
"required": [
|
| 66 |
+
"city"
|
| 67 |
+
]
|
| 68 |
+
}
|
| 69 |
+
},
|
| 70 |
+
{
|
| 71 |
+
"name": "maps_bicycling_by_address",
|
| 72 |
+
"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.",
|
| 73 |
+
"inputSchema": {
|
| 74 |
+
"type": "object",
|
| 75 |
+
"properties": {
|
| 76 |
+
"origin_address": {
|
| 77 |
+
"type": "string",
|
| 78 |
+
"discription":"Starting point address (e.g. \"北京市朝阳区阜通东大街6号\")"
|
| 79 |
+
},
|
| 80 |
+
"destination_address": {
|
| 81 |
+
"type": "string",
|
| 82 |
+
"discription":"Ending point address (e.g. \"北京市海淀区上地十街10号\")"
|
| 83 |
+
},
|
| 84 |
+
"origin_city": {
|
| 85 |
+
"type": "string",
|
| 86 |
+
"discription":"Optional city name for the origin address to improve geocoding accuracy"
|
| 87 |
+
},
|
| 88 |
+
"destination_city": {
|
| 89 |
+
"type": "string",
|
| 90 |
+
"discription":"Optional city name for the destination address to improve geocoding accuracy"
|
| 91 |
+
}
|
| 92 |
+
},
|
| 93 |
+
"required": [
|
| 94 |
+
"origin_address",
|
| 95 |
+
"destination_address"
|
| 96 |
+
]
|
| 97 |
+
}
|
| 98 |
+
},
|
| 99 |
+
{
|
| 100 |
+
"name": "maps_bicycling_by_coordinates",
|
| 101 |
+
"description": "Plans a bicycle route between two coordinates.",
|
| 102 |
+
"inputSchema": {
|
| 103 |
+
"type": "object",
|
| 104 |
+
"properties": {
|
| 105 |
+
"origin_coordinates": {
|
| 106 |
+
"type": "string",
|
| 107 |
+
"discription":"Starting point coordinates in the format \"longitude,latitude\" (e.g. \"116.434307,39.90909\")"
|
| 108 |
+
},
|
| 109 |
+
"destination_coordinates": {
|
| 110 |
+
"type": "string",
|
| 111 |
+
"discription":"Ending point coordinates in the format \"longitude,latitude\" (e.g. \"116.434307,39.90909\")"
|
| 112 |
+
}
|
| 113 |
+
},
|
| 114 |
+
"required": [
|
| 115 |
+
"origin_coordinates",
|
| 116 |
+
"destination_coordinates"
|
| 117 |
+
]
|
| 118 |
+
}
|
| 119 |
+
},
|
| 120 |
+
{
|
| 121 |
+
"name": "maps_direction_walking_by_address",
|
| 122 |
+
"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.",
|
| 123 |
+
"inputSchema": {
|
| 124 |
+
"type": "object",
|
| 125 |
+
"properties": {
|
| 126 |
+
"origin_address": {
|
| 127 |
+
"type": "string",
|
| 128 |
+
"discription":"Starting point address (e.g. \"北京市朝阳区阜通东大街6号\")"
|
| 129 |
+
},
|
| 130 |
+
"destination_address": {
|
| 131 |
+
"type": "string",
|
| 132 |
+
"discription":"Ending point address (e.g. \"北京市海淀区上地十街10号\")"
|
| 133 |
+
},
|
| 134 |
+
"origin_city": {
|
| 135 |
+
"type": "string",
|
| 136 |
+
"discription":"Optional city name for the origin address to improve geocoding accuracy"
|
| 137 |
+
},
|
| 138 |
+
"destination_city": {
|
| 139 |
+
"type": "string",
|
| 140 |
+
"discription":"Optional city name for the destination address to improve geocoding accuracy"
|
| 141 |
+
}
|
| 142 |
+
},
|
| 143 |
+
"required": [
|
| 144 |
+
"origin_address",
|
| 145 |
+
"destination_address"
|
| 146 |
+
]
|
| 147 |
+
}
|
| 148 |
+
},
|
| 149 |
+
{
|
| 150 |
+
"name": "maps_direction_walking_by_coordinates",
|
| 151 |
+
"description": "步行路径规划 API 可以根据输入起点终点经纬度坐标规划100km 以内的步行通勤方案,并且返回通勤方案的数据",
|
| 152 |
+
"inputSchema": {
|
| 153 |
+
"type": "object",
|
| 154 |
+
"properties": {
|
| 155 |
+
"origin": {
|
| 156 |
+
"type": "string",
|
| 157 |
+
"discription":"起点经纬度坐标,格式为\"经度,纬度\" (例如:\"116.434307,39.90909\")"
|
| 158 |
+
},
|
| 159 |
+
"destination": {
|
| 160 |
+
"type": "string",
|
| 161 |
+
"discription":"终点经纬度坐标,格式为\"经度,纬度\" (例如:\"116.434307,39.90909\")"
|
| 162 |
+
}
|
| 163 |
+
},
|
| 164 |
+
"required": [
|
| 165 |
+
"origin",
|
| 166 |
+
"destination"
|
| 167 |
+
]
|
| 168 |
+
}
|
| 169 |
+
},
|
| 170 |
+
{
|
| 171 |
+
"name": "maps_direction_driving_by_address",
|
| 172 |
+
"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.",
|
| 173 |
+
"inputSchema": {
|
| 174 |
+
"type": "object",
|
| 175 |
+
"properties": {
|
| 176 |
+
"origin_address": {
|
| 177 |
+
"type": "string",
|
| 178 |
+
"discription":"Starting point address (e.g. \"北京市朝阳区阜通东大街6号\")"
|
| 179 |
+
},
|
| 180 |
+
"destination_address": {
|
| 181 |
+
"type": "string",
|
| 182 |
+
"discription":"Ending point address (e.g. \"北京市海淀区上地十街10号\")"
|
| 183 |
+
},
|
| 184 |
+
"origin_city": {
|
| 185 |
+
"type": "string",
|
| 186 |
+
"discription":"Optional city name for the origin address to improve geocoding accuracy"
|
| 187 |
+
},
|
| 188 |
+
"destination_city": {
|
| 189 |
+
"type": "string",
|
| 190 |
+
"discription":"Optional city name for the destination address to improve geocoding accuracy"
|
| 191 |
+
}
|
| 192 |
+
},
|
| 193 |
+
"required": [
|
| 194 |
+
"origin_address",
|
| 195 |
+
"destination_address"
|
| 196 |
+
]
|
| 197 |
+
}
|
| 198 |
+
},
|
| 199 |
+
{
|
| 200 |
+
"name": "maps_direction_driving_by_coordinates",
|
| 201 |
+
"description": "驾车路径规划 API 可以根据用户起终点经纬度坐标规划以小客车、轿车通勤出行的方案,并且返回通勤方案的数据",
|
| 202 |
+
"inputSchema": {
|
| 203 |
+
"type": "object",
|
| 204 |
+
"properties": {
|
| 205 |
+
"origin": {
|
| 206 |
+
"type": "string",
|
| 207 |
+
"discription":"起点经纬度坐标,格式为\"经度,纬度\" (例如:\"116.434307,39.90909\")"
|
| 208 |
+
},
|
| 209 |
+
"destination": {
|
| 210 |
+
"type": "string",
|
| 211 |
+
"discription":"终点经纬度坐标,格式为\"经度,纬度\" (例如:\"116.434307,39.90909\")"
|
| 212 |
+
}
|
| 213 |
+
},
|
| 214 |
+
"required": [
|
| 215 |
+
"origin",
|
| 216 |
+
"destination"
|
| 217 |
+
]
|
| 218 |
+
}
|
| 219 |
+
},
|
| 220 |
+
{
|
| 221 |
+
"name": "maps_direction_transit_integrated_by_address",
|
| 222 |
+
"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.",
|
| 223 |
+
"inputSchema": {
|
| 224 |
+
"type": "object",
|
| 225 |
+
"properties": {
|
| 226 |
+
"origin_address": {
|
| 227 |
+
"type": "string",
|
| 228 |
+
"discription":"Starting point address (e.g. \"北京市朝阳区阜通东大街6号\")"
|
| 229 |
+
},
|
| 230 |
+
"destination_address": {
|
| 231 |
+
"type": "string",
|
| 232 |
+
"discription":"Ending point address (e.g. \"北京市海淀区上地十街10号\")"
|
| 233 |
+
},
|
| 234 |
+
"origin_city": {
|
| 235 |
+
"type": "string",
|
| 236 |
+
"discription":"City name for the origin address (required for cross-city transit)"
|
| 237 |
+
},
|
| 238 |
+
"destination_city": {
|
| 239 |
+
"type": "string",
|
| 240 |
+
"discription":"City name for the destination address (required for cross-city transit)"
|
| 241 |
+
}
|
| 242 |
+
},
|
| 243 |
+
"required": [
|
| 244 |
+
"origin_address",
|
| 245 |
+
"destination_address",
|
| 246 |
+
"origin_city",
|
| 247 |
+
"destination_city"
|
| 248 |
+
]
|
| 249 |
+
}
|
| 250 |
+
},
|
| 251 |
+
{
|
| 252 |
+
"name": "maps_direction_transit_integrated_by_coordinates",
|
| 253 |
+
"description": "根据用户起终点经纬度坐标规划综合各类公共(火车、公交、地铁)交通方式的通勤方案,并且返回通勤方案的数据,跨城场景下必须传起点城市与终点城市",
|
| 254 |
+
"inputSchema": {
|
| 255 |
+
"type": "object",
|
| 256 |
+
"properties": {
|
| 257 |
+
"origin": {
|
| 258 |
+
"type": "string",
|
| 259 |
+
"discription":"起点经纬度坐标,格式为\"经度,纬度\" (例如:\"116.434307,39.90909\")"
|
| 260 |
+
},
|
| 261 |
+
"destination": {
|
| 262 |
+
"type": "string",
|
| 263 |
+
"discription":"终点经纬度坐标,格式为\"经度,纬度\" (例如:\"116.434307,39.90909\")"
|
| 264 |
+
},
|
| 265 |
+
"city": {
|
| 266 |
+
"type": "string",
|
| 267 |
+
"discription":"起点城市名称"
|
| 268 |
+
},
|
| 269 |
+
"cityd": {
|
| 270 |
+
"type": "string",
|
| 271 |
+
"discription":"终点城市名称"
|
| 272 |
+
}
|
| 273 |
+
},
|
| 274 |
+
"required": [
|
| 275 |
+
"origin",
|
| 276 |
+
"destination",
|
| 277 |
+
"city",
|
| 278 |
+
"cityd"
|
| 279 |
+
]
|
| 280 |
+
}
|
| 281 |
+
},
|
| 282 |
+
{
|
| 283 |
+
"name": "maps_distance",
|
| 284 |
+
"description": "测量两个经纬度坐标之间的距离,支持驾车、步行以及球面距离测量",
|
| 285 |
+
"inputSchema": {
|
| 286 |
+
"type": "object",
|
| 287 |
+
"properties": {
|
| 288 |
+
"origins": {
|
| 289 |
+
"type": "string",
|
| 290 |
+
"discription":""
|
| 291 |
+
},
|
| 292 |
+
"destination": {
|
| 293 |
+
"type": "string",
|
| 294 |
+
"discription":""
|
| 295 |
+
},
|
| 296 |
+
"type": {
|
| 297 |
+
"type": "string",
|
| 298 |
+
"discription":""
|
| 299 |
+
}
|
| 300 |
+
},
|
| 301 |
+
"required": [
|
| 302 |
+
"origins",
|
| 303 |
+
"destination"
|
| 304 |
+
]
|
| 305 |
+
}
|
| 306 |
+
},
|
| 307 |
+
{
|
| 308 |
+
"name": "maps_text_search",
|
| 309 |
+
"description": "关键词搜索 API 根据用户输入的关键字进行 POI 搜索,并返回相关的信息",
|
| 310 |
+
"inputSchema": {
|
| 311 |
+
"type": "object",
|
| 312 |
+
"properties": {
|
| 313 |
+
"keywords": {
|
| 314 |
+
"type": "string",
|
| 315 |
+
"discription":""
|
| 316 |
+
},
|
| 317 |
+
"city": {
|
| 318 |
+
"type": "string",
|
| 319 |
+
"discription":""
|
| 320 |
+
},
|
| 321 |
+
"citylimit": {
|
| 322 |
+
"type": "string",
|
| 323 |
+
"discription":""
|
| 324 |
+
}
|
| 325 |
+
},
|
| 326 |
+
"required": [
|
| 327 |
+
"keywords"
|
| 328 |
+
]
|
| 329 |
+
}
|
| 330 |
+
},
|
| 331 |
+
{
|
| 332 |
+
"name": "maps_around_search",
|
| 333 |
+
"description": "周边搜,根据用户传入关键词以及坐标location,搜索出radius半径范围的POI",
|
| 334 |
+
"inputSchema": {
|
| 335 |
+
"type": "object",
|
| 336 |
+
"properties": {
|
| 337 |
+
"location": {
|
| 338 |
+
"type": "string",
|
| 339 |
+
"discription":""
|
| 340 |
+
},
|
| 341 |
+
"radius": {
|
| 342 |
+
"type": "string",
|
| 343 |
+
"discription":""
|
| 344 |
+
},
|
| 345 |
+
"keywords": {
|
| 346 |
+
"type": "string",
|
| 347 |
+
"discription":""
|
| 348 |
+
}
|
| 349 |
+
},
|
| 350 |
+
"required": [
|
| 351 |
+
"location"
|
| 352 |
+
]
|
| 353 |
+
}
|
| 354 |
+
},
|
| 355 |
+
{
|
| 356 |
+
"name": "maps_search_detail",
|
| 357 |
+
"description": "查询关键词搜或者周边搜获取到的POI ID的详细信息",
|
| 358 |
+
"inputSchema": {
|
| 359 |
+
"type": "object",
|
| 360 |
+
"properties": {
|
| 361 |
+
"id": {
|
| 362 |
+
"type": "string",
|
| 363 |
+
"discription":""
|
| 364 |
+
}
|
| 365 |
+
},
|
| 366 |
+
"required": [
|
| 367 |
+
"id"
|
| 368 |
+
]
|
| 369 |
+
}
|
| 370 |
+
},
|
| 371 |
+
{
|
| 372 |
+
"name": "distance_between_coords",
|
| 373 |
+
"description": "计算两个经纬度坐标之间的球面距离(单位:米)",
|
| 374 |
+
"inputSchema": {
|
| 375 |
+
"type": "object",
|
| 376 |
+
"properties": {
|
| 377 |
+
"lat1": {
|
| 378 |
+
"type": "number",
|
| 379 |
+
"discription":""
|
| 380 |
+
},
|
| 381 |
+
"lon1": {
|
| 382 |
+
"type": "number",
|
| 383 |
+
"discription":""
|
| 384 |
+
},
|
| 385 |
+
"lat2": {
|
| 386 |
+
"type": "number",
|
| 387 |
+
"discription":""
|
| 388 |
+
},
|
| 389 |
+
"lon2": {
|
| 390 |
+
"type": "number",
|
| 391 |
+
"discription":""
|
| 392 |
+
}
|
| 393 |
+
},
|
| 394 |
+
"required": [
|
| 395 |
+
"lat1",
|
| 396 |
+
"lon1",
|
| 397 |
+
"lat2",
|
| 398 |
+
"lon2"
|
| 399 |
+
]
|
| 400 |
+
}
|
| 401 |
+
},
|
| 402 |
+
{
|
| 403 |
+
"name": "midpoint_coords",
|
| 404 |
+
"description": "计算两点经纬度的中点坐标",
|
| 405 |
+
"inputSchema": {
|
| 406 |
+
"type": "object",
|
| 407 |
+
"properties": {
|
| 408 |
+
"lat1": {
|
| 409 |
+
"type": "number",
|
| 410 |
+
"discription":""
|
| 411 |
+
},
|
| 412 |
+
"lon1": {
|
| 413 |
+
"type": "number",
|
| 414 |
+
"discription":""
|
| 415 |
+
},
|
| 416 |
+
"lat2": {
|
| 417 |
+
"type": "number",
|
| 418 |
+
"discription":""
|
| 419 |
+
},
|
| 420 |
+
"lon2": {
|
| 421 |
+
"type": "number",
|
| 422 |
+
"discription":""
|
| 423 |
+
}
|
| 424 |
+
},
|
| 425 |
+
"required": [
|
| 426 |
+
"lat1",
|
| 427 |
+
"lon1",
|
| 428 |
+
"lat2",
|
| 429 |
+
"lon2"
|
| 430 |
+
]
|
| 431 |
+
}
|
| 432 |
+
},
|
| 433 |
+
{
|
| 434 |
+
"name": "is_point_in_rect",
|
| 435 |
+
"description": "判断点是否在矩形区域内",
|
| 436 |
+
"inputSchema": {
|
| 437 |
+
"type": "object",
|
| 438 |
+
"properties": {
|
| 439 |
+
"lat": {
|
| 440 |
+
"type": "number",
|
| 441 |
+
"discription":""
|
| 442 |
+
},
|
| 443 |
+
"lon": {
|
| 444 |
+
"type": "number",
|
| 445 |
+
"discription":""
|
| 446 |
+
},
|
| 447 |
+
"lat_min": {
|
| 448 |
+
"type": "number",
|
| 449 |
+
"discription":""
|
| 450 |
+
},
|
| 451 |
+
"lon_min": {
|
| 452 |
+
"type": "number",
|
| 453 |
+
"discription":""
|
| 454 |
+
},
|
| 455 |
+
"lat_max": {
|
| 456 |
+
"type": "number",
|
| 457 |
+
"discription":""
|
| 458 |
+
},
|
| 459 |
+
"lon_max": {
|
| 460 |
+
"type": "number",
|
| 461 |
+
"discription":""
|
| 462 |
+
}
|
| 463 |
+
},
|
| 464 |
+
"required": [
|
| 465 |
+
"lat",
|
| 466 |
+
"lon",
|
| 467 |
+
"lat_min",
|
| 468 |
+
"lon_min",
|
| 469 |
+
"lat_max",
|
| 470 |
+
"lon_max"
|
| 471 |
+
]
|
| 472 |
+
}
|
| 473 |
+
},
|
| 474 |
+
{
|
| 475 |
+
"name": "random_coord_in_rect",
|
| 476 |
+
"description": "在矩形区域内随机生成一个经纬度坐标",
|
| 477 |
+
"inputSchema": {
|
| 478 |
+
"type": "object",
|
| 479 |
+
"properties": {
|
| 480 |
+
"lat_min": {
|
| 481 |
+
"type": "number",
|
| 482 |
+
"discription":""
|
| 483 |
+
},
|
| 484 |
+
"lon_min": {
|
| 485 |
+
"type": "number",
|
| 486 |
+
"discription":""
|
| 487 |
+
},
|
| 488 |
+
"lat_max": {
|
| 489 |
+
"type": "number",
|
| 490 |
+
"discription":""
|
| 491 |
+
},
|
| 492 |
+
"lon_max": {
|
| 493 |
+
"type": "number",
|
| 494 |
+
"discription":""
|
| 495 |
+
}
|
| 496 |
+
},
|
| 497 |
+
"required": [
|
| 498 |
+
"lat_min",
|
| 499 |
+
"lon_min",
|
| 500 |
+
"lat_max",
|
| 501 |
+
"lon_max"
|
| 502 |
+
]
|
| 503 |
+
}
|
| 504 |
+
}
|
| 505 |
+
]
|