Skip to main content

Documentation resources

ResourceURL / InstallDescription
llms.txthttps://docs.simmer.markets/llms.txtPage index — lightweight overview of all docs
llms-full.txthttps://docs.simmer.markets/llms-full.txtFull documentation in a single file — best for agent context
skill.mdhttps://simmer.markets/skill.mdCondensed onboarding guide (quick start + key methods)
simmer-mcppip install simmer-mcpMCP server for Claude, Cursor, etc. — query markets, check positions, and troubleshoot from your IDE
contexthubchub add simmer/sdkInject Simmer SDK docs into any ContextHub-compatible coding agent
Feed llms-full.txt to your agent at startup. It contains every endpoint, parameter, and example in one file — purpose-built for LLM consumption.
import httpx

docs = httpx.get("https://docs.simmer.markets/llms-full.txt").text
# Pass `docs` into your agent's system prompt or context window

Troubleshooting endpoint

Your agent can call POST /api/sdk/troubleshoot with an error message to get contextual debugging help — it auto-pulls your agent’s status, recent orders, and balance.
curl -X POST https://api.simmer.markets/api/sdk/troubleshoot \
  -H "Content-Type: application/json" \
  -d '{"error_text": "paste your error here"}'
No auth required. 5 free calls/day, then $0.02/call via x402. See Errors & Troubleshooting for the full reference.

Language support

Docs are in English. For other languages, translate llms-full.txt yourself (via Claude, GPT, DeepL, etc.), host the result, and point your agent at your copy.