@modelcontextprotocol/server 2.0.0-alpha.4 → 2.0.0-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -4,7 +4,7 @@ The MCP (Model Context Protocol) TypeScript server SDK. Build MCP servers that e
4
4
 
5
5
  <!-- prettier-ignore -->
6
6
  > [!WARNING]
7
- > **This is an alpha release.** Expect breaking changes until v2 stabilizes. We're publishing early to gather feedback please try it and open issues — but we can't guarantee API stability yet. We'll aim to minimize disruption between alphas.
7
+ > **This is a beta release.** The API surface is settling but breaking changes remain possible until v2 stabilizes. Please try it and open issues — feedback during the beta directly shapes the stable release.
8
8
 
9
9
  <!-- prettier-ignore -->
10
10
  > [!NOTE]
@@ -13,7 +13,7 @@ The MCP (Model Context Protocol) TypeScript server SDK. Build MCP servers that e
13
13
  ## Install
14
14
 
15
15
  ```bash
16
- npm install @modelcontextprotocol/server@alpha
16
+ npm install @modelcontextprotocol/server@beta
17
17
  ```
18
18
 
19
19
  TypeScript ≥6.0 no longer auto-includes `@types/*` — add `"types": ["node"]` to your `tsconfig.json` `compilerOptions` (the published `.d.mts` references `Buffer`).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@modelcontextprotocol/server",
3
- "version": "2.0.0-alpha.4",
3
+ "version": "2.0.0-beta.1",
4
4
  "description": "Model Context Protocol implementation for TypeScript - Server package",
5
5
  "license": "MIT",
6
6
  "author": "Anthropic, PBC (https://anthropic.com)",
@@ -91,10 +91,10 @@
91
91
  "typescript": "^5.9.3",
92
92
  "typescript-eslint": "^8.48.1",
93
93
  "vitest": "^4.0.15",
94
- "@modelcontextprotocol/core-internal": "^2.0.0-alpha.3",
95
- "@modelcontextprotocol/test-helpers": "^2.0.0-alpha.0",
96
- "@modelcontextprotocol/tsconfig": "^2.0.0",
94
+ "@modelcontextprotocol/core-internal": "^2.0.0-beta.0",
97
95
  "@modelcontextprotocol/eslint-config": "^2.0.0",
96
+ "@modelcontextprotocol/test-helpers": "^2.0.0-beta.0",
97
+ "@modelcontextprotocol/tsconfig": "^2.0.0",
98
98
  "@modelcontextprotocol/vitest-config": "^2.0.0"
99
99
  },
100
100
  "scripts": {