Configuration
This guide covers all configuration options in Kuse Cowork.
Settings Overview
Access settings by clicking 'Settings' in the bottom-left corner of the application.
AI Provider Configuration
Provider Selection
API Key Management
API keys are stored locally in an encrypted SQLite database. Keys are never sent to any server other than the respective AI provider.
~/.kuse-cowork/settings.dbAPI Key Safety
- Keys are stored locally only
- No telemetry or analytics
- Keys are passed directly to provider APIs
Model Selection
Each provider offers multiple models:
Anthropic:
OpenAI:
Local (Ollama):
Custom Endpoints
For self-hosted or enterprise deployments:
- Select "Custom Service" as provider
- Enter your base URL (e.g.,
http://localhost:8000) - Configure authentication if needed
- Enter your model ID
Application Settings
Max Tokens
Controls the maximum length of AI responses:
- Default: 4096 tokens
- Range: 256 - 128000 tokens
- Recommendation: 4096 for chat, 8192+ for code generation
Temperature
Controls response randomness:
- 0.0: Deterministic, focused
- 0.7: Balanced (default)
- 1.0: Creative, varied
Reasoning Models
GPT-5, o1, and o3 models don't support custom temperature.
Project Configuration
Project Folder
Set the working directory for tasks:
- Click "Select Folder" in task creation
- Browse to your project root
- The agent will have access to all files in this directory
Docker Mounting
The project folder is mounted at /workspace in Docker containers.
Skills Directory
Custom skills are stored in:
~/.kuse-cowork/skills/
See Skills Guide for creating custom skills.
Docker Configuration
Container Settings
Kuse Cowork uses Docker for safe command execution:
Verifying Docker
Check Docker status in Settings. If disconnected:
- Ensure Docker Desktop is running
- Check Docker socket permissions
- Restart Kuse Cowork
MCP Configuration
Adding MCP Servers
- Go to Settings → MCP
- Click "Add Server"
- Enter server configuration:
{
"name": "my-mcp-server",
"url": "http://localhost:3000",
"auth": {
"type": "bearer",
"token": "your-token"
}
}OAuth MCP Servers
For OAuth-authenticated MCP servers:
- Click "Connect with OAuth"
- Complete authentication in browser
- Token is stored locally
Data Storage
All data is stored locally:
Backup
To backup your data:
cp -r ~/.kuse-cowork ~/.kuse-cowork-backupReset
To reset all settings:
rm -rf ~/.kuse-coworkEnvironment Variables
For advanced configuration, environment variables can be used:
Configuration File
Settings can also be configured via JSON:
// ~/.kuse-cowork/config.json
{
"defaultProvider": "anthropic",
"defaultModel": "claude-sonnet-4-5-20250929",
"maxTokens": 4096,
"temperature": 0.7,
"dockerEnabled": true
}Next Steps
- AI Providers - Detailed provider documentation
- Skills - Create custom skills
- MCP Protocol - Connect external tools