@awesomate/hosting-mcp 0.6.1 → 0.6.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/package.json
CHANGED
|
@@ -146,17 +146,17 @@ async function main() {
|
|
|
146
146
|
|
|
147
147
|
// Register the MCP server. Prefer the Claude CLI if present; otherwise print
|
|
148
148
|
// the config for Claude to apply.
|
|
149
|
-
const cmd = `claude mcp add awesomate-hosting --env AWESOMATE_PAT=${redeemed.pat} --env AWESOMATE_API_BASE=${apiBase} -- npx -y @awesomate/hosting-mcp`;
|
|
149
|
+
const cmd = `claude mcp add awesomate-hosting --env AWESOMATE_PAT=${redeemed.pat} --env AWESOMATE_API_BASE=${apiBase} -- npx -y -p @awesomate/hosting-mcp awesomate-hosting-mcp`;
|
|
150
150
|
let registered = false;
|
|
151
151
|
try {
|
|
152
|
-
execFileSync('claude', ['mcp', 'add', 'awesomate-hosting', '--env', `AWESOMATE_PAT=${redeemed.pat}`, '--env', `AWESOMATE_API_BASE=${apiBase}`, '--', 'npx', '-y', '@awesomate/hosting-mcp'], { stdio: 'ignore' });
|
|
152
|
+
execFileSync('claude', ['mcp', 'add', 'awesomate-hosting', '--env', `AWESOMATE_PAT=${redeemed.pat}`, '--env', `AWESOMATE_API_BASE=${apiBase}`, '--', 'npx', '-y', '-p', '@awesomate/hosting-mcp', 'awesomate-hosting-mcp'], { stdio: 'ignore' });
|
|
153
153
|
registered = true;
|
|
154
154
|
console.log('✓ Registered the Awesomate Hosting MCP server with Claude Code.');
|
|
155
155
|
} catch {
|
|
156
156
|
console.log('\nAdd the Awesomate Hosting MCP server to this project — run:');
|
|
157
157
|
console.log(` ${cmd}`);
|
|
158
158
|
console.log('…or add to .mcp.json:');
|
|
159
|
-
console.log(JSON.stringify({ mcpServers: { 'awesomate-hosting': { command: 'npx', args: ['-y', '@awesomate/hosting-mcp'], env: { AWESOMATE_PAT: redeemed.pat, AWESOMATE_API_BASE: apiBase } } } }, null, 2));
|
|
159
|
+
console.log(JSON.stringify({ mcpServers: { 'awesomate-hosting': { command: 'npx', args: ['-y', '-p', '@awesomate/hosting-mcp', 'awesomate-hosting-mcp'], env: { AWESOMATE_PAT: redeemed.pat, AWESOMATE_API_BASE: apiBase } } } }, null, 2));
|
|
160
160
|
}
|
|
161
161
|
|
|
162
162
|
// SSH key (Support Plus+): best-effort. If it fails (e.g. hosting not fully
|