We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/helixml/kodit'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
docker-entrypoint.sh•277 B
#!/bin/sh
set -e
# Fix ownership of the data directory so the kodit user can write to it.
# This handles upgrades from older images that ran as root.
dir="${DATA_DIR:-/data}"
if [ "$(id -u)" = "0" ]; then
chown -R kodit:kodit "$dir"
exec gosu kodit "$@"
fi
exec "$@"