We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/TheLunarCompany/lunar'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
common.sh•218 B
#!/bin/bash
# Source this file to use the functions defined here :)
depcheck() {
if ! command -v "$1" &>/dev/null; then
echo "$1 could not be found. Please install and try again."
exit 1
fi
}