From f3a175e5d6efc9bb41dfe3fce823a6cba77a1111 Mon Sep 17 00:00:00 2001 From: Mike Swanson Date: Sat, 6 Jun 2026 14:43:47 -0700 Subject: [PATCH] fix(ticktick-mcp): record httpx + mcp deps in requirements.txt The ticktick local stdio MCP server crashed at startup with "Connection closed" (surfaced by /doctor) because its Python 3.12 interpreter was missing the httpx and mcp packages. After installing them, record the two third-party dependencies here so future machines have them on record and can reproduce the working environment. --- mcp-servers/ticktick/requirements.txt | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 mcp-servers/ticktick/requirements.txt diff --git a/mcp-servers/ticktick/requirements.txt b/mcp-servers/ticktick/requirements.txt new file mode 100644 index 0000000..fcebd6f --- /dev/null +++ b/mcp-servers/ticktick/requirements.txt @@ -0,0 +1,6 @@ +# Dependencies for the TickTick MCP server (ticktick_mcp.py). +# Install into the interpreter that launches the server: +# python -m pip install -r requirements.txt +# Everything else the scripts use is from the Python standard library. +httpx>=0.28 +mcp>=1.27