marble-headed-mcp 0.1.36 → 0.1.38

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.
Files changed (2) hide show
  1. package/dist/index.js +2 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -400,7 +400,7 @@ async function saveImageFromUrl({ url, filename }) {
400
400
  const TOOLS = [
401
401
  {
402
402
  name: 'headed_start_session',
403
- description: 'Start a headed browser session (if email or password are not provided, they default to akilan@withmarble.ai and marbledebug123, respectively).',
403
+ description: 'Start a headed browser session (if email or password are not provided, they default to akilan@withmarble.ai and marbledebug123, respectively). Remember to call `headed_end_session` when finished to avoid leaving sessions open.',
404
404
  inputSchema: {
405
405
  type: 'object',
406
406
  properties: {
@@ -997,7 +997,7 @@ server.setRequestHandler(CallToolRequestSchema, async (request) => {
997
997
  ],
998
998
  };
999
999
  }
1000
- const imageTag = `gcr.io/opencode-359317/marble-ide-dev:${imageType}`;
1000
+ const imageTag = `us-docker.pkg.dev/opencode-359317/marble-ide-dev/marble-ide-dev:${imageType}`;
1001
1001
  const command = 'zsh';
1002
1002
  const shellCommand = `builtin cd ${shellQuote(devPath)} && docker build --platform linux/amd64 -t ${shellQuote(imageTag)} . && docker push ${shellQuote(imageTag)}`;
1003
1003
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "marble-headed-mcp",
3
- "version": "0.1.36",
3
+ "version": "0.1.38",
4
4
  "description": "MCP server for Marble headed automation endpoints",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",