-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.86 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.86 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
{
"name": "mcp-coolify",
"version": "3.0.0",
"description": "MCP server for Coolify. Manage applications, databases, services, deployments, and servers from any MCP-compatible client.",
"type": "module",
"main": "dist/index.js",
"bin": {
"mcp-coolify": "dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "bun build src/index.ts --target=node --outdir=dist --format=esm --external=@modelcontextprotocol/sdk --external=zod",
"prepublishOnly": "bun run build",
"dev": "bun --watch src/index.ts",
"start": "bun src/index.ts",
"test": "bun test",
"test:unit": "bun test src/lib/ src/types/ src/config.test.ts src/client.test.ts",
"test:watch": "bun test --watch",
"test:integration:setup": "bun scripts/integration-setup.ts",
"test:integration:run": "bun scripts/integration-run.ts",
"test:integration:teardown": "bun scripts/integration-teardown.ts",
"test:integration": "bun run test:integration:setup && bun run test:integration:run ; bun run test:integration:teardown",
"check": "biome check --write . && bun run typecheck && bun run test:unit",
"typecheck": "tsc --noEmit",
"lint": "biome lint --write .",
"format": "biome format --write .",
"inspect": "bunx @anthropic-ai/mcp-inspector bun -- src/index.ts"
},
"keywords": [
"mcp",
"coolify",
"paas",
"self-hosted",
"model-context-protocol",
"claude",
"ai"
],
"author": "Thomas Tastet",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/0xtlt/coolify-mcp.git"
},
"homepage": "https://github.com/0xtlt/coolify-mcp",
"bugs": {
"url": "https://github.com/0xtlt/coolify-mcp/issues"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.26.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "^2.3.14",
"@types/bun": "^1.3.8",
"typescript": "^5.9.3"
}
}