We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/mbailey/voicemode'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
# voicemode-kokoro.service v1.1.1
# Last updated: 2025-01-29
# Compatible with: kokoro-fastapi v1.0.0+
[Unit]
Description=Voice Mode Kokoro Text-to-Speech Service
After=network.target
[Service]
Type=simple
WorkingDirectory={KOKORO_DIR}
ExecStart={START_SCRIPT}
# Wait for service to be ready by checking health endpoint
ExecStartPost=/bin/sh -c 'while ! curl -sf http://127.0.0.1:{KOKORO_PORT}/health >/dev/null 2>&1; do echo "Waiting for Kokoro to be ready..."; sleep 1; done; echo "Kokoro is ready!"'
Restart=on-failure
RestartSec=10
# Don't restart if the executable is missing
RestartPreventExitStatus=127
# Environment
Environment="VOICEMODE_KOKORO_PORT={KOKORO_PORT}"
Environment="PATH=%h/.local/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
# Resource limits
MemoryLimit=4G
CPUQuota=100%
# Logging
StandardOutput=journal
StandardError=journal
SyslogIdentifier=voicemode-kokoro
[Install]
WantedBy=default.target