We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/systeminit/si'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
info•943 B
#!/bin/bash
# Find & Import all the supporting functions from the supporting folder
# Get the directory of the current script to figure out where the
# Supporting funcs are
IMPORT_DIR=$(cd $(dirname "${BASH_SOURCE[0]}") && pwd)
for script in ${IMPORT_DIR}/supporting-funcs/*.sh; do
if [[ -f "$script" ]]; then
source "$script"
fi
done
usage() {
echo "----------------------------------"
echo "The toolbox provides a bunch of helper"
echo "scripts to support SI. Here's what you"
echo "can do:"
list_usages
exit 1
}
list_usages() {
for script in /usr/local/bin/si/*; do
if [[ -f "$script" && $(basename "$script") != "info" ]]; then
(
source "$script" 2>/dev/null
usage 2>/dev/null || true
)
section ""
section "**************************************************************************************************************"
fi
done
}
list_usages