We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/agrathwohl/carla-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
# Carla MCP Server Configuration
server:
name: "Carla MCP Server"
version: "1.0.0"
host: localhost
port: 8765
max_connections: 10
log_level: INFO
carla:
# Path to Carla installation
path: /home/gwohl/builds/Carla
# Path to Carla library
library: /home/gwohl/builds/Carla/bin/libcarla_standalone2.so
# Wine configuration for Windows VST support
wine:
executable: /usr/bin/wine
prefix: ~/.wine
auto_prefix: true
audio:
# Audio driver (JACK, ALSA, PulseAudio, Dummy)
driver: JACK
# Client name for JACK
client_name: CarlaMCP
# Audio settings
sample_rate: 48000
buffer_size: 512
channels_in: 2
channels_out: 2
# Processing options
force_stereo: false
triple_buffer: false
plugins:
# Plugin scanning paths
scan_paths:
# Native Linux plugins
- /run/current-system/sw/lib/lv2
- ~/.lv2
# Windows VST via Wine
- ~/.wine/drive_c/Program Files/Steinberg/VSTPlugins
- ~/.wine/drive_c/Program Files/Common Files/VST2
- ~/.wine/drive_c/Program Files/Common Files/VST3
- ~/.wine/drive_c/Program Files/VSTPlugins
# Plugin options
prefer_bridges: true
ui_bridges: true
max_parameters: 500
ui_bridge_timeout: 8000
# Plugin cache
cache:
enabled: true
path: ~/.carla-mcp/plugin-cache.json
monitoring:
# Audio monitoring
meter_rate: 30 # Hz
meter_history: 100 # samples
# CPU monitoring
cpu_interval: 1.0 # seconds
cpu_history: 300 # samples (5 minutes)
# Thresholds
cpu_warning: 80 # percent
peak_warning: -3 # dB
xrun_threshold: 5 # xruns before warning
automation:
# Automation settings
resolution_ms: 10
max_duration_ms: 60000
# Recording
record_resolution_ms: 10
max_recording_ms: 300000
# Smoothing
smoothing_enabled: true
smoothing_factor: 0.8
session:
# Session management
auto_save: true
auto_save_interval: 300 # seconds
backup_count: 5
# Snapshot storage
snapshot_dir: ~/.carla-mcp/snapshots
max_snapshots: 50
performance:
# Performance optimization
parallel_operations: true
max_parallel: 4
# Caching
cache_enabled: true
cache_ttl: 3600 # seconds
# Resource limits
max_plugins: 256
max_connections: 1024
max_automation: 100
security:
# Security settings
allow_wine: true
allow_file_access: true
allowed_paths:
- /home
- /usr/lib
- /usr/local/lib
# Network
allow_remote: false
allowed_hosts:
- localhost
- 127.0.0.1