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.
7 lines
258 B
Plaintext
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
|