-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathglama.json
More file actions
106 lines (106 loc) · 4.82 KB
/
Copy pathglama.json
File metadata and controls
106 lines (106 loc) · 4.82 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"$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"
},
"COORD_REQUIRE_NICKEL": {
"type": "string",
"description": "Set to '1' to enable strict Nickel-contract validation on coord_send_gated envelopes. Default off (envelopes validated permissively).",
"default": "0"
},
"BOJ_TOOL_SCOPE": {
"type": "string",
"description": "Advertised tool-surface scope. 'full' (or unset) advertises every tool (default, backward-compatible). 'core' advertises only the discovery/dispatch core (boj_health, boj_menu, boj_cartridges, boj_cartridge_info, boj_cartridge_invoke) plus all coord_* tools. A CSV of domain prefixes (e.g. 'core,github,browser') advertises core plus the named explicit groups. Every explicit boj_<domain>_* tool remains reachable via boj_cartridge_invoke regardless of scope.",
"default": "full"
},
"OTEL_EXPORTER_OTLP_ENDPOINT": {
"type": "string",
"description": "OTLP/HTTP collector endpoint (e.g. http://localhost:4318). When set, every tools/call emits an OTLP/JSON span to <endpoint>/v1/traces. Pairs with observe-mcp / grafana-mcp / prometheus-mcp for unified telemetry."
},
"OTEL_SERVICE_NAME": {
"type": "string",
"description": "Service name attribute on emitted spans.",
"default": "boj-server"
},
"OTEL_SERVICE_VERSION": {
"type": "string",
"description": "Service version attribute on emitted spans.",
"default": "0.4.7"
},
"OTEL_BATCH_MS": {
"type": "string",
"description": "Span-batch flush interval in milliseconds.",
"default": "5000"
},
"OTEL_EXPORTER_OTLP_HEADERS": {
"type": "string",
"description": "Optional comma-separated key=value headers attached to OTLP export POSTs (e.g. 'authorization=Bearer xyz,x-honeycomb-team=abc'). Used for hosted collectors that require auth."
},
"BOJ_TRANSPORT": {
"type": "string",
"description": "MCP transport selection (ADR-0013). 'stdio' (default) reads JSON-RPC from stdin and writes to stdout — the protocol clients like Claude Code launch the bridge as a subprocess over. 'http' starts an HTTP+SSE listener on BOJ_HTTP_PORT for remote / Workers / browser deployments. 'both' runs both simultaneously.",
"default": "stdio"
},
"BOJ_HTTP_PORT": {
"type": "string",
"description": "TCP port for the HTTP transport (used only when BOJ_TRANSPORT=http or BOJ_TRANSPORT=both).",
"default": "7780"
},
"BOJ_HTTP_BIND": {
"type": "string",
"description": "Bind address for the HTTP transport. Defaults to 127.0.0.1 (loopback only). Set to 0.0.0.0 for remote access — BOJ_HTTP_AUTH=none is refused on non-loopback binds.",
"default": "127.0.0.1"
},
"BOJ_HTTP_AUTH": {
"type": "string",
"description": "Authentication mode for the HTTP transport. 'none' is permitted only on loopback (refused otherwise). 'bearer' requires Authorization: Bearer <token> against the BOJ_HTTP_AUTH_TOKENS list. 'mtls' and 'oidc' are owed in PR2 of ADR-0013 — not yet implemented.",
"default": "none"
},
"BOJ_HTTP_AUTH_TOKENS": {
"type": "string",
"description": "Comma-separated list of accepted bearer tokens when BOJ_HTTP_AUTH=bearer. Whitespace around each token is trimmed; empty entries dropped. Required when BOJ_HTTP_AUTH=bearer."
}
}
}
}