-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
79 lines (79 loc) · 2.86 KB
/
Copy pathserver.json
File metadata and controls
79 lines (79 loc) · 2.86 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "team.gaijin/go-gerrit-mcp",
"title": "Gerrit Code Review",
"description": "Capability-gated Gerrit code review tools with opt-in review notifications pushed into the session",
"version": "0.0.0",
"repository": {
"url": "https://github.com/GaijinEntertainment/go-gerrit-mcp",
"source": "github",
"id": "1285115759"
},
"packages": [
{
"registryType": "oci",
"identifier": "ghcr.io/gaijinentertainment/go-gerrit-mcp:0.0.0",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "GERRIT_URL",
"description": "Base URL of the Gerrit instance",
"isRequired": true
},
{
"name": "GERRIT_USERNAME",
"description": "Account username for HTTP authentication",
"isRequired": true
},
{
"name": "GERRIT_TOKEN",
"description": "HTTP password or token of the account",
"isRequired": true,
"isSecret": true
},
{
"name": "GERRIT_MCP_GROUPS",
"description": "Comma-separated capability groups to enable: read, comment, transition",
"default": "read"
},
{
"name": "GERRIT_MCP_PROJECTS",
"description": "Comma-separated Gerrit project allowlist confining every operation"
},
{
"name": "GERRIT_MCP_OWN_CHANGES_ONLY",
"description": "Refuse trail-leaving operations on changes not owned by the authenticated account",
"format": "boolean",
"default": "true"
},
{
"name": "GERRIT_MCP_REVIEW_NOTIFICATIONS",
"description": "Enable review notifications: poll Gerrit for activity on subscribed changes and push it into the agent's session (requires a client with channel support)",
"format": "boolean",
"default": "false"
},
{
"name": "GERRIT_MCP_REVIEW_NOTIFICATIONS_POLL_INTERVAL",
"description": "Poll cadence for subscribed changes, as a Go duration",
"default": "60s"
},
{
"name": "GERRIT_MCP_REVIEW_NOTIFICATIONS_INCLUDE_OWN",
"description": "Keep the authenticated account's own activity in review notifications",
"format": "boolean",
"default": "false"
},
{
"name": "GERRIT_MCP_REVIEW_NOTIFICATIONS_EXCLUDE_ACCOUNTS",
"description": "Comma-separated usernames or numeric account IDs whose activity never becomes a review notification"
},
{
"name": "GERRIT_MCP_REVIEW_NOTIFICATIONS_EXCLUDE_PATTERNS",
"description": "Comma-separated regular expressions; matching message or comment text never becomes a review notification"
}
]
}
]
}