-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 779 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 779 Bytes
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
{
"name": "openclaw-mcp-adapter",
"version": "0.1.1",
"type": "module",
"description": "OpenClaw plugin that exposes MCP server tools as native agent tools",
"keywords": [
"openclaw",
"openclaw-plugin",
"mcp",
"model-context-protocol"
],
"license": "MIT",
"openclaw": {
"extensions": [
"./index.ts"
]
},
"bin": {
"mcp-adapter": "./cli.ts"
},
"files": [
"index.ts",
"mcp-client.ts",
"config.ts",
"cache.ts",
"discovery.ts",
"cli.ts",
"openclaw.plugin.json",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/androidStern/openclaw-mcp-adapter"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0"
}
}