Files
claudetools/mcp-servers/ticktick/requirements.txt
Mike Swanson f3a175e5d6 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.
2026-06-06 14:43:47 -07:00

7 lines
258 B
Plaintext

# 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