-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Expand file tree
/
Copy pathsearch_orgs.snap
More file actions
48 lines (48 loc) · 1.24 KB
/
search_orgs.snap
File metadata and controls
48 lines (48 loc) · 1.24 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
{
"annotations": {
"readOnlyHint": true,
"title": "Search organizations"
},
"description": "Find GitHub organizations by name, location, or other organization metadata. Ideal for discovering companies, open source foundations, or teams.",
"inputSchema": {
"type": "object",
"required": [
"query"
],
"properties": {
"order": {
"type": "string",
"description": "Sort order",
"enum": [
"asc",
"desc"
]
},
"page": {
"type": "number",
"description": "Page number for pagination (min 1)",
"minimum": 1
},
"perPage": {
"type": "number",
"description": "Results per page for pagination (min 1, max 100)",
"minimum": 1,
"maximum": 100
},
"query": {
"type": "string",
"description": "Organization search query. Examples: 'microsoft', 'location:california', 'created:\u003e=2025-01-01'. Search is automatically scoped to type:org."
},
"sort": {
"type": "string",
"description": "Sort field by category",
"enum": [
"followers",
"repositories",
"joined"
]
}
}
},
"name": "search_orgs"
}