{"record":{"id":"b1a98fa04d37c686","repo":"koala73/worldmonitor","slug":"tools-call-failed-http-callresp-status","errorCode":null,"errorMessage":"tools/call failed: HTTP ${callResp.status}","messagePattern":"tools/call failed: HTTP (.+?)","errorType":"exception","errorClass":null,"httpStatus":422,"severity":"error","filePath":"api/mcp-proxy.ts","lineNumber":340,"sourceCode":"  if (!listResp.ok) throw new Error(`tools/list failed: HTTP ${listResp.status}`);\n  const listData = await parseJsonRpcResponse(listResp);\n  if (listData.error) throw new Error(`tools/list error: ${listData.error.message}`);\n  return listData.result?.tools || [];\n}\n\nasync function mcpCallTool(serverUrl, toolName, toolArgs, customHeaders) {\n  const headers = buildHeaders(customHeaders);\n  const initResp = await postJson(serverUrl, buildInitPayload(), headers, null);\n  if (!initResp.ok) throw new Error(`Initialize failed: HTTP ${initResp.status}`);\n  const sessionId = initResp.headers.get('Mcp-Session-Id') || initResp.headers.get('mcp-session-id');\n  const initData = await parseJsonRpcResponse(initResp);\n  if (initData.error) throw new Error(`Initialize error: ${initData.error.message}`);\n  await sendInitialized(serverUrl, headers, sessionId);\n  const callResp = await postJson(serverUrl, {\n    jsonrpc: '2.0', id: 3, method: 'tools/call',\n    params: { name: toolName, arguments: toolArgs || {} },\n  }, headers, sessionId);\n  if (!callResp.ok) throw new Error(`tools/call failed: HTTP ${callResp.status}`);\n  const callData = await parseJsonRpcResponse(callResp);\n  if (callData.error) throw new Error(`tools/call error: ${callData.error.message}`);\n  return callData.result;\n}\n\n// --- SSE transport (HTTP+SSE, older MCP spec) ---\n// Servers whose URL path ends with /sse use this protocol:\n//   1. Client GETs the SSE URL — server opens a stream and emits an `endpoint` event\n//      containing the URL where the client should POST JSON-RPC messages.\n//   2. Client POSTs JSON-RPC to that endpoint URL.\n//   3. Server sends responses on the same SSE stream as `data:` lines.\n\nfunction isSseTransport(url) {\n  const p = url.pathname;\n  return p === '/sse' || p.endsWith('/sse');\n}\n\nfunction makeDeferred() {","sourceCodeStart":322,"sourceCodeEnd":358,"githubUrl":"https://github.com/koala73/worldmonitor/blob/9361220cc013571781071f0206e4d80fd14b2f7f/api/mcp-proxy.ts#L322-L358","documentation":"Thrown by mcpCallTool when any request in the tools/call flow — initialize, the call itself, or session setup — received a non-2xx HTTP status from the MCP server. The remote endpoint answered but refused the request at the HTTP layer, so the tool call could not complete.","triggerScenarios":"Thrown at api/mcp-proxy.ts:338 when the library encounters an invalid state.","commonSituations":"See trigger scenarios.","solutions":["Inspect the HTTP status in the message to distinguish auth (401/403), routing (404), and upstream (5xx) causes","Verify serverUrl and any required custom headers for the MCP server","Retry transient 5xx statuses once; restart the session for 404 caused by an expired session id"],"exampleFix":null,"handlingStrategy":"retry","validationCode":null,"typeGuard":null,"tryCatchPattern":null,"preventionTips":[],"tags":[],"backgroundTag":null,"analyzedSha":"9361220cc013571781071f0206e4d80fd14b2f7f","analyzedAt":"2026-08-21T16:51:25.751Z","contentChangedAt":"2026-08-21T16:51:25.751Z","schemaVersion":2},"datasetVersion":"2026-09-14T05:17:10.506Z"}