Skip to main content
Glama

mcp-pandoc

by vivekVells
ci.yml1.41 kB
--- name: Build & Test "on": push: branches: [main, master] pull_request: branches: [main, master] jobs: lint-and-test: runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v4 - name: Set up Python uses: actions/setup-python@v5 with: python-version: "3.11" - name: Install uv run: pip install uv - name: Install Pandoc and TeX Live run: sudo apt-get update && sudo apt-get install -y pandoc texlive-xetex - name: Sync dependencies (all groups) run: uv sync --all-groups - name: Run ruff (lint) run: uv run ruff check . - name: Run yamllint run: uv run yamllint . - name: Run pytest run: uv run pytest - name: Build project run: uv build - name: Test server imports run: uv run python -c "import mcp_pandoc; print('✅ Server imports correctly')" # run: | # # MCP servers are stdio-based and block waiting for JSON-RPC input # # A successful timeout means the server started and was running correctly # timeout 3 uv run mcp-pandoc >/dev/null 2>&1 # if [ $? -eq 124 ]; then # 124 is timeout's exit code when process is killed # echo "✅ MCP server starts and runs correctly" # else # echo "❌ MCP server failed to start or crashed" # exit 1 # fi

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/vivekVells/mcp-pandoc'

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