simse works fully offline. Cloud connectivity is optional — when unconfigured, simse operates as a standalone local tool with no network calls to simse cloud services.
When connected to simse cloud, you get:
api.simse.dev)Without a cloud connection, none of these apply. All core features — the agentic loop, adaptive store, sandbox, tools, and backends — work locally.
Configure simse with a local ACP backend and no cloud connection.
In acp.json:
{
"servers": [
{
"name": "local-llm",
"command": "ollama",
"args": ["run", "llama3"],
"timeoutMs": 30000
}
],
"defaultServer": "local-llm"
}
In memory.json:
{
"enabled": true,
"similarityThreshold": 0.7,
"maxResults": 10
}
With this setup, simse makes no outbound network requests. The ACP server runs as a local subprocess managed by simse. The sandbox uses the local backend by default — no additional sandbox configuration is needed.
Configuration files are located at:
~/.config/simse/~/Library/Application Support/simse/%APPDATA%\simse\simse creates default configuration on first run. For local deployments, the key files are:
| File | Purpose |
|---|---|
acp.json | ACP (LLM provider) servers |
mcp.json | MCP tool servers |
config.json | General preferences (default agent, log level) |
memory.json | Library/memory settings |
embed.json | Embedding provider (optional) |
See the configuration reference for full details on each file.
If you run your own inference server (Ollama, vLLM, llama.cpp, etc.), configure it as an ACP server:
{
"servers": [
{
"name": "vllm",
"command": "python",
"args": ["-m", "vllm.entrypoints.openai.api_server", "--model", "meta-llama/Llama-3-8b"],
"timeoutMs": 120000
}
],
"defaultServer": "vllm"
}
The --provider CLI flag is also available for quick one-off use with an OpenAI-compatible endpoint:
simse --provider http://localhost:8080 --model llama3
This bypasses acp.json and connects directly to the specified URL.
All core features work without a cloud connection:
--print modeThe only features that require cloud are remote access (web app, tunnel) and account management (teams, billing, device sync).