Skip to main content
Glama
install_hear.sh1.47 kB
#!/bin/bash # Install script for 'hear' CLI - Apple's native speech recognition # Part of Voice Loop MCP set -e HEAR_VERSION="0.7" HEAR_URL="https://github.com/sveinbjornt/hear/releases/download/${HEAR_VERSION}/hear-${HEAR_VERSION}.zip" INSTALL_DIR="/tmp/hear-${HEAR_VERSION}" echo "Voice Loop MCP - hear CLI Installer" echo "====================================" echo "" # Check if macOS if [[ "$OSTYPE" != "darwin"* ]]; then echo "Error: This script only works on macOS" exit 1 fi # Check if already installed if [ -f "${INSTALL_DIR}/hear" ]; then echo "hear CLI is already installed at ${INSTALL_DIR}/hear" echo "" echo "Testing..." "${INSTALL_DIR}/hear" --version 2>/dev/null || echo "(version check not supported)" echo "" echo "Ready to use!" exit 0 fi echo "Downloading hear CLI v${HEAR_VERSION}..." mkdir -p "${INSTALL_DIR}" cd "${INSTALL_DIR}" # Download curl -L -o "hear.zip" "${HEAR_URL}" # Extract unzip -o "hear.zip" rm "hear.zip" # Make executable chmod +x hear echo "" echo "Installation complete!" echo "" echo "Location: ${INSTALL_DIR}/hear" echo "" echo "IMPORTANT: Before using, grant microphone permission:" echo " System Preferences > Security & Privacy > Privacy > Microphone" echo "" echo "Test with: ${INSTALL_DIR}/hear -d" echo "(Press Ctrl+C to stop)" echo "" echo "For Voice Loop MCP, the 'hear' command will be started automatically."

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/theonlypal/voice-loop-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server