@debugg-ai/debugg-ai-mcp 1.0.39 → 1.0.40

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.
@@ -99,10 +99,10 @@ export async function testPageChangesHandler(input, context, progressCallback) {
99
99
  }
100
100
  }
101
101
  }
102
- // --- Build context data (targetUrl is the tunnel URL for localhost, original URL otherwise) ---
102
+ // --- Build context data (camelCase here axiosTransport auto-converts to snake_case) ---
103
103
  const contextData = {
104
104
  targetUrl: ctx.targetUrl ?? originalUrl,
105
- goal: input.description,
105
+ question: input.description,
106
106
  };
107
107
  if (projectUuid) {
108
108
  contextData.projectId = projectUuid;
@@ -120,6 +120,7 @@ export async function testPageChangesHandler(input, context, progressCallback) {
120
120
  if (input.password)
121
121
  env.password = input.password;
122
122
  // --- Execute ---
123
+ logger.info('Sending contextData', { contextData, env: Object.keys(env).length > 0 ? env : undefined });
123
124
  if (progressCallback) {
124
125
  await progressCallback({ progress: 3, total: TOTAL_STEPS, message: 'Queuing workflow execution...' });
125
126
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@debugg-ai/debugg-ai-mcp",
3
- "version": "1.0.39",
3
+ "version": "1.0.40",
4
4
  "description": "Zero-Config, Fully AI-Managed End-to-End Testing for all code gen platforms.",
5
5
  "type": "module",
6
6
  "bin": {