Skip to main content
Glama

MCP Unified Server

by getfounded
deploy-docs.yml1.62 kB
name: Deploy Documentation to GitHub Pages on: # Trigger on pushes to main branch push: branches: - main # Only run when docs are changed paths: - 'docs/**' - '.github/workflows/deploy-docs.yml' - 'README.md' # Also trigger on README changes # Allow manual trigger workflow_dispatch: permissions: contents: read pages: write id-token: write # Allow only one concurrent deployment concurrency: group: "pages" cancel-in-progress: false jobs: # Build job build: runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 - name: Setup Node.js uses: actions/setup-node@v4 with: node-version: '18' - name: Install dependencies working-directory: ./docs run: npm install - name: Build documentation working-directory: ./docs run: npm run build - name: Verify CNAME file run: | if [ -f ./docs/build/CNAME ]; then echo "CNAME file found with content: $(cat ./docs/build/CNAME)" else echo "Warning: CNAME file not found in build output" fi - name: Upload artifact uses: actions/upload-pages-artifact@v3 with: path: ./docs/build # Deployment job deploy: environment: name: github-pages url: ${{ steps.deployment.outputs.page_url }} runs-on: ubuntu-latest needs: build steps: - name: Deploy to GitHub Pages id: deployment uses: actions/deploy-pages@v4

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/getfounded/mcp-tool-kit'

If you have feedback or need assistance with the MCP directory API, please join our Discord server