-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest.json
More file actions
117 lines (117 loc) · 3.67 KB
/
manifest.json
File metadata and controls
117 lines (117 loc) · 3.67 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
{
"manifest_version": "0.2",
"name": "garoon-mcp-server",
"display_name": "Garoon MCP Server",
"version": "1.1.0",
"description": "The official MCP Server for Garoon",
"author": {
"name": "Cybozu, Inc.",
"url": "https://cybozu-global.com/"
},
"homepage": "https://github.com/garoon/garoon-mcp-server",
"documentation": "https://github.com/garoon/garoon-mcp-server/blob/main/README.md",
"support": "https://github.com/garoon/garoon-mcp-server/issues",
"icon": "icon.png",
"server": {
"type": "node",
"entry_point": "dist/index.js",
"mcp_config": {
"command": "node",
"args": ["${__dirname}/dist/index.js"],
"env": {
"GAROON_BASE_URL": "${user_config.garoon_base_url}",
"GAROON_USERNAME": "${user_config.garoon_username}",
"GAROON_PASSWORD": "${user_config.garoon_password}",
"https_proxy": "${user_config.https_proxy}",
"GAROON_PFX_FILE_PATH": "${user_config.garoon_pfx_file_path}",
"GAROON_PFX_FILE_PASSWORD": "${user_config.garoon_pfx_file_password}",
"GAROON_BASIC_AUTH_USERNAME": "${user_config.garoon_basic_auth_username}",
"GAROON_BASIC_AUTH_PASSWORD": "${user_config.garoon_basic_auth_password}",
"GAROON_PUBLIC_ONLY": "${user_config.garoon_public_only}"
}
}
},
"compatibility": {
"platforms": ["darwin", "win32", "linux"],
"runtimes": {
"node": ">= 22"
}
},
"user_config": {
"garoon_base_url": {
"type": "string",
"title": "Garoon Base URL",
"description": "The base URL of your Garoon environment (e.g., https://example.cybozu.com/g)",
"required": true,
"sensitive": false
},
"garoon_username": {
"type": "string",
"title": "Garoon Username",
"description": "Your garoon username for authentication",
"required": true,
"sensitive": false
},
"garoon_password": {
"type": "string",
"title": "Garoon Password",
"description": "Your garoon password for authentication",
"required": true,
"sensitive": true
},
"https_proxy": {
"type": "string",
"title": "HTTPS Proxy",
"description": "HTTPS proxy URL (e.g., http://proxy.example.com:8080)",
"required": false,
"sensitive": false,
"default": ""
},
"garoon_pfx_file_path": {
"type": "string",
"title": "PFX File Path",
"description": "Path to PFX client certificate file for authentication (e.g., /Users/username/certificate.pfx)",
"required": false,
"sensitive": false,
"default": ""
},
"garoon_pfx_file_password": {
"type": "string",
"title": "PFX File Password",
"description": "Password for PFX client certificate file",
"required": false,
"sensitive": true,
"default": ""
},
"garoon_basic_auth_username": {
"type": "string",
"title": "Basic Auth Username",
"description": "Username for HTTP Basic Authentication",
"required": false,
"sensitive": false,
"default": ""
},
"garoon_basic_auth_password": {
"type": "string",
"title": "Basic Auth Password",
"description": "Password for HTTP Basic Authentication",
"required": false,
"sensitive": true,
"default": ""
},
"garoon_public_only": {
"type": "string",
"title": "Public Only Mode",
"description": "Filter out highly confidential information when set to 'true' (default: 'false')",
"required": false,
"sensitive": false,
"default": "false"
}
},
"keywords": ["Garoon"],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/garoon/garoon-mcp-server"
}
}