@tsdevstack/cli-mcp 0.1.4
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/LICENSE +21 -0
- package/README.md +151 -0
- package/dist/context/index.d.ts +10 -0
- package/dist/index.d.ts +13 -0
- package/dist/index.js +1211 -0
- package/dist/mcp-serve.d.ts +7 -0
- package/dist/register-commands.d.ts +8 -0
- package/dist/resources/guide-config.d.ts +8 -0
- package/dist/resources/guide-nest-common.d.ts +9 -0
- package/dist/resources/guide-workflows.d.ts +8 -0
- package/dist/resources/guide.d.ts +8 -0
- package/dist/resources/guide.test.d.ts +1 -0
- package/dist/resources/kong-routes.d.ts +8 -0
- package/dist/resources/kong-routes.test.d.ts +1 -0
- package/dist/resources/project-state.d.ts +9 -0
- package/dist/resources/project-state.test.d.ts +1 -0
- package/dist/resources/register-resources.d.ts +7 -0
- package/dist/resources/secrets-context.d.ts +9 -0
- package/dist/resources/secrets-context.test.d.ts +1 -0
- package/dist/server.d.ts +7 -0
- package/dist/server.test.d.ts +1 -0
- package/dist/tools/action/action-tools.test.d.ts +1 -0
- package/dist/tools/action/add-service.d.ts +7 -0
- package/dist/tools/action/cloud-init.d.ts +7 -0
- package/dist/tools/action/cloud-secrets-push.d.ts +7 -0
- package/dist/tools/action/cloud-secrets-remove.d.ts +7 -0
- package/dist/tools/action/cloud-secrets-set.d.ts +7 -0
- package/dist/tools/action/deploy-kong.d.ts +7 -0
- package/dist/tools/action/deploy-lb.d.ts +7 -0
- package/dist/tools/action/deploy-scheduler.d.ts +7 -0
- package/dist/tools/action/deploy-schedulers.d.ts +7 -0
- package/dist/tools/action/deploy-service.d.ts +7 -0
- package/dist/tools/action/deploy-services.d.ts +7 -0
- package/dist/tools/action/generate-client.d.ts +7 -0
- package/dist/tools/action/generate-docker-compose.d.ts +7 -0
- package/dist/tools/action/generate-kong.d.ts +7 -0
- package/dist/tools/action/generate-secrets.d.ts +7 -0
- package/dist/tools/action/infra-bootstrap.d.ts +7 -0
- package/dist/tools/action/infra-build-docker.d.ts +7 -0
- package/dist/tools/action/infra-build-kong.d.ts +7 -0
- package/dist/tools/action/infra-deploy.d.ts +7 -0
- package/dist/tools/action/infra-destroy.d.ts +7 -0
- package/dist/tools/action/infra-generate-ci.d.ts +7 -0
- package/dist/tools/action/infra-generate-docker.d.ts +7 -0
- package/dist/tools/action/infra-generate.d.ts +7 -0
- package/dist/tools/action/infra-init-ci.d.ts +7 -0
- package/dist/tools/action/infra-init.d.ts +7 -0
- package/dist/tools/action/infra-push-docker.d.ts +7 -0
- package/dist/tools/action/register-detached-worker.d.ts +7 -0
- package/dist/tools/action/register.d.ts +7 -0
- package/dist/tools/action/remove-detached-worker.d.ts +7 -0
- package/dist/tools/action/remove-scheduler.d.ts +7 -0
- package/dist/tools/action/remove-service-cloud.d.ts +7 -0
- package/dist/tools/action/remove-service.d.ts +7 -0
- package/dist/tools/action/run-db-migrate.d.ts +7 -0
- package/dist/tools/action/sync.d.ts +7 -0
- package/dist/tools/action/unregister-detached-worker.d.ts +7 -0
- package/dist/tools/action/validate-service.d.ts +7 -0
- package/dist/tools/query/diff-secrets.d.ts +7 -0
- package/dist/tools/query/get-infrastructure-config.d.ts +7 -0
- package/dist/tools/query/get-project-config.d.ts +7 -0
- package/dist/tools/query/get-secret.d.ts +7 -0
- package/dist/tools/query/get-service-status.d.ts +7 -0
- package/dist/tools/query/infra-plan.d.ts +7 -0
- package/dist/tools/query/infra-status.d.ts +7 -0
- package/dist/tools/query/list-deployed-services.d.ts +7 -0
- package/dist/tools/query/list-environments.d.ts +7 -0
- package/dist/tools/query/list-schedulers.d.ts +7 -0
- package/dist/tools/query/list-secrets.d.ts +7 -0
- package/dist/tools/query/list-services.d.ts +7 -0
- package/dist/tools/query/plan-db-migrate.d.ts +7 -0
- package/dist/tools/query/query-tools.test.d.ts +1 -0
- package/dist/tools/query/register.d.ts +7 -0
- package/dist/tools/register-tools.d.ts +7 -0
- package/dist/utils/run-command.d.ts +8 -0
- package/dist/utils/run-command.test.d.ts +1 -0
- package/package.json +69 -0
package/package.json
ADDED
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@tsdevstack/cli-mcp",
|
|
3
|
+
"version": "0.1.4",
|
|
4
|
+
"description": "MCP server for tsdevstack CLI — exposes tools and resources to AI agents",
|
|
5
|
+
"author": "tsdevstack",
|
|
6
|
+
"private": false,
|
|
7
|
+
"license": "MIT",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "https://github.com/tsdevstack/cli-mcp.git"
|
|
11
|
+
},
|
|
12
|
+
"homepage": "https://github.com/tsdevstack/cli-mcp",
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://github.com/tsdevstack/cli-mcp/issues"
|
|
15
|
+
},
|
|
16
|
+
"keywords": [
|
|
17
|
+
"mcp",
|
|
18
|
+
"model-context-protocol",
|
|
19
|
+
"tsdevstack",
|
|
20
|
+
"ai-agents",
|
|
21
|
+
"claude",
|
|
22
|
+
"infrastructure",
|
|
23
|
+
"devops",
|
|
24
|
+
"cli"
|
|
25
|
+
],
|
|
26
|
+
"engines": {
|
|
27
|
+
"node": ">=18.0.0"
|
|
28
|
+
},
|
|
29
|
+
"type": "module",
|
|
30
|
+
"exports": {
|
|
31
|
+
".": {
|
|
32
|
+
"types": "./dist/index.d.ts",
|
|
33
|
+
"import": "./dist/index.js"
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
"types": "./dist/index.d.ts",
|
|
37
|
+
"files": [
|
|
38
|
+
"dist"
|
|
39
|
+
],
|
|
40
|
+
"scripts": {
|
|
41
|
+
"build": "rslib build",
|
|
42
|
+
"dev": "rslib build --watch",
|
|
43
|
+
"format": "prettier --write .",
|
|
44
|
+
"lint": "eslint .",
|
|
45
|
+
"tsc": "tsc --noEmit",
|
|
46
|
+
"test": "rstest run",
|
|
47
|
+
"test:watch": "rstest --watch"
|
|
48
|
+
},
|
|
49
|
+
"peerDependencies": {
|
|
50
|
+
"tsdevstack": ">=0.1.0",
|
|
51
|
+
"commander": "^12.0.0"
|
|
52
|
+
},
|
|
53
|
+
"dependencies": {
|
|
54
|
+
"@modelcontextprotocol/sdk": "^1.12.1",
|
|
55
|
+
"zod": "^3.25.67"
|
|
56
|
+
},
|
|
57
|
+
"devDependencies": {
|
|
58
|
+
"@eslint/js": "^9.39.2",
|
|
59
|
+
"@rslib/core": "^0.19.6",
|
|
60
|
+
"@rstest/adapter-rslib": "^0.2.0",
|
|
61
|
+
"@rstest/core": "^0.8.5",
|
|
62
|
+
"@types/node": "^24.10.13",
|
|
63
|
+
"eslint": "^9.39.2",
|
|
64
|
+
"globals": "^17.3.0",
|
|
65
|
+
"prettier": "^3.8.1",
|
|
66
|
+
"typescript": "^5.9.3",
|
|
67
|
+
"typescript-eslint": "^8.55.0"
|
|
68
|
+
}
|
|
69
|
+
}
|