We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/delk73/synesthetic-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
up.shโข392 B
#!/usr/bin/env bash
set -euo pipefail
# Helper script that builds the image and starts the 'serve' service without tailing logs.
SERVICE=serve
echo "๐ Building image for '$SERVICE'..."
docker compose build "$SERVICE"
echo "๐ Starting '$SERVICE' (detached)..."
docker compose up -d "$SERVICE"
echo "โ MCP is running in background. Use 'docker compose logs -f serve' to tail logs."