Skip to main content
Glama
drewsungg

Pokemon Showdown MCP Server

by drewsungg
ci.yml1.28 kB
name: CI on: push: branches: [main] pull_request: branches: [main] jobs: test: runs-on: ubuntu-latest strategy: matrix: python-version: ["3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install dependencies run: | python -m pip install --upgrade pip pip install -e ".[dev]" - name: Lint with ruff run: | ruff check mcpkmn_showdown/ - name: Type check with mypy run: | mypy mcpkmn_showdown/ --ignore-missing-imports - name: Run tests run: | pytest tests/ -v --tb=short # Verify package can be built build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - name: Set up Python uses: actions/setup-python@v5 with: python-version: "3.11" - name: Install build tools run: pip install build - name: Build package run: python -m build - name: Verify package run: | pip install dist/*.whl mcpkmn-showdown --help || true

Latest Blog Posts

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/drewsungg/mcpkmn-showdown'

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