We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Talljack/content-manager-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
glob•1.4 KiB
#!/bin/sh
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
case `uname` in
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
esac
if [ -z "$NODE_PATH" ]; then
export NODE_PATH="/Users/yugangcao/apps/my-apps/content-manager-mcp/node_modules/.pnpm/glob@11.0.3/node_modules/glob/dist/esm/node_modules:/Users/yugangcao/apps/my-apps/content-manager-mcp/node_modules/.pnpm/glob@11.0.3/node_modules/glob/dist/node_modules:/Users/yugangcao/apps/my-apps/content-manager-mcp/node_modules/.pnpm/glob@11.0.3/node_modules/glob/node_modules:/Users/yugangcao/apps/my-apps/content-manager-mcp/node_modules/.pnpm/glob@11.0.3/node_modules:/Users/yugangcao/apps/my-apps/content-manager-mcp/node_modules/.pnpm/node_modules"
else
export NODE_PATH="/Users/yugangcao/apps/my-apps/content-manager-mcp/node_modules/.pnpm/glob@11.0.3/node_modules/glob/dist/esm/node_modules:/Users/yugangcao/apps/my-apps/content-manager-mcp/node_modules/.pnpm/glob@11.0.3/node_modules/glob/dist/node_modules:/Users/yugangcao/apps/my-apps/content-manager-mcp/node_modules/.pnpm/glob@11.0.3/node_modules/glob/node_modules:/Users/yugangcao/apps/my-apps/content-manager-mcp/node_modules/.pnpm/glob@11.0.3/node_modules:/Users/yugangcao/apps/my-apps/content-manager-mcp/node_modules/.pnpm/node_modules:$NODE_PATH"
fi
if [ -x "$basedir/node" ]; then
exec "$basedir/node" "$basedir/../glob/dist/esm/bin.mjs" "$@"
else
exec node "$basedir/../glob/dist/esm/bin.mjs" "$@"
fi