-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathroles.ts
More file actions
392 lines (378 loc) · 12.4 KB
/
roles.ts
File metadata and controls
392 lines (378 loc) · 12.4 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
import { ROLE_IDS, type RoleId } from './roleIds';
/**
* GitHub team configuration
*/
export interface GitHubConfig {
/** Team name (usually matches role ID) */
team: string;
/** Parent team role ID */
parent?: RoleId;
}
/**
* Discord role configuration
*/
export interface DiscordConfig {
/** Display name in Discord (can have spaces) */
role: string;
}
/**
* Google Workspace group configuration
*/
export interface GoogleConfig {
/** Group name (used as prefix for @modelcontextprotocol.io email) */
group: string;
/** If true, accepts emails from anyone including external users */
isEmailGroup?: boolean;
/** If true, members of this role get a Google Workspace user account */
provisionUser?: boolean;
}
/**
* Role definition with platform-specific configurations.
* A role only exists on platforms where it has a config key.
*/
export interface Role {
id: RoleId;
description: string;
github?: GitHubConfig;
discord?: DiscordConfig;
google?: GoogleConfig;
/**
* Roles that are implied for Discord membership.
* If a user has this role, they automatically get the implied roles' Discord roles too.
* This is separate from GitHub parent relationships and allows Discord-specific hierarchy.
*/
discordImplies?: readonly RoleId[];
}
/**
* All roles in the MCP organization.
* Each role specifies which platforms it exists on via presence of config keys.
*/
export const ROLES: readonly Role[] = [
// ===================
// Organization Structure
// ===================
{
id: ROLE_IDS.STEERING_COMMITTEE,
description: 'MCP Steering Committee',
github: { team: 'steering-committee' },
// No discord - this is a GitHub-only organizational container
},
{
id: ROLE_IDS.ADMINISTRATORS,
description: 'Discord server administrators',
discord: { role: 'administrators (synced)' },
// Discord only - no GitHub equivalent
},
{
id: ROLE_IDS.COMMUNITY_MANAGERS,
description: 'Discord community managers',
discord: { role: 'community managers (synced)' },
// Discord only - no GitHub equivalent
},
{
id: ROLE_IDS.LEAD_MAINTAINERS,
description: 'Lead core maintainers',
github: { team: 'lead-maintainers', parent: ROLE_IDS.STEERING_COMMITTEE },
discord: { role: 'lead maintainers (synced)' },
google: { group: 'lead-maintainers', provisionUser: true },
},
{
id: ROLE_IDS.CORE_MAINTAINERS,
description: 'Core maintainers',
github: { team: 'core-maintainers', parent: ROLE_IDS.STEERING_COMMITTEE },
discord: { role: 'core maintainers (synced)' },
google: { group: 'core-maintainers', provisionUser: true },
},
{
id: ROLE_IDS.MODERATORS,
description: 'Community moderators',
github: { team: 'moderators', parent: ROLE_IDS.STEERING_COMMITTEE },
discord: { role: 'community moderators (synced)' },
},
// ===================
// Maintainer Groups
// ===================
{
id: ROLE_IDS.MAINTAINERS,
description: 'General maintainers',
discord: { role: 'maintainers (synced)' },
// GWS user accounts are opt-in: maintainers add firstName/lastName/googleEmailPrefix
// to their entry in users.ts via PR to get an @modelcontextprotocol.io account
google: { group: 'maintainers', provisionUser: true },
},
{
id: ROLE_IDS.DOCS_MAINTAINERS,
description: 'MCP docs maintainers',
github: { team: 'docs-maintainers', parent: ROLE_IDS.STEERING_COMMITTEE },
// No discord role for docs maintainers
},
{
id: ROLE_IDS.INSPECTOR_MAINTAINERS,
description: 'MCP Inspector maintainers',
github: { team: 'inspector-maintainers', parent: ROLE_IDS.STEERING_COMMITTEE },
discord: { role: 'inspector maintainers (synced)' },
},
{
id: ROLE_IDS.MCPB_MAINTAINERS,
description: 'MCPB (Model Context Protocol Bundle) maintainers',
github: { team: 'mcpb-maintainers', parent: ROLE_IDS.STEERING_COMMITTEE },
// No discord role
},
{
id: ROLE_IDS.REFERENCE_SERVERS_MAINTAINERS,
description: 'Reference servers maintainers',
discord: { role: 'reference servers maintainers (synced)' },
// Discord only for now
},
{
id: ROLE_IDS.REGISTRY_MAINTAINERS,
description: 'Official registry builders and maintainers',
github: { team: 'registry-wg', parent: ROLE_IDS.WORKING_GROUPS },
discord: { role: 'registry maintainers (synced)' },
google: { group: 'registry-wg', provisionUser: true },
},
{
id: ROLE_IDS.USE_MCP_MAINTAINERS,
description: 'use-mcp maintainers',
discord: { role: 'use-mcp maintainers (synced)' },
// Discord only
},
// ===================
// SDK Maintainers
// ===================
{
id: ROLE_IDS.SDK_MAINTAINERS,
description: 'Authors and maintainers of official MCP SDKs',
github: { team: 'sdk-maintainers', parent: ROLE_IDS.STEERING_COMMITTEE },
discord: { role: 'sdk maintainers (synced)' },
discordImplies: [ROLE_IDS.MAINTAINERS], // SDK maintainers are also general maintainers
},
{
id: ROLE_IDS.CSHARP_SDK,
description: 'Official C# SDK maintainers',
github: { team: 'csharp-sdk', parent: ROLE_IDS.SDK_MAINTAINERS },
discord: { role: 'c# sdk maintainers (synced)' },
},
{
id: ROLE_IDS.CSHARP_SDK_ADMIN,
description: 'C# SDK repository admins',
github: { team: 'csharp-sdk-admin', parent: ROLE_IDS.CSHARP_SDK },
// GitHub only - for repo admin access
},
{
id: ROLE_IDS.GO_SDK,
description: 'The Go SDK Team',
github: { team: 'go-sdk', parent: ROLE_IDS.SDK_MAINTAINERS },
discord: { role: 'go sdk maintainers (synced)' },
},
{
id: ROLE_IDS.JAVA_SDK,
description: 'Official Java SDK maintainers',
github: { team: 'java-sdk', parent: ROLE_IDS.SDK_MAINTAINERS },
discord: { role: 'java sdk maintainers (synced)' },
},
{
id: ROLE_IDS.KOTLIN_SDK,
description: 'Official Kotlin SDK maintainers',
github: { team: 'kotlin-sdk', parent: ROLE_IDS.SDK_MAINTAINERS },
discord: { role: 'kotlin sdk maintainers (synced)' },
},
{
id: ROLE_IDS.MCP_APPS_SDK,
description: 'Official MCP Apps SDK maintainers',
github: { team: 'mcp-apps-sdk', parent: ROLE_IDS.SDK_MAINTAINERS },
// No Discord channel/role yet: #mcp-apps-sdk-dev in the future
},
{
id: ROLE_IDS.PHP_SDK,
description: 'Official PHP SDK maintainers',
github: { team: 'php-sdk', parent: ROLE_IDS.SDK_MAINTAINERS },
discord: { role: 'php sdk maintainers (synced)' },
},
{
id: ROLE_IDS.PYTHON_SDK,
description: 'Official Python SDK maintainers',
github: { team: 'python-sdk', parent: ROLE_IDS.SDK_MAINTAINERS },
discord: { role: 'python sdk maintainers (synced)' },
},
{
id: ROLE_IDS.PYTHON_SDK_AUTH,
description: 'Python SDK auth code owners',
github: { team: 'python-sdk-auth', parent: ROLE_IDS.PYTHON_SDK },
// GitHub only - for CODEOWNERS
},
{
id: ROLE_IDS.RUBY_SDK,
description: 'Official Ruby SDK maintainers',
github: { team: 'ruby-sdk', parent: ROLE_IDS.SDK_MAINTAINERS },
discord: { role: 'ruby sdk maintainers (synced)' },
},
{
id: ROLE_IDS.RUST_SDK,
description: 'Official Rust SDK maintainers',
github: { team: 'rust-sdk', parent: ROLE_IDS.SDK_MAINTAINERS },
discord: { role: 'rust sdk maintainers (synced)' },
},
{
id: ROLE_IDS.SWIFT_SDK,
description: 'Official Swift SDK maintainers',
github: { team: 'swift-sdk', parent: ROLE_IDS.SDK_MAINTAINERS },
discord: { role: 'swift sdk maintainers (synced)' },
},
{
id: ROLE_IDS.TYPESCRIPT_SDK,
description: 'Official TypeScript SDK',
github: { team: 'typescript-sdk', parent: ROLE_IDS.SDK_MAINTAINERS },
discord: { role: 'typescript sdk maintainers (synced)' },
},
{
id: ROLE_IDS.TYPESCRIPT_SDK_AUTH,
description: 'Code owners for auth in Typescript SDK',
github: { team: 'typescript-sdk-auth', parent: ROLE_IDS.TYPESCRIPT_SDK },
// GitHub only - for CODEOWNERS
},
{
id: ROLE_IDS.TYPESCRIPT_SDK_COLLABORATORS,
description: 'TypeScript SDK collaborators',
github: { team: 'typescript-sdk-collaborators', parent: ROLE_IDS.TYPESCRIPT_SDK },
// GitHub only
},
// ===================
// Working Groups
// ===================
{
id: ROLE_IDS.WORKING_GROUPS,
description: 'MCP Working Groups',
github: { team: 'working-groups', parent: ROLE_IDS.STEERING_COMMITTEE },
// No discord - organizational container
},
{
id: ROLE_IDS.AUTH_MAINTAINERS,
description: 'Auth Maintainers',
github: { team: 'auth-maintainers', parent: ROLE_IDS.WORKING_GROUPS },
// See AUTH_IG for Discord role
},
{
id: ROLE_IDS.SECURITY_WG,
description: 'Security Working Group',
github: { team: 'security-wg', parent: ROLE_IDS.WORKING_GROUPS },
// See interest group for Discord role
},
{
id: ROLE_IDS.SERVER_IDENTITY_WG,
description: 'Server Identity Working Group',
discord: { role: 'server identity working group (synced)' },
// Discord only for now
},
{
id: ROLE_IDS.TRANSPORT_WG,
description: 'Transport Working Group',
github: { team: 'transport-wg', parent: ROLE_IDS.WORKING_GROUPS },
discord: { role: 'transports working group (synced)' },
},
{
id: ROLE_IDS.MCP_APPS_WG,
description: 'MCP Apps Working Group',
github: { team: 'mcp-apps-wg', parent: ROLE_IDS.WORKING_GROUPS },
discord: { role: 'mcp apps working group (synced)' },
},
// ===================
// Interest Groups
// ===================
{
id: ROLE_IDS.INTEREST_GROUPS,
description: 'Interest Groups',
github: { team: 'interest-groups', parent: ROLE_IDS.STEERING_COMMITTEE },
// No discord - organizational container
},
{
id: ROLE_IDS.AGENTS_IG,
description: 'Agents Interest Group',
discord: { role: 'agents interest group (synced)' },
// Discord only
},
{
id: ROLE_IDS.AUTH_IG,
description: 'Auth Interest Group',
discord: { role: 'auth interest group (synced)' },
// Discord only - separate from AUTH_MAINTAINERS which is GitHub
},
{
id: ROLE_IDS.CLIENT_IMPLEMENTOR_IG,
description: 'Client Implementor Interest Group',
discord: { role: 'client implementor interest group (synced)' },
// Discord only
},
{
id: ROLE_IDS.FINANCIAL_SERVICES_IG,
description: 'Financial Services Interest Group',
github: { team: 'ig-financial-services', parent: ROLE_IDS.INTEREST_GROUPS },
discord: { role: 'financial services interest group (synced)' },
},
{
id: ROLE_IDS.GATEWAYS_IG,
description: 'Gateways Interest Group',
// No GitHub role yet
discord: { role: 'gateways interest group (synced)' },
},
{
id: ROLE_IDS.PRIMITIVE_GROUPING_IG,
description: 'Primitive Grouping Interest Group',
github: { team: 'primitive-grouping-ig', parent: ROLE_IDS.INTEREST_GROUPS },
discord: { role: 'primitive grouping interest group (synced)' },
},
{
id: ROLE_IDS.SKILLS_OVER_MCP_IG,
description: 'Skills Over MCP Interest Group',
github: { team: 'skills-over-mcp-ig', parent: ROLE_IDS.INTEREST_GROUPS },
discord: { role: 'skills over mcp interest group (synced)' },
},
{
id: ROLE_IDS.TOOL_ANNOTATIONS_IG,
description: 'Tool Annotations Interest Group',
github: { team: 'tool-annotations-ig', parent: ROLE_IDS.INTEREST_GROUPS },
discord: { role: 'tool annotations interest group (synced)' },
},
// ===================
// WG/IG Facilitators (Discord only)
// ===================
{
id: ROLE_IDS.WG_IG_FACILITATORS,
description: 'Working Group and Interest Group facilitators with calendar access',
discord: { role: 'wg/ig facilitators (synced)' },
// Discord only - grants meet.modelcontextprotocol.io calendar access
},
// ===================
// Email Groups (Google only)
// ===================
{
id: ROLE_IDS.ANTITRUST,
description: 'Antitrust compliance contacts',
google: { group: 'antitrust', isEmailGroup: true },
// Google only
},
{
id: ROLE_IDS.CATCH_ALL,
description: 'Catch-all email group',
google: { group: 'catch-all', isEmailGroup: true },
// Google only
},
] as const;
/**
* Get a role by ID
*/
export function getRole(id: RoleId): Role | undefined {
return ROLES.find((r) => r.id === id);
}
/**
* Get all roles that exist on a specific platform
*/
export function getRolesForPlatform(platform: 'github' | 'discord' | 'google'): Role[] {
return ROLES.filter((r) => r[platform] !== undefined);
}
/**
* Build a lookup map of roles by ID
*/
export function buildRoleLookup(): Map<RoleId, Role> {
return new Map(ROLES.map((r) => [r.id, r]));
}