@hoststack.dev/mcp 0.4.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/README.md +21 -19
- package/dist/hoststack-mcp.js +954 -121
- package/dist/hoststack-mcp.js.map +1 -1
- package/dist/index.d.ts +3 -2
- package/dist/index.js +954 -121
- package/dist/index.js.map +1 -1
- package/manifest.json +2 -2
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -79,20 +79,22 @@ If `HOSTSTACK_API_KEY` is set in your shell, it gets baked into the snippet; oth
|
|
|
79
79
|
|
|
80
80
|
## Tool inventory
|
|
81
81
|
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
| Category
|
|
85
|
-
|
|
86
|
-
| **projects**
|
|
87
|
-
| **services**
|
|
88
|
-
| **deploys**
|
|
89
|
-
| **
|
|
90
|
-
| **
|
|
91
|
-
| **
|
|
92
|
-
| **
|
|
93
|
-
| **
|
|
94
|
-
| **
|
|
95
|
-
| **
|
|
82
|
+
45 tools, grouped by resource:
|
|
83
|
+
|
|
84
|
+
| Category | Read | Write |
|
|
85
|
+
| ---------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------------ |
|
|
86
|
+
| **projects** | `list_projects`, `get_project` | `create_project`, `update_project` |
|
|
87
|
+
| **services** | `list_services`, `get_service`, `get_service_metrics`, `get_service_logs` | `update_service`, `update_service_config`, `suspend_service`, `resume_service` |
|
|
88
|
+
| **deploys** | `list_deploys`, `get_deploy`, `get_deploy_logs` | `trigger_deploy`, `cancel_deploy` |
|
|
89
|
+
| **environments** | `list_environments` | `create_environment`, `delete_environment`, `promote_deploy` |
|
|
90
|
+
| **databases** | `list_databases`, `get_database` | — (use the dashboard for create/delete/credentials) |
|
|
91
|
+
| **volumes** | `list_volumes` | `create_volume`, `update_volume`, `delete_volume` |
|
|
92
|
+
| **domains** | `list_domains` | `add_domain`, `verify_domain`, `remove_domain` |
|
|
93
|
+
| **dns** | `list_dns_zones`, `list_dns_records`, `get_dns_record` | `create_dns_record`, `update_dns_record`, `delete_dns_record` |
|
|
94
|
+
| **env-vars** | `list_env_vars` | `set_env_var`, `delete_env_var`, `bulk_set_env_vars` |
|
|
95
|
+
| **cron** | `list_cron_executions`, `get_cron_execution` | — |
|
|
96
|
+
| **activity-log** | `list_activity_log` | — |
|
|
97
|
+
| **meta** | `get_me` | — |
|
|
96
98
|
|
|
97
99
|
A few design notes worth knowing as a caller:
|
|
98
100
|
|
|
@@ -104,11 +106,11 @@ A few design notes worth knowing as a caller:
|
|
|
104
106
|
|
|
105
107
|
## Environment variables
|
|
106
108
|
|
|
107
|
-
| Var
|
|
108
|
-
|
|
109
|
-
| `HOSTSTACK_API_KEY`
|
|
110
|
-
| `HOSTSTACK_BASE_URL`
|
|
111
|
-
| `HOSTSTACK_MCP_TRACE` | no
|
|
109
|
+
| Var | Required | Default | Notes |
|
|
110
|
+
| --------------------- | -------- | ----------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
111
|
+
| `HOSTSTACK_API_KEY` | yes | — | Bearer token. `hs_live_…` for prod, `hs_test_…` for the test team. |
|
|
112
|
+
| `HOSTSTACK_BASE_URL` | no | `https://hoststack.dev` | Override for self-hosted or staging. |
|
|
113
|
+
| `HOSTSTACK_MCP_TRACE` | no | unset | Set to `1` to emit one NDJSON line per tool call to stderr. Useful for `2> mcp-trace.log` debugging without colliding with the JSON-RPC body on stdout. |
|
|
112
114
|
|
|
113
115
|
## License
|
|
114
116
|
|