detect_tempo
Analyzes audio files to detect beats per minute (BPM) for music generation and live coding. Integrates with Strudel MCP Server to support pattern creation and audio analysis workflows.
Instructions
BPM detection
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/server/EnhancedMCPServer.ts:646-647 (handler)Placeholder handler for the detect_tempo tool that returns a 'Coming soon' message.case 'detect_tempo': return 'Tempo detection: Coming soon';
- src/server/EnhancedMCPServer.ts:258-262 (registration)Registration of the detect_tempo tool in the getTools() method, including its schema.{ name: 'detect_tempo', description: 'BPM detection', inputSchema: { type: 'object', properties: {} } },
- Placeholder handler for the detect_tempo tool that returns a 'Coming soon' message.case 'detect_tempo': return 'Tempo detection: Coming soon';
- src/server/EnhancedMCPServerFixed.ts:261-265 (registration)Registration of the detect_tempo tool in the getTools() method, including its schema.{ name: 'detect_tempo', description: 'BPM detection', inputSchema: { type: 'object', properties: {} } },