@mks2508/coolify-mks-cli-mcp 0.5.0 → 0.6.0
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.
- package/dist/cli/coolify-state.d.ts +51 -0
- package/dist/cli/coolify-state.d.ts.map +1 -0
- package/dist/cli/index.js +2862 -631
- package/dist/coolify/config.d.ts +1 -1
- package/dist/coolify/config.d.ts.map +1 -1
- package/dist/coolify/index.d.ts +626 -12
- package/dist/coolify/index.d.ts.map +1 -1
- package/dist/coolify/types.d.ts +87 -3
- package/dist/coolify/types.d.ts.map +1 -1
- package/dist/dist-C4hIkHif.js +66 -0
- package/dist/dist-C4hIkHif.js.map +1 -0
- package/dist/dist-DEPvJhbP.js +3 -0
- package/dist/index.cjs +8511 -28542
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +32 -8
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +8470 -28506
- package/dist/index.js.map +1 -1
- package/dist/network.d.ts +75 -0
- package/dist/network.d.ts.map +1 -0
- package/dist/sdk.d.ts +356 -0
- package/dist/sdk.d.ts.map +1 -0
- package/dist/server/index.d.ts +9 -0
- package/dist/server/index.d.ts.map +1 -0
- package/dist/server/sse.js +3 -1
- package/dist/server/stdio.d.ts +0 -2
- package/dist/server/stdio.d.ts.map +1 -1
- package/dist/server/stdio.js +3307 -1618
- package/dist/tools/definitions.d.ts +1 -1
- package/dist/tools/definitions.d.ts.map +1 -1
- package/dist/tools/handlers.d.ts +6 -7
- package/dist/tools/handlers.d.ts.map +1 -1
- package/dist/tools/index.d.ts +8 -0
- package/dist/tools/index.d.ts.map +1 -0
- package/dist/trace.d.ts +71 -0
- package/dist/trace.d.ts.map +1 -0
- package/dist/utils/format.d.ts +1 -1
- package/dist/utils/format.d.ts.map +1 -1
- package/package.json +13 -7
- package/src/cli/actions.ts +162 -0
- package/src/cli/commands/active-deployments.ts +24 -0
- package/src/cli/commands/build-logs.ts +25 -22
- package/src/cli/commands/cancel-deploy.ts +35 -0
- package/src/cli/commands/config.ts +53 -47
- package/src/cli/commands/create.ts +74 -53
- package/src/cli/commands/databases.ts +63 -0
- package/src/cli/commands/db.ts +68 -0
- package/src/cli/commands/delete.ts +41 -29
- package/src/cli/commands/deploy.ts +42 -21
- package/src/cli/commands/deployments.ts +41 -31
- package/src/cli/commands/destinations.ts +19 -27
- package/src/cli/commands/diagnose.ts +139 -0
- package/src/cli/commands/env.ts +66 -41
- package/src/cli/commands/environments.ts +36 -32
- package/src/cli/commands/exec.ts +39 -0
- package/src/cli/commands/keys.ts +46 -0
- package/src/cli/commands/list.ts +29 -27
- package/src/cli/commands/logs.ts +33 -18
- package/src/cli/commands/network.ts +145 -0
- package/src/cli/commands/projects.ts +51 -39
- package/src/cli/commands/restart.ts +34 -18
- package/src/cli/commands/server-resources.ts +71 -0
- package/src/cli/commands/servers.ts +23 -23
- package/src/cli/commands/service-logs.ts +24 -16
- package/src/cli/commands/services.ts +63 -0
- package/src/cli/commands/show.ts +72 -41
- package/src/cli/commands/start.ts +34 -18
- package/src/cli/commands/stop.ts +34 -18
- package/src/cli/commands/svc.ts +68 -0
- package/src/cli/commands/teams.ts +60 -0
- package/src/cli/commands/update.ts +73 -49
- package/src/cli/commands/version.ts +37 -0
- package/src/cli/coolify-state.ts +88 -0
- package/src/cli/index.ts +383 -151
- package/src/coolify/config.ts +29 -27
- package/src/coolify/index.ts +1829 -123
- package/src/coolify/types.ts +217 -124
- package/src/index.ts +82 -868
- package/src/network.ts +298 -0
- package/src/sdk.ts +597 -0
- package/src/server/index.ts +13 -0
- package/src/server/sse.ts +33 -25
- package/src/server/stdio.ts +24 -27
- package/src/tools/definitions.ts +893 -264
- package/src/tools/handlers.ts +556 -748
- package/src/tools/index.ts +8 -0
- package/src/trace.ts +116 -0
- package/src/utils/format.ts +36 -33
package/src/server/stdio.ts
CHANGED
|
@@ -5,48 +5,45 @@
|
|
|
5
5
|
* Entry point for running the MCP server with stdio transport.
|
|
6
6
|
* This is the standard way to use the MCP server with Claude Desktop.
|
|
7
7
|
*
|
|
8
|
-
* Uses @modelcontextprotocol/sdk for proper MCP stdio server implementation.
|
|
9
|
-
*
|
|
10
8
|
* @module
|
|
11
9
|
*/
|
|
12
10
|
|
|
13
|
-
import { Server } from
|
|
14
|
-
import { StdioServerTransport } from
|
|
15
|
-
import {
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
11
|
+
import { Server } from "@modelcontextprotocol/sdk/server/index.js";
|
|
12
|
+
import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
|
|
13
|
+
import {
|
|
14
|
+
CallToolRequestSchema,
|
|
15
|
+
ListToolsRequestSchema,
|
|
16
|
+
} from "@modelcontextprotocol/sdk/types.js";
|
|
17
|
+
import { coolifyTools } from "../tools/definitions.js";
|
|
18
|
+
import { handleToolCall } from "../tools/handlers.js";
|
|
21
19
|
|
|
22
20
|
const server = new Server(
|
|
23
21
|
{
|
|
24
|
-
name:
|
|
25
|
-
version:
|
|
22
|
+
name: "coolify-mks-cli",
|
|
23
|
+
version: "0.6.0",
|
|
26
24
|
},
|
|
27
25
|
{
|
|
28
26
|
capabilities: {
|
|
29
|
-
tools: {}
|
|
30
|
-
}
|
|
31
|
-
}
|
|
32
|
-
)
|
|
27
|
+
tools: {},
|
|
28
|
+
},
|
|
29
|
+
},
|
|
30
|
+
);
|
|
33
31
|
|
|
34
32
|
server.setRequestHandler(ListToolsRequestSchema, async () => ({
|
|
35
|
-
tools: coolifyTools
|
|
36
|
-
}))
|
|
33
|
+
tools: coolifyTools,
|
|
34
|
+
}));
|
|
37
35
|
|
|
38
36
|
server.setRequestHandler(CallToolRequestSchema, async (request) => {
|
|
39
|
-
const { name, arguments: args } = request.params
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
})
|
|
37
|
+
const { name, arguments: args } = request.params;
|
|
38
|
+
return await handleToolCall(name, args as Record<string, unknown>);
|
|
39
|
+
});
|
|
43
40
|
|
|
44
41
|
async function main() {
|
|
45
|
-
const transport = new StdioServerTransport()
|
|
46
|
-
await server.connect(transport)
|
|
42
|
+
const transport = new StdioServerTransport();
|
|
43
|
+
await server.connect(transport);
|
|
47
44
|
}
|
|
48
45
|
|
|
49
46
|
main().catch((error) => {
|
|
50
|
-
console.error(
|
|
51
|
-
process.exit(1)
|
|
52
|
-
})
|
|
47
|
+
console.error("Fatal error starting MCP server:", error);
|
|
48
|
+
process.exit(1);
|
|
49
|
+
});
|