-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtools.list.request.json
More file actions
53 lines (53 loc) · 1.36 KB
/
tools.list.request.json
File metadata and controls
53 lines (53 loc) · 1.36 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
{
"$id": "https://gabp.dev/schema/1.0/methods/tools.list.request.json",
"$schema": "https://json-schema.org/draft-07/schema#",
"title": "tools/list Request",
"description": "Request schema for listing available tools",
"type": "object",
"required": ["v", "id", "type", "method"],
"properties": {
"v": {
"const": "gabp/1",
"description": "Protocol version identifier"
},
"id": {
"type": "string",
"format": "uuid",
"description": "Unique request identifier"
},
"type": {
"const": "request",
"description": "Message type"
},
"method": {
"const": "tools/list",
"description": "Method name"
},
"params": {
"type": "object",
"properties": {
"filter": {
"type": "object",
"properties": {
"tags": {
"type": "array",
"items": {
"type": "string"
},
"description": "Filter by tool tags"
},
"namePattern": {
"type": "string",
"description": "Filter by tool name pattern (glob)"
}
},
"additionalProperties": false,
"description": "Optional filtering criteria"
}
},
"additionalProperties": false,
"default": {}
}
},
"additionalProperties": false
}