eq_sync
Update the AutoEQ database by pulling the latest headphone equalization data from GitHub to ensure accurate frequency response measurements and parametric EQ profiles.
Instructions
Pull latest AutoEQ data from GitHub and rebuild the database. May take a few minutes.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- autoeq_mcp.py:937-943 (handler)The eq_sync tool handler function. It calls sync_db to perform the database synchronization.
async def eq_sync() -> str: """Pull latest AutoEQ data from GitHub and rebuild the database. May take a few minutes.""" try: result = sync_db(progress_callback=lambda msg: None) return result except Exception as e: return f"Sync error: {type(e).__name__} – {e}" - autoeq_mcp.py:928-936 (registration)MCP tool registration for eq_sync.
name="eq_sync", annotations={ "title": "Sync database", "readOnlyHint": False, "destructiveHint": False, "idempotentHint": True, "openWorldHint": False, }, )