Describe the bug
On Windows, Gortex MCP tools can stop returning responses even though the MCP connection advertises the repository index as ready (phase: enrichment_complete). The client has to terminate each tool call manually; no timeout or actionable error is returned.
This was observed in a Codex MCP stdio session. Normal PowerShell, Git, and Gortex CLI version commands remained responsive while the MCP calls were stuck.
To reproduce
-
Start a Codex session with Gortex MCP enabled for an indexed repository on Windows.
-
Confirm the Gortex MCP tool metadata reports:
- one tracked repository
- an active project
- index status
ready / enrichment_complete
-
Invoke the following minimal tool call:
{
"tool": "index_health",
"arguments": {
"compact": true,
"format": "gcx",
"max_bytes": 6000
}
}
-
Wait for a response.
Observed in the latest probe: no output after 30 seconds; the client terminated the call.
A separate individual smart_context call also produced no output for more than 60 seconds and had to be terminated. Follow-up grouped probes involving read_file, index_health, and tool_profile likewise failed to complete.
Expected behavior
The MCP tool should return its result, or fail with a bounded timeout and an actionable error. A repository advertised as ready should not leave read-only health/context calls pending indefinitely.
Actual behavior
The request remains pending without output until the MCP client cancels it.
Environment
- OS: Windows Pro 25H2, build 26200.8737
- The Windows registry's legacy
ProductName value reports Windows 10 Pro.
- Architecture: windows/amd64
- Gortex:
v0.60.0+dd3bb30
- Gortex commit:
dd3bb30
- Gortex build date:
2026-07-09T19:37:24Z
- Go used to build Gortex:
go1.26.4
- Local Go CLI:
go1.25.10 windows/amd64
- Client/transport: Codex, MCP stdio
Daemon / standalone context
gortex status reports that no daemon is running. According to gortex mcp --help, the embedded server should be used automatically when no daemon is available.
One earlier gortex daemon status attempt reported that access to the cached daemon socket was forbidden; later status calls reported no running daemon. This may be a separate stale-socket/environment symptom and is not claimed as the root cause of the MCP hang.
Impact
- Each affected MCP call blocks the agent for 30–60+ seconds.
- The call must be cancelled manually.
- Work has to fall back to filesystem/CLI tools.
- There is no error that tells the user whether the index, embedded MCP server, daemon discovery, or Windows IPC is responsible.
Workaround
Terminate the pending MCP call and use direct filesystem/CLI tooling. A clean MCP/daemon restart has not yet been isolated as a reliable workaround.
Duplicate check
Searched open and closed issues for Windows MCP hangs, standalone MCP hangs, smart_context timeouts, and daemon socket access errors. No matching issue was found. Issue #113 concerns a different daemon warm-path/indexing hang.
Additional context
- The minimal
index_health probe was repeated immediately before filing and was cancelled after 30 seconds with no output.
- Telemetry is disabled.
- No repository source, local username, credentials, tokens, or private paths are included in this report.
Describe the bug
On Windows, Gortex MCP tools can stop returning responses even though the MCP connection advertises the repository index as ready (
phase: enrichment_complete). The client has to terminate each tool call manually; no timeout or actionable error is returned.This was observed in a Codex MCP stdio session. Normal PowerShell, Git, and Gortex CLI version commands remained responsive while the MCP calls were stuck.
To reproduce
Start a Codex session with Gortex MCP enabled for an indexed repository on Windows.
Confirm the Gortex MCP tool metadata reports:
ready/enrichment_completeInvoke the following minimal tool call:
{ "tool": "index_health", "arguments": { "compact": true, "format": "gcx", "max_bytes": 6000 } }Wait for a response.
Observed in the latest probe: no output after 30 seconds; the client terminated the call.
A separate individual
smart_contextcall also produced no output for more than 60 seconds and had to be terminated. Follow-up grouped probes involvingread_file,index_health, andtool_profilelikewise failed to complete.Expected behavior
The MCP tool should return its result, or fail with a bounded timeout and an actionable error. A repository advertised as
readyshould not leave read-only health/context calls pending indefinitely.Actual behavior
The request remains pending without output until the MCP client cancels it.
Environment
ProductNamevalue reportsWindows 10 Pro.v0.60.0+dd3bb30dd3bb302026-07-09T19:37:24Zgo1.26.4go1.25.10 windows/amd64Daemon / standalone context
gortex statusreports that no daemon is running. According togortex mcp --help, the embedded server should be used automatically when no daemon is available.One earlier
gortex daemon statusattempt reported that access to the cached daemon socket was forbidden; later status calls reported no running daemon. This may be a separate stale-socket/environment symptom and is not claimed as the root cause of the MCP hang.Impact
Workaround
Terminate the pending MCP call and use direct filesystem/CLI tooling. A clean MCP/daemon restart has not yet been isolated as a reliable workaround.
Duplicate check
Searched open and closed issues for Windows MCP hangs, standalone MCP hangs,
smart_contexttimeouts, and daemon socket access errors. No matching issue was found. Issue #113 concerns a different daemon warm-path/indexing hang.Additional context
index_healthprobe was repeated immediately before filing and was cancelled after 30 seconds with no output.