From 38de94b7ad248676b5ae76473a47649653aca0b6 Mon Sep 17 00:00:00 2001 From: Ola Hungerford Date: Fri, 29 Aug 2025 04:16:50 -0700 Subject: [PATCH 1/2] fix: update temperature argument type from number to string in everything server docs (#2610) Fixes issue #474 - documentation mismatch where temperature was documented as (number) but TypeScript SDK only accepts string arguments via z.record(z.string()) Co-authored-by: claude[bot] <209825114+claude[bot]@users.noreply.github.com> Co-authored-by: Ola Hungerford --- src/everything/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/everything/README.md b/src/everything/README.md index 466e9cc2..696a77e9 100644 --- a/src/everything/README.md +++ b/src/everything/README.md @@ -124,7 +124,7 @@ Resource features: 2. `complex_prompt` - Advanced prompt demonstrating argument handling - Required arguments: - - `temperature` (number): Temperature setting + - `temperature` (string): Temperature setting - Optional arguments: - `style` (string): Output style preference - Returns: Multi-turn conversation with images From 29aba77a930779741d234c0e1d3c1de1c8a267f5 Mon Sep 17 00:00:00 2001 From: Adam Jones Date: Fri, 29 Aug 2025 14:35:23 +0100 Subject: [PATCH 2/2] fix: only run scheduled release pipeline on modelcontextprotocol org --- .github/workflows/release.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f1c2b0e4..64178c3c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -8,6 +8,7 @@ on: jobs: create-metadata: runs-on: ubuntu-latest + if: github.repository_owner == 'modelcontextprotocol' outputs: hash: ${{ steps.last-release.outputs.hash }} version: ${{ steps.create-version.outputs.version}}