We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/yaniv-golan/mcp-bash-framework'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
check-env•495 B
#!/usr/bin/env bash
set -euo pipefail
printf 'Bash version: %s\n' "$BASH_VERSION"
has_json_tool=false
if command -v jq >/dev/null 2>&1; then
printf 'jq available: %s\n' "$(jq --version)"
has_json_tool=true
fi
if command -v gojq >/dev/null 2>&1; then
printf 'gojq available: %s\n' "$(gojq --version | head -n1)"
has_json_tool=true
fi
if [[ "${has_json_tool}" == "false" ]]; then
printf 'No jq/gojq found: runtime will enter minimal mode (tools/resources/prompts/completion disabled).\n'
fi