We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/boringstudio-org/mcp-gitea-proxy'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
start-mcp.sh•429 B
#!/bin/zsh
# Ensure we are in the project directory
cd "$HOME/gitea-mcp" || exit 1
# Load .env explicitly using source
if [ -f .env ]; then
set -a
source .env
set +a
fi
export XDG_RUNTIME_DIR="$HOME/.fnm_runtime"
mkdir -p "$XDG_RUNTIME_DIR"
eval "$(~/.local/share/fnm/fnm env --shell zsh)"
# Run GLOBAL package and redirect stderr to a file for debugging (overwrite mode)
exec gitea-mcp-proxy "$@" 2> /tmp/mcp-error.log