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.
This commit is contained in:
2026-06-06 14:43:47 -07:00
parent 974fb97f10
commit f3a175e5d6

View File

@@ -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