-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest.json
More file actions
71 lines (71 loc) · 2.07 KB
/
manifest.json
File metadata and controls
71 lines (71 loc) · 2.07 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
{
"manifest_version": "0.3",
"name": "webssh-mcpb-dxt-extension",
"display_name": "WebSSH",
"version": "0.0.8",
"description": "WebSSH MCP Extension for your AI Workflows 🚀",
"long_description": "This extension integrates WebSSH with your AI workflows, enabling seamless SSH access and management directly from your AI applications. Leverage the power of WebSSH to enhance your AI-driven tasks with secure and efficient SSH connectivity. Docker Desktop >=v4.52 required.",
"author": {
"name": "Arnaud Mengus",
"url": "https://webssh.net"
},
"repository": {
"type": "git",
"url": "https://github.com/webssh-software/webssh-mcpb-dxt-extension"
},
"homepage": "https://webssh.net",
"documentation": "https://webssh.net/documentation/help/intelligence/api-mcp-server/",
"support": "https://github.com/webssh-software/webssh-mcpb-dxt-extension/issues",
"icon": "favicon.png",
"server": {
"type": "node",
"entry_point": "server/main.cjs",
"mcp_config": {
"command": "node",
"args": [
"${__dirname}/server/main.cjs"
],
"env": {
"SERVER_PORT": "${user_config.server_port}",
"BEARER_TOKEN": "${user_config.bearer_token}"
}
}
},
"tools": [],
"keywords": [
"webssh",
"ssh",
"sysadmin"
],
"license": "MIT",
"user_config": {
"bearer_token": {
"type": "string",
"title": "Authentication Bearer Token",
"description": "The bearer token used for authenticating with WebSSH API / MCP server. You can find it in your WebSSH settings.",
"sensitive": true,
"required": true
},
"server_port": {
"type": "number",
"title": "API / MCP Server Port",
"description": "The port on which the WebSSH API / MCP server is running. Default is 1985.",
"sensitive": false,
"required": true,
"default": 1985,
"min": 1,
"max": 65535
}
},
"compatibility": {
"claude_desktop": ">=1.0.734",
"platforms": [
"darwin",
"win32",
"linux"
],
"runtimes": {
"node": ">=16.0.0"
}
}
}