Skip to main content
Glama

Excalidraw MCP Server

by yctimlin
ci.yml1.71 kB
name: CI on: push: branches: [ main, develop ] pull_request: branches: [ main, develop ] jobs: build-and-test: name: Build and Type Check runs-on: ubuntu-latest strategy: matrix: node-version: [18.x, 20.x, 22.x] steps: - name: Checkout code uses: actions/checkout@v4 - name: Setup Node.js ${{ matrix.node-version }} uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} cache: 'npm' - name: Install dependencies run: npm ci - name: Run TypeScript type check run: npm run type-check - name: Build project run: npm run build - name: Check build artifacts run: | echo "Checking if build artifacts exist..." test -f dist/index.js || (echo "dist/index.js not found" && exit 1) test -f dist/server.js || (echo "dist/server.js not found" && exit 1) test -d dist/frontend || (echo "dist/frontend not found" && exit 1) echo "All build artifacts present!" - name: Upload build artifacts if: matrix.node-version == '20.x' uses: actions/upload-artifact@v4 with: name: build-artifacts path: | dist/ retention-days: 7 lint-check: name: Lint Check runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v4 - name: Setup Node.js uses: actions/setup-node@v4 with: node-version: '20.x' cache: 'npm' - name: Install dependencies run: npm ci - name: Check for TypeScript errors run: npm run type-check

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/yctimlin/mcp_excalidraw'

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