@awesomate/hosting-mcp 0.6.0 → 0.6.1
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/package.json
CHANGED
|
@@ -43,8 +43,23 @@ network or the API base — not an auth problem; say so.
|
|
|
43
43
|
|
|
44
44
|
If this skill is loaded but **no `awesomate_*` tools exist in the session at
|
|
45
45
|
all**, the MCP server was registered after Claude Code started (the bootstrap
|
|
46
|
-
just ran). Don't investigate settings files or reinstall anything —
|
|
47
|
-
|
|
46
|
+
just ran). Don't investigate settings files or reinstall anything — and don't
|
|
47
|
+
make a restart the precondition for showing the user their own data. The
|
|
48
|
+
skill works right now over REST: read `apiBase` and `pat` from
|
|
49
|
+
`~/.awesomate/credentials.json` (never echo the pat into the conversation)
|
|
50
|
+
and GET with `Authorization: Bearer <pat>`:
|
|
51
|
+
|
|
52
|
+
| MCP tool | REST equivalent |
|
|
53
|
+
|---|---|
|
|
54
|
+
| `awesomate_get_context` | `GET {apiBase}/api/hosting-access/context` |
|
|
55
|
+
| `awesomate_get_hosting_status` | `GET {apiBase}/api/client-hosting/status` |
|
|
56
|
+
| `awesomate_get_hosting_account` | `GET {apiBase}/api/client-hosting/account` |
|
|
57
|
+
| `awesomate_list_sites` | `GET {apiBase}/api/client-hosting/sites` |
|
|
58
|
+
| `awesomate_list_domains` | `GET {apiBase}/api/client-hosting/domains` |
|
|
59
|
+
| `awesomate_get_limits` | `GET {apiBase}/api/client-hosting/limits` |
|
|
60
|
+
|
|
61
|
+
Serve the request with these now, then suggest restarting Claude Code at a
|
|
62
|
+
natural break so the richer MCP integration loads.
|
|
48
63
|
|
|
49
64
|
## 1. The plan model (so your nudges are accurate)
|
|
50
65
|
|
|
@@ -186,7 +186,7 @@ async function main() {
|
|
|
186
186
|
}
|
|
187
187
|
|
|
188
188
|
console.log('\nSetup complete. Next: ask me to read your plan, list your sites, and tell you what we can do.');
|
|
189
|
-
if (!registered) console.log('(
|
|
189
|
+
if (!registered) console.log('(The skill works in your current Claude session right away via its REST fallback — restart Claude Code when convenient to load the MCP tools.)');
|
|
190
190
|
}
|
|
191
191
|
|
|
192
192
|
main().catch((err) => {
|