From 43a770cbb0ac48cf06c847005c11c4741c06de64 Mon Sep 17 00:00:00 2001 From: Jonathan Haas Date: Sat, 23 May 2026 23:16:39 -0700 Subject: [PATCH] Add MCP Inspector CI smoke --- .github/workflows/ci.yml | 1 + package.json | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 07d3539..d6ab749 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,3 +23,4 @@ jobs: - run: npm run build - run: npm test - run: npm run smoke + - run: npm run mcp:inspect diff --git a/package.json b/package.json index 01516de..ac84a18 100644 --- a/package.json +++ b/package.json @@ -25,7 +25,8 @@ "prepare": "npm run build", "check": "tsc -p tsconfig.json --noEmit", "test": "tsx --test test/*.test.ts", - "smoke": "npm run build && tsx scripts/smoke.ts" + "smoke": "npm run build && tsx scripts/smoke.ts", + "mcp:inspect": "npx -y @modelcontextprotocol/inspector@0.15.0 --cli node dist/server.js --spec test/fixtures/sample-openapi.yaml --method tools/list" }, "engines": { "node": ">=18"