-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathtauri.conf.json
More file actions
105 lines (105 loc) · 2.56 KB
/
Copy pathtauri.conf.json
File metadata and controls
105 lines (105 loc) · 2.56 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
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "McpMux",
"version": "0.0.2",
"identifier": "com.mcpmux.desktop",
"build": {
"beforeDevCommand": "pnpm dev:web",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "pnpm build:web",
"frontendDist": "../dist"
},
"plugins": {
"deep-link": {
"mobile": [],
"desktop": {
"schemes": [
"mcpmux"
]
}
},
"updater": {
"endpoints": [
"https://github.com/MCP-Mux/mcp-mux/releases/latest/download/latest.json"
],
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDdCQUZGMEVCMEZBOTk5RTcKUldUbm1ha1A2L0N2ZTlOZjN5T3pGOHBHRUlibytMY2tPeWJkQ01heDJzdTJqK3B3a2lBdDZ1T1oK"
}
},
"app": {
"windows": [
{
"title": "McpMux",
"width": 1200,
"height": 800,
"minWidth": 800,
"minHeight": 600,
"center": true,
"preventOverflow": true
}
],
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"category": "DeveloperTool",
"shortDescription": "Unified MCP Gateway & Manager",
"longDescription": "McpMux is a desktop application for managing Model Context Protocol (MCP) servers with spaces, credentials, and cloud sync.",
"publisher": "McpMux",
"copyright": "Copyright © 2024-2026 McpMux",
"macOS": {
"entitlements": null,
"exceptionDomain": null,
"frameworks": [],
"minimumSystemVersion": "10.13",
"signingIdentity": null
},
"windows": {
"certificateThumbprint": null,
"digestAlgorithm": "sha256",
"timestampUrl": "http://timestamp.digicert.com",
"webviewInstallMode": {
"type": "downloadBootstrapper"
},
"nsis": {
"installerIcon": "icons/icon.ico",
"headerImage": null,
"sidebarImage": null,
"installMode": "currentUser",
"languages": [
"English"
],
"displayLanguageSelector": false
}
},
"linux": {
"appimage": {
"bundleMediaFramework": false
},
"deb": {
"depends": [
"libsecret-1-0",
"gnome-keyring",
"librsvg2-2"
],
"desktopTemplate": "linux/mcpmux.desktop"
},
"rpm": {
"depends": [
"libsecret",
"gnome-keyring",
"librsvg2"
]
}
}
}
}