-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathserver.json
More file actions
38 lines (38 loc) · 1.29 KB
/
Copy pathserver.json
File metadata and controls
38 lines (38 loc) · 1.29 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.Jeomon/macos-mcp",
"title": "macOS-MCP",
"description": "MCP server for macOS desktop automation via the Accessibility API.",
"repository": {
"url": "https://github.com/Jeomon/macos-mcp",
"source": "github"
},
"version": "0.4.6",
"packages": [
{
"registryType": "pypi",
"identifier": "macos-mcp",
"version": "0.4.6",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "MACOS_MCP_SKIP_PERMISSION_CHECK",
"description": "Set to 1 to downgrade a failed Accessibility/Screen Recording permission check to a warning instead of exiting. Needed because some MCP hosts (e.g. Claude Desktop) spawn the server via a subprocess launcher that disclaims TCC responsibility, making AXIsProcessTrusted() report false even though the host's own grant is inherited for actual calls.",
"isRequired": false,
"format": "string",
"default": "1"
}
],
"runtimeArguments": [
{
"description": "Run the macos-mcp server",
"value": "macos-mcp",
"format": "string",
"isRequired": true
}
]
}
]
}