Skip to content

Configuration

Configuration is stored at ~/.cyclops/config.json. It is created automatically on first launch.

{
"model": "anthropic/claude-haiku-4-5-20251001",
"stream": true,
"max_iterations": 15,
"temperature": 0.2,
"mcp_servers": [
{
"name": "filesystem",
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-filesystem", "."],
"env": {}
}
]
}
KeyTypeDefaultDescription
modelstringset on first launchDefault model string (LiteLLM format)
streambooleantrueStream tokens as they arrive
max_iterationsinteger15Max tool call rounds per generation
temperaturefloat0.2Sampling temperature
mcp_serversarray[]MCP server definitions (see MCP Servers)

Any setting can be overridden per-run with a CLI flag:

Terminal window
cyclops --model gpt-4o --no-stream "..."
cyclops --cwd /path/to/project "..."
PathContents
~/.cyclops/config.jsonSettings and MCP server list
~/.cyclops/sessions/Saved sessions
~/.cyclops/historyCommand history for the REPL input