-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenclaw.plugin.json
More file actions
executable file
·78 lines (78 loc) · 1.92 KB
/
Copy pathopenclaw.plugin.json
File metadata and controls
executable file
·78 lines (78 loc) · 1.92 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
{
"id": "thunder-compute",
"name": "Thunder Compute",
"description": "Native OpenClaw tool bridge for the Thunder Compute MCP server with tool-based OAuth authentication.",
"version": "0.3.0",
"skills": [
"./skills"
],
"contracts": {
"tools": [
"tc_auth_status",
"tc_auth_begin",
"tc_auth_complete",
"tc_auth_clear",
"tc_list_available_tools",
"tc_get_specs",
"tc_get_availability",
"tc_get_pricing",
"tc_list_templates",
"tc_list_instances",
"tc_create_instance",
"tc_run_command",
"tc_delete_instance",
"tc_create_snapshot",
"tc_get_upcoming_invoice"
]
},
"uiHints": {
"endpoint": {
"label": "MCP endpoint",
"help": "Thunder Compute MCP URL",
"placeholder": "https://api.thundercompute.com:8443/mcp"
},
"callbackPort": {
"label": "OAuth callback port",
"help": "Local port for browser callback capture during login.",
"advanced": true
},
"requestTimeoutMs": {
"label": "Request timeout (ms)",
"help": "Per-request timeout for MCP calls.",
"advanced": true
},
"transport": {
"label": "Transport",
"help": "Thunder Compute currently documents Streamable HTTP MCP transport.",
"advanced": true,
"placeholder": "streamable-http"
}
},
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {
"endpoint": {
"type": "string",
"default": "https://api.thundercompute.com:8443/mcp"
},
"callbackPort": {
"type": "integer",
"minimum": 1024,
"default": 1455
},
"requestTimeoutMs": {
"type": "integer",
"minimum": 1000,
"default": 60000
},
"transport": {
"type": "string",
"enum": [
"streamable-http"
],
"default": "streamable-http"
}
}
}
}