-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathglama.json
More file actions
49 lines (49 loc) · 1.46 KB
/
glama.json
File metadata and controls
49 lines (49 loc) · 1.46 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
{
"$schema": "https://glama.ai/mcp/schemas/server.json",
"maintainers": [
"hyperpolymath"
],
"env": {
"type": "object",
"properties": {
"BOJ_URL": {
"type": "string",
"description": "Base URL for the BoJ REST API backend.",
"default": "http://localhost:7700"
},
"GITHUB_TOKEN": {
"type": "string",
"description": "Personal Access Token for GitHub API operations (required for boj_github_* tools)."
},
"GITLAB_TOKEN": {
"type": "string",
"description": "Private Token for GitLab API operations (required for boj_gitlab_* tools)."
},
"GITLAB_URL": {
"type": "string",
"description": "Base URL for the GitLab instance.",
"default": "https://gitlab.com"
},
"BOJ_RATE_LIMIT": {
"type": "string",
"description": "Maximum number of tool calls permitted per minute.",
"default": "60"
},
"BOJ_LOG_LEVEL": {
"type": "string",
"description": "Logging verbosity (debug, info, warn, error, silent).",
"default": "info"
},
"BOJ_PROTOCOL": {
"type": "string",
"description": "Primary protocol for cartridge communication (rest, grpc, graphql).",
"default": "rest"
},
"COORD_BACKEND_URL": {
"type": "string",
"description": "URL for the local coordination bus backend.",
"default": "http://127.0.0.1:7745"
}
}
}
}