We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/AbhiGit-Trimble/weather-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
startup-gunicorn.sh•227 B
#!/bin/bash
# Set default values
export HOST=${HOST:-"0.0.0.0"}
export PORT=${PORT:-"8000"}
export WORKERS=${WORKERS:-"2"}
# Start the Weather MCP server with Gunicorn via uv
uv run gunicorn my_server:app -c gunicorn.conf.py