We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ehc-io/qmd'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
entrypoint.sh•370 B
#!/bin/bash
set -e
MODE="${1:-mcp}"
TRANSPORT="${MCP_TRANSPORT:-stdio}"
case "$MODE" in
mcp)
if [ "$TRANSPORT" = "http" ]; then
exec bun run dist/qmd.js mcp --transport http --port ${QMD_PORT:-3000}
else
exec bun run dist/qmd.js mcp
fi
;;
ingest)
shift
exec bun run dist/qmd.js ingest "$@"
;;
*)
exec "$@"
;;
esac