forked from modelcontextprotocol/php-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHttpComplexToolSchemaTest-tools_list.json
More file actions
67 lines (67 loc) · 1.66 KB
/
HttpComplexToolSchemaTest-tools_list.json
File metadata and controls
67 lines (67 loc) · 1.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"tools": [
{
"name": "schedule_event",
"description": "Schedules a new event.",
"inputSchema": {
"type": "object",
"properties": {
"title": {
"type": "string",
"description": "the title of the event"
},
"date": {
"type": "string",
"description": "the date of the event (YYYY-MM-DD)"
},
"type": {
"type": "string",
"description": "the type of event",
"enum": [
"meeting",
"reminder",
"call",
"other"
]
},
"time": {
"type": [
"null",
"string"
],
"description": "the time of the event (HH:MM), optional",
"default": null
},
"priority": {
"type": "string",
"description": "The priority of the event. Defaults to Normal.",
"default": "normal",
"enum": [
"low",
"normal",
"high"
]
},
"attendees": {
"type": [
"array",
"null"
],
"description": "an optional list of attendee email addresses",
"default": null
},
"sendInvites": {
"type": "boolean",
"description": "send calendar invites to attendees? Defaults to true if attendees are provided",
"default": true
}
},
"required": [
"title",
"date",
"type"
]
}
}
]
}