-
-
Notifications
You must be signed in to change notification settings - Fork 219
Expand file tree
/
Copy pathserver.json
More file actions
63 lines (63 loc) · 1.82 KB
/
server.json
File metadata and controls
63 lines (63 loc) · 1.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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "com.xcodebuildmcp/XcodeBuildMCP",
"description": "XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.",
"repository": {
"url": "https://github.com/getsentry/XcodeBuildMCP",
"source": "github",
"id": "945551361"
},
"version": "2.1.0",
"packages": [
{
"registryType": "npm",
"registryBaseUrl": "https://registry.npmjs.org",
"identifier": "xcodebuildmcp",
"version": "2.1.0",
"transport": {
"type": "stdio"
},
"runtimeHint": "npx",
"environmentVariables": [
{
"name": "INCREMENTAL_BUILDS_ENABLED",
"description": "Enable experimental xcodemake incremental builds (true/false or 1/0).",
"format": "boolean",
"default": "false",
"choices": [
"true",
"false",
"1",
"0"
]
},
{
"name": "XCODEBUILDMCP_ENABLED_WORKFLOWS",
"description": "Comma-separated list of workflows to load at startup (e.g., 'simulator,device,project-discovery').",
"format": "string",
"default": ""
},
{
"name": "XCODEBUILDMCP_SENTRY_DISABLED",
"description": "Disable Sentry error reporting (preferred flag).",
"format": "boolean",
"default": "false",
"choices": [
"true",
"false"
]
},
{
"name": "XCODEBUILDMCP_DEBUG",
"description": "Enable verbose debug logging from the server.",
"format": "boolean",
"default": "false",
"choices": [
"true",
"false"
]
}
]
}
]
}