#!/bin/bash
# Script to build and install the speech-mcp extension locally
set -e # Exit on error
# Change to the project directory
cd "$(dirname "$0")"
# Build the wheel
echo "Building wheel..."
python -m build
# Get the wheel file path
WHEEL_FILE=$(ls -t dist/*.whl | head -1)
WHEEL_PATH="$(pwd)/$WHEEL_FILE"
echo "Using wheel file: $WHEEL_PATH"
# Install with UVX
if [ "$1" == "--goose" ]; then
# Install and start a Goose session
echo "Installing and starting Goose session with local extension..."
goose session --with-extension "uvx $WHEEL_PATH"
else
# Just install with UVX
echo "Installing with UVX..."
uvx "$WHEEL_PATH"
fi
echo "Installation complete!"
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/Kvadratni/speech-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server