We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/zillow/auto-mobile'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
deploy_website.sh•1.01 KiB
#!/bin/bash
# The website is built using MkDocs with the Material theme.
# https://squidfunk.github.io/mkdocs-material/
# It requires Python to run.
# Install the packages with the following command:
# pip install mkdocs mkdocs-material mdx_truly_sane_lists
if [[ "$1" = "--local" ]]; then local=true; fi
if ! [[ ${local} ]]; then
set -ex
export GIT_CLONE_PROTECTION_ACTIVE=false
REPO="git@github.com:zillow/auto-mobile.git"
DIR=temp-clone
# Delete any existing temporary website clone
rm -rf "${DIR}"
# Clone the current repo into temp folder
git clone "${REPO}" "${DIR}"
# Move working directory into temp folder
cd "${DIR}"
cd ..
rm -rf "${DIR}"
fi
# Copy in special files that GitHub wants in the project root.
cp CHANGELOG.md docs/changelog.md
cp .github/CONTRIBUTING.md docs/contributing.md
# Build the site and push the new files up to GitHub
if ! [[ ${local} ]]; then
mkdocs gh-deploy
else
mkdocs serve
fi
# Delete our temp folder
if ! [[ ${local} ]]; then
cd ..
rm -rf "${DIR}"
fi