mirror of
https://github.com/mattintech/pyBTMCP.git
synced 2026-07-11 14:11:53 +00:00
Features: - MCP server with tools for AI-controlled device simulation - FastAPI backend with REST API and WebSocket support - Real-time device updates via WebSocket - Web UI for manual device control - ESP32 firmware for BLE device simulation - Docker containerization with MQTT broker Supported device types: - Heart Rate Monitor (BLE Heart Rate Service) - Treadmill (BLE Fitness Machine Service) - Bike Trainer (BLE Cycling Power Service) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
18 lines
296 B
Plaintext
18 lines
296 B
Plaintext
# Mosquitto MQTT Broker Configuration
|
|
|
|
# Listen on all interfaces
|
|
listener 1883 0.0.0.0
|
|
|
|
# Allow anonymous connections (for local dev)
|
|
allow_anonymous true
|
|
|
|
# Logging
|
|
log_type all
|
|
log_dest stderr
|
|
|
|
# Persistence (disabled for container)
|
|
persistence false
|
|
|
|
# Connection settings
|
|
max_connections -1
|