{"record":{"id":"f3c36082aba08d8c","repo":"koala73/worldmonitor","slug":"tools-list-failed-http-listresp-status","errorCode":null,"errorMessage":"tools/list failed: HTTP ${listResp.status}","messagePattern":"tools/list failed: HTTP (.+?)","errorType":"exception","errorClass":null,"httpStatus":422,"severity":"error","filePath":"api/mcp-proxy.ts","lineNumber":322,"sourceCode":"    }, headers, sessionId);\n  } catch (error) {\n    if (error instanceof McpProxySsrfError) throw error;\n    /* non-fatal */\n  }\n}\n\nasync function mcpListTools(serverUrl, 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 listResp = await postJson(serverUrl, {\n    jsonrpc: '2.0', id: 2, method: 'tools/list', params: {},\n  }, headers, sessionId);\n  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}`);","sourceCodeStart":304,"sourceCodeEnd":340,"githubUrl":"https://github.com/koala73/worldmonitor/blob/9361220cc013571781071f0206e4d80fd14b2f7f/api/mcp-proxy.ts#L304-L340","documentation":"Thrown by mcpListTools after a successful initialize when the follow-up tools/list request to the MCP server returned a non-2xx HTTP status. The session was established but the tools enumeration call was rejected (expired/missing Mcp-Session-Id, auth, or upstream failure).","triggerScenarios":"Thrown at api/mcp-proxy.ts:320 when the library encounters an invalid state.","commonSituations":"See trigger scenarios.","solutions":["Check the returned status: a 404 often means the Mcp-Session-Id expired or was not forwarded","Ensure custom headers required by the server are applied to every request, not just initialize","Retry the whole connect-and-list flow to obtain a fresh session"],"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-14T00:17:10.932Z"}