forked from modelcontextprotocol/php-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHttpDiscoveryUserProfileTest-tools_list.json
More file actions
58 lines (58 loc) · 1.27 KB
/
HttpDiscoveryUserProfileTest-tools_list.json
File metadata and controls
58 lines (58 loc) · 1.27 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
{
"tools": [
{
"name": "calculator",
"description": "Perform basic math operations (add, subtract, multiply, divide)",
"inputSchema": {
"type": "object",
"properties": {
"a": {
"type": "number"
},
"b": {
"type": "number"
},
"operation": {
"type": "string",
"default": "add"
}
},
"required": [
"a",
"b"
]
}
},
{
"name": "send_welcome",
"description": "Sends a welcome message to a user.\n\n(This is a placeholder - in a real app, it might queue an email).",
"inputSchema": {
"type": "object",
"properties": {
"userId": {
"type": "string",
"description": "the ID of the user to message"
},
"customMessage": {
"type": [
"null",
"string"
],
"description": "an optional custom message part",
"default": null
}
},
"required": [
"userId"
]
}
},
{
"name": "test_tool_without_params",
"inputSchema": {
"type": "object",
"properties": {}
}
}
]
}