Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
e73b9a2
Enable Dependabot
koic Jan 24, 2026
63df72c
docs(everything): fix markdown formatting and instructions file refer…
Joosboy Jul 14, 2026
86b9438
Merge pull request #3243 from koic/enable_dependabot
localden Jul 29, 2026
31bd129
chore(deps): bump actions/setup-python from 6 to 7
dependabot[bot] Jul 29, 2026
40ce2f7
chore(deps): bump actions/upload-artifact from 6 to 7
dependabot[bot] Jul 29, 2026
42a1d82
chore(deps): bump actions/download-artifact from 7 to 8
dependabot[bot] Jul 29, 2026
2e15194
chore(deps): bump astral-sh/setup-uv from 3 to 7
dependabot[bot] Jul 29, 2026
fab6abe
chore(deps): bump actions/setup-node from 6 to 7
dependabot[bot] Jul 29, 2026
7bdcdb6
Merge pull request #4584 from modelcontextprotocol/dependabot/github_…
localden Jul 29, 2026
10962d3
Merge pull request #4588 from modelcontextprotocol/dependabot/github_…
localden Jul 29, 2026
4852bb3
Merge pull request #4585 from modelcontextprotocol/dependabot/github_…
localden Jul 29, 2026
20b5783
Merge pull request #4586 from modelcontextprotocol/dependabot/github_…
localden Jul 29, 2026
ced1408
Merge pull request #4587 from modelcontextprotocol/dependabot/github_…
localden Jul 29, 2026
fd8248e
chore(deps): bump the npm_and_yarn group across 1 directory with 6 up…
dependabot[bot] Jul 29, 2026
3bcfedd
chore(deps): bump the uv group across 3 directories with 4 updates
dependabot[bot] Jul 29, 2026
76639ea
Merge pull request #4590 from modelcontextprotocol/dependabot/uv/src/…
localden Jul 29, 2026
7112282
Merge pull request #4589 from modelcontextprotocol/dependabot/npm_and…
localden Jul 29, 2026
d8cff7f
chore(deps): bump @hono/node-server
dependabot[bot] Jul 29, 2026
1cd1096
Merge pull request #4591 from modelcontextprotocol/dependabot/npm_and…
localden Jul 29, 2026
76d64c8
Merge pull request #4527 from Joosboy/docs-everything-4096-references…
localden Jul 29, 2026
9831f3f
feat(everything): serve both protocol eras on SDK v2 (2026-07-28 + le…
olaservo Jul 26, 2026
2b6257a
feat(everything): add a per-registration cacheHint to the static doc …
olaservo Jul 26, 2026
6cd9cbf
chore(everything): move to TypeScript SDK v2.0.0 GA
olaservo Aug 1, 2026
a66678c
feat(everything): demonstrate an array-rooted outputSchema
olaservo Aug 1, 2026
1034f40
docs(everything): correct stale and incomplete module documentation
olaservo Aug 1, 2026
4078854
fix(everything): correct the temperature unit in the weather output s…
olaservo Aug 2, 2026
c55f5d5
fix(everything): address review feedback on shutdown and subscription…
olaservo Aug 3, 2026
53dbe83
fix(python): require mcp>=1.29.0,<2 in fetch, git, and time
olaservo Aug 18, 2026
d811ba1
docs(python): note the mcp 1.x requirement in fetch, git, and time
olaservo Aug 18, 2026
599dafc
Merge pull request #4663 from olaservo/fix/python-cap-mcp-below-2
olaservo Aug 18, 2026
b6fe776
Merge remote-tracking branch 'origin/main' into feat/everything-dual-…
olaservo Aug 20, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
version: 2
updates:
- package-ecosystem: 'github-actions'
directory: '/'
schedule:
interval: 'weekly'
10 changes: 5 additions & 5 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ jobs:
- uses: actions/checkout@v6

- name: Install uv
uses: astral-sh/setup-uv@v3
uses: astral-sh/setup-uv@v7

- name: Set up Python
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version-file: "src/${{ matrix.package }}/.python-version"

Expand Down Expand Up @@ -73,10 +73,10 @@ jobs:
- uses: actions/checkout@v6

- name: Install uv
uses: astral-sh/setup-uv@v3
uses: astral-sh/setup-uv@v7

- name: Set up Python
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version-file: "src/${{ matrix.package }}/.python-version"

Expand All @@ -93,7 +93,7 @@ jobs:
run: uv build

- name: Upload artifacts
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: dist-${{ matrix.package }}
path: src/${{ matrix.package }}/dist/
14 changes: 7 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
echo "Using last release hash: ${HASH}"

- name: Install uv
uses: astral-sh/setup-uv@v5
uses: astral-sh/setup-uv@v7

- name: Create version name
id: create-version
Expand All @@ -41,7 +41,7 @@ jobs:
cat RELEASE_NOTES.md

- name: Release notes
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: release-notes
path: RELEASE_NOTES.md
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:
fetch-depth: 0

- name: Install uv
uses: astral-sh/setup-uv@v5
uses: astral-sh/setup-uv@v7

- name: Update packages
run: |
Expand Down Expand Up @@ -121,10 +121,10 @@ jobs:
ref: ${{ needs.create-metadata.outputs.version }}

- name: Install uv
uses: astral-sh/setup-uv@v5
uses: astral-sh/setup-uv@v7

- name: Set up Python
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version-file: "src/${{ matrix.package }}/.python-version"

Expand Down Expand Up @@ -173,7 +173,7 @@ jobs:
with:
ref: ${{ needs.create-metadata.outputs.version }}

- uses: actions/setup-node@v6
- uses: actions/setup-node@v7
with:
node-version: 22
cache: npm
Expand Down Expand Up @@ -228,7 +228,7 @@ jobs:
- uses: actions/checkout@v6

- name: Download release notes
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
name: release-notes

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/typescript.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
steps:
- uses: actions/checkout@v6

- uses: actions/setup-node@v6
- uses: actions/setup-node@v7
with:
node-version: 22
cache: npm
Expand All @@ -57,7 +57,7 @@ jobs:
steps:
- uses: actions/checkout@v6

- uses: actions/setup-node@v6
- uses: actions/setup-node@v7
with:
node-version: 22
cache: npm
Expand Down
Loading