We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/SheffieldP/hubspot_mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
#!/bin/bash
# Install Python dependencies
python -m pip install -r requirements.txt 2>/dev/null || pip3 install -r requirements.txt 2>/dev/null || echo "Warning: Failed to install Python dependencies"
# Create necessary directories
mkdir -p api
# Create the public directory that Vercel requires
mkdir -p public
touch public/.gitkeep
# Print debug info
echo "Build script executed successfully"
echo "Current directory: $(pwd)"
echo "Files in current directory:"
ls -la
echo "Files in public directory:"
ls -la public
# Exit successfully
exit 0