Skip to content

docs: expand README with runtime details and usage #6

docs: expand README with runtime details and usage

docs: expand README with runtime details and usage #6

Workflow file for this run

name: ci-build
on:
push:
branches: [ "**" ]
pull_request:
branches: [ "**" ]
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build (no push)
uses: docker/build-push-action@v6
with:
context: .
platforms: linux/amd64
load: true
push: false
tags: mcp-stdio-bridge:ci
- name: Smoke test runtime (uvx/node/python)
run: |
docker run --rm --entrypoint sh mcp-stdio-bridge:ci -lc '
set -e
uv --version
which uvx
uvx --help >/dev/null
node -v
python3 -V
mcp-proxy --help >/dev/null
'