We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/SepineTam/stata-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
name: Deploy MkDocs site to GitHub Pages
on:
push:
branches:
- master
- docs
permissions:
contents: write
jobs:
build-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install MkDocs and plugins
run: |
pip install mkdocs
pip install mkdocs-material
pip install mkdocs-static-i18n
- name: Build and Deploy
run: mkdocs gh-deploy --force