Skip to main content
Glama

Coupler Analytics

by railsware
build_image614 B
#!/usr/bin/env bash set -euo pipefail ENVIRONMENT="${1:-development}" if [ -z "$ENVIRONMENT" ]; then echo "Error: Environment argument is required" >&2 echo "Usage: $(basename "$0") <environment>" >&2 exit 1 fi build_development() { echo "Building development image: coupler-io-mcp-server-development" docker build \ -t coupler-io-mcp-server-development \ -f docker/Dockerfile \ . } case "$ENVIRONMENT" in development) build_development ;; *) echo "Error: Unknown environment '$ENVIRONMENT'" >&2 echo "Supported environments: development" >&2 exit 1 ;; esac

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/railsware/coupler-io-mcp-server'

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