Skip to content

Add stdio support to MCP Studio #471

Add stdio support to MCP Studio

Add stdio support to MCP Studio #471

Workflow file for this run

name: Checks
on:
push:
branches:
- main
pull_request:
jobs:
checks:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Bun
uses: oven-sh/setup-bun@v2
- name: Install dependencies
run: bun install
- name: Run format check
run: bun run fmt --check
- name: Run lint
run: bun run lint
- name: Run type check
run: bun run check