@better-openclaw/mcp 1.0.22

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/LICENSE +20 -0
  2. package/package.json +68 -0
package/LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ GNU AFFERO GENERAL PUBLIC LICENSE
2
+ Version 3, 19 November 2007
3
+
4
+ Copyright (C) 2024-2026 Bachir Soussi Chiadmi <bachir@bidew.io>
5
+
6
+ This program is free software: you can redistribute it and/or modify
7
+ it under the terms of the GNU Affero General Public License as
8
+ published by the Free Software Foundation, either version 3 of the
9
+ License, or (at your option) any later version.
10
+
11
+ This program is distributed in the hope that it will be useful,
12
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
13
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
+ GNU Affero General Public License for more details.
15
+
16
+ You should have received a copy of the GNU Affero General Public License
17
+ along with this program. If not, see <https://www.gnu.org/licenses/>.
18
+
19
+ The full text of the GNU Affero General Public License version 3 is
20
+ available at: https://www.gnu.org/licenses/agpl-3.0.txt
package/package.json ADDED
@@ -0,0 +1,68 @@
1
+ {
2
+ "name": "@better-openclaw/mcp",
3
+ "version": "1.0.22",
4
+ "private": false,
5
+ "description": "MCP server for OpenClaw — exposes Docker Compose stack generation capabilities to AI agents via the Model Context Protocol",
6
+ "author": "bidew.io <bachir@bidew.io>",
7
+ "license": "AGPL-3.0",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "https://github.com/bidewio/better-openclaw.git",
11
+ "directory": "packages/mcp"
12
+ },
13
+ "homepage": "https://better-openclaw.dev",
14
+ "bugs": {
15
+ "url": "https://github.com/bidewio/better-openclaw/issues"
16
+ },
17
+ "main": "dist/index.mjs",
18
+ "types": "dist/index.d.ts",
19
+ "type": "module",
20
+ "exports": {
21
+ ".": {
22
+ "types": "./dist/index.d.ts",
23
+ "import": "./dist/index.mjs",
24
+ "default": "./dist/index.mjs"
25
+ }
26
+ },
27
+ "bin": {
28
+ "better-openclaw-mcp": "./dist/index.mjs"
29
+ },
30
+ "files": [
31
+ "dist",
32
+ "README.md"
33
+ ],
34
+ "dependencies": {
35
+ "@better-openclaw/core": "^1.0.22",
36
+ "@modelcontextprotocol/sdk": "^1.12.0"
37
+ },
38
+ "devDependencies": {
39
+ "@types/node": "^25.2.2",
40
+ "tsdown": "^0.21.0",
41
+ "tsx": "^4.21.0",
42
+ "typescript": "^5.9.3",
43
+ "vitest": "^4.0.18"
44
+ },
45
+ "engines": {
46
+ "node": ">=22"
47
+ },
48
+ "keywords": [
49
+ "openclaw",
50
+ "better-openclaw",
51
+ "mcp",
52
+ "model-context-protocol",
53
+ "ai-agent",
54
+ "docker-compose",
55
+ "infrastructure",
56
+ "self-hosted"
57
+ ],
58
+ "scripts": {
59
+ "build": "tsdown",
60
+ "dev": "tsx watch src/index.ts",
61
+ "start": "node dist/index.mjs",
62
+ "test": "vitest run",
63
+ "test:unit": "vitest run",
64
+ "lint": "biome check src/",
65
+ "typecheck": "tsdown --config tsdown.config.ts --no-write --dts --logLevel error",
66
+ "clean": "rimraf dist"
67
+ }
68
+ }