Documentation resources
| Resource | URL / Install | Description |
|---|
llms.txt | https://docs.simmer.markets/llms.txt | Page index — lightweight overview of all docs |
llms-full.txt | https://docs.simmer.markets/llms-full.txt | Full documentation in a single file — best for agent context |
skill.md | https://simmer.markets/skill.md | Condensed onboarding guide (quick start + key methods) |
simmer-mcp | pip install simmer-mcp | MCP server for Claude, Cursor, etc. — query markets, check positions, and troubleshoot from your IDE |
contexthub | chub add simmer/sdk | Inject 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.