We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/benjamin920101/drug-interaction-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
#!/bin/sh
# STDIO mode startup script - suitable for local tool integration
set -e
# Change to script directory
cd "$(dirname "$0")"
# Create independent virtual environment (if it doesn't exist)
if [ ! -d ".venv" ]; then
echo "Creating virtual environment..." >&2
uv venv
echo "Installing dependencies..." >&2
echo "Note: Dependency installation may take several minutes. Please wait..." >&2
uv sync
fi
# Start STDIO mode MCP server
uv run standalone_server.py