We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/lightos/interactive-shell-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
GetCommitHash.bat•261 B
@echo off
REM -- Echo the git commit hash. If git isn't available for some reason,
REM -- output nothing instead.
git rev-parse HEAD >NUL 2>NUL && (
git rev-parse HEAD
) || (
echo none
)
REM -- Set ERRORLEVEL to 0 using this cryptic syntax.
(call )