-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathserver.json
More file actions
76 lines (76 loc) · 2.21 KB
/
Copy pathserver.json
File metadata and controls
76 lines (76 loc) · 2.21 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.freema/openclaw-mcp",
"title": "OpenClaw MCP Server",
"description": "MCP server bridging Claude.ai/Desktop with self-hosted OpenClaw via OAuth 2.1.",
"repository": {
"url": "https://github.com/freema/openclaw-mcp",
"source": "github"
},
"version": "1.6.0",
"websiteUrl": "https://openclaw-mcp.cloud",
"packages": [
{
"registryType": "npm",
"registryBaseUrl": "https://registry.npmjs.org",
"identifier": "openclaw-mcp",
"version": "1.6.0",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "OPENCLAW_URL",
"description": "URL of your OpenClaw gateway",
"default": "http://127.0.0.1:18789",
"isRequired": true
},
{
"name": "OPENCLAW_GATEWAY_TOKEN",
"description": "Bearer token for OpenClaw gateway authentication",
"isRequired": true,
"isSecret": true
},
{
"name": "OPENCLAW_MODEL",
"description": "Model name for chat completions (e.g. 'openclaw' or 'openclaw/<agentId>')",
"default": "openclaw",
"isRequired": false
},
{
"name": "OPENCLAW_TIMEOUT_MS",
"description": "Request timeout in milliseconds",
"default": "120000",
"isRequired": false
}
]
},
{
"registryType": "oci",
"identifier": "ghcr.io/freema/openclaw-mcp:1.5.0",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "OPENCLAW_URL",
"description": "URL of your OpenClaw gateway",
"default": "http://127.0.0.1:18789",
"isRequired": true
},
{
"name": "OPENCLAW_GATEWAY_TOKEN",
"description": "Bearer token for OpenClaw gateway authentication",
"isRequired": true,
"isSecret": true
},
{
"name": "OPENCLAW_MODEL",
"description": "Model name for chat completions",
"default": "openclaw",
"isRequired": false
}
]
}
]
}