Skip to main content
Augent loads user defaults from ~/.augent/config.yaml on startup. Every setting is optional — if the file doesn’t exist, Augent uses sensible defaults. Per-call arguments always override config values.

Example config

# ~/.augent/config.yaml

# Whisper model size: tiny, base, small, medium, large
model_size: tiny

# Default download directory
output_dir: ~/Downloads

# Default directory for notes, clips, and TTS output
notes_output_dir: ~/Desktop

# Seconds of padding around clips
clip_padding: 15

# Words of context in deep_search / search_memory results
context_words: 25

# Default TTS voice
tts_voice: af_heart

# TTS speed multiplier
tts_speed: 1.0

# Tools to hide from your MCP client (list of tool names)
disabled_tools: []

Disabling tools

If you don’t use certain tools, you can hide them from Claude (or any MCP client) so they don’t clutter the tool list:
disabled_tools:
  - text_to_speech
  - identify_speakers
  - separate_audio
Disabled tools are removed from the tools/list response and cannot be called. To re-enable, remove them from the list and restart Claude Code.

Config format

Augent tries ~/.augent/config.yaml first (requires PyYAML). If PyYAML isn’t installed, it falls back to ~/.augent/config.json:
{
  "model_size": "base",
  "disabled_tools": ["text_to_speech"]
}

Available tools

These are the tool names you can use in disabled_tools:
ToolDescription
download_audioDownload audio from URLs
transcribe_audioFull transcription with timestamps
search_audioKeyword search in audio
deep_searchSemantic search by meaning
take_notesDownload + transcribe + format notes
chaptersAuto-detect topic chapters
batch_searchSearch multiple files in parallel
text_to_speechConvert text to speech
search_proximityFind keywords near each other
identify_speakersSpeaker diarization
list_filesList media files
list_memoriesList stored transcriptions
memory_statsMemory statistics
clear_memoryClear transcription memory
search_memorySearch across all transcriptions
separate_audioVocal/stem separation
clip_exportExport video clips
highlightsExport best moments
tagTag transcriptions
Restart Claude Code after editing config. The MCP server reads the config once on startup.