We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/minipuft/claude-prompts-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
setup.sh•510 B
#!/bin/bash
# Plugin setup script - installs server dependencies if missing
# Called by SessionStart hook on first run after installation
set -e
PLUGIN_ROOT="${CLAUDE_PLUGIN_ROOT:-$(dirname "$(dirname "$0")")}"
SERVER_DIR="${PLUGIN_ROOT}/server"
# Check if node_modules exists
if [ ! -d "${SERVER_DIR}/node_modules" ]; then
echo "Installing server dependencies..." >&2
cd "${SERVER_DIR}"
npm install --production --silent 2>&1 | head -5 >&2
echo "Dependencies installed successfully" >&2
fi