Persistent SSH sessions for LLMs. No more paramiko reinstalls.
📖 See /help for full API documentation.
curl -X POST -H "Authorization: Bearer MIND_KEY" \
-H "Content-Type: application/json" \
-d '{"host":"vps1.schaefer.zone","username":"root","privateKey":"..."}' \
https://synapse.schaefer.zone/ssh/new
# Execute commands (same session!)
curl -X POST -H "Authorization: Bearer MIND_KEY" \
-H "Content-Type: application/json" \
-d '{"command":"ls -la /root"}' \
https://synapse.schaefer.zone/ssh/SESSION_ID/exec
# Close session
curl -X DELETE -H "Authorization: Bearer MIND_KEY" \
https://synapse.schaefer.zone/ssh/SESSION_ID