impreza-mcp 0.4.1 → 0.4.2
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 +6 -17
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -10,14 +10,6 @@ loaded, Claude calls `impreza_deploy_custom` directly — packages your
|
|
|
10
10
|
project, uploads it, builds + runs on your Impreza VPS, and reports
|
|
11
11
|
back the URL.
|
|
12
12
|
|
|
13
|
-
> **No-install alternative:** if your AI client supports remote MCP
|
|
14
|
-
> connectors (e.g. Claude), you can skip this package and add the hosted
|
|
15
|
-
> connector `https://mcp.imprezahost.com/mcp` instead — authorize in your
|
|
16
|
-
> Impreza clientarea, no API key and no IP whitelist. It exposes the same
|
|
17
|
-
> full toolset, gated by the scopes you grant on consent (read / deploy /
|
|
18
|
-
> manage). Install this package when you want a local server — e.g. to deploy
|
|
19
|
-
> a project folder straight from your machine, which the hosted connector can't.
|
|
20
|
-
|
|
21
13
|
## Status
|
|
22
14
|
|
|
23
15
|
**Full surface live.** All 32 tools shipped — app deployment (14) plus
|
|
@@ -68,10 +60,9 @@ wizard that generates ready-to-paste config snippets for 5 AI tools.
|
|
|
68
60
|
### Prerequisites
|
|
69
61
|
|
|
70
62
|
- Node ≥ 20
|
|
71
|
-
- An Impreza Host account with an API key + secret
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
first IP), or `keyonly` (no IP factor)
|
|
63
|
+
- An Impreza Host account with an API key + secret
|
|
64
|
+
(clientarea → API Keys; the IP of the machine running this MCP
|
|
65
|
+
server must be whitelisted under the key)
|
|
75
66
|
|
|
76
67
|
### One-shot via `npx`
|
|
77
68
|
|
|
@@ -183,11 +174,9 @@ config env — not in any file on disk owned by `impreza-mcp` itself.
|
|
|
183
174
|
The MCP server holds the secret only in memory and only attaches it
|
|
184
175
|
as HTTP request headers.
|
|
185
176
|
|
|
186
|
-
The
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
step is now optional. Tokens issued via the hosted OAuth connector are
|
|
190
|
-
scoped and revocable under clientarea → Impreza API → Connected Apps.
|
|
177
|
+
The IP of the machine running this MCP server (almost always your
|
|
178
|
+
laptop) must be on the API key's whitelist. Manage the whitelist in
|
|
179
|
+
your Impreza clientarea.
|
|
191
180
|
|
|
192
181
|
## Build
|
|
193
182
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "impreza-mcp",
|
|
3
|
-
"
|
|
4
|
-
"
|
|
3
|
+
"mcpName": "io.github.imprezahost/impreza-mcp",
|
|
4
|
+
"version": "0.4.2",
|
|
5
|
+
"description": "Model Context Protocol server for Impreza Host — lets Claude Code / Cursor / Codex / Continue / Zed deploy customer-built apps to managed Impreza VPSes without leaving the chat.",
|
|
5
6
|
"license": "MIT",
|
|
6
7
|
"type": "module",
|
|
7
8
|
"bin": {
|