Skip to content

Commit 84cbb01

Browse files
chore: enter alpha prerelease mode
- Add .changeset/pre.json (tag: alpha) - Add README.md stubs for client and server packages so npm pages aren't blank
1 parent a39a9eb commit 84cbb01

File tree

3 files changed

+67
-0
lines changed

3 files changed

+67
-0
lines changed

.changeset/pre.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"mode": "pre",
3+
"tag": "alpha",
4+
"initialVersions": {
5+
"@modelcontextprotocol/eslint-config": "2.0.0",
6+
"@modelcontextprotocol/tsconfig": "2.0.0",
7+
"@modelcontextprotocol/vitest-config": "2.0.0",
8+
"@modelcontextprotocol/examples-client": "2.0.0-alpha.0",
9+
"@modelcontextprotocol/examples-client-quickstart": "2.0.0-alpha.0",
10+
"@modelcontextprotocol/examples-server": "2.0.0-alpha.0",
11+
"@modelcontextprotocol/examples-server-quickstart": "2.0.0-alpha.0",
12+
"@modelcontextprotocol/examples-shared": "2.0.0-alpha.0",
13+
"@modelcontextprotocol/client": "2.0.0-alpha.0",
14+
"@modelcontextprotocol/core": "2.0.0-alpha.0",
15+
"@modelcontextprotocol/express": "2.0.0-alpha.0",
16+
"@modelcontextprotocol/hono": "2.0.0-alpha.0",
17+
"@modelcontextprotocol/node": "2.0.0-alpha.0",
18+
"@modelcontextprotocol/server": "2.0.0-alpha.0",
19+
"@modelcontextprotocol/test-conformance": "2.0.0-alpha.0",
20+
"@modelcontextprotocol/test-helpers": "2.0.0-alpha.0",
21+
"@modelcontextprotocol/test-integration": "2.0.0-alpha.0"
22+
},
23+
"changesets": []
24+
}

packages/client/README.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# `@modelcontextprotocol/client`
2+
3+
The MCP (Model Context Protocol) TypeScript client SDK. Build MCP clients that connect to MCP servers.
4+
5+
> [!NOTE] This is **v2** of the MCP TypeScript SDK. It replaces the monolithic `@modelcontextprotocol/sdk` package from v1. See the **[migration guide](https://github.com/modelcontextprotocol/typescript-sdk/blob/main/docs/migration.md)** if you're coming from v1.
6+
7+
## Install
8+
9+
```bash
10+
npm install @modelcontextprotocol/client@alpha zod
11+
```
12+
13+
`zod` is a required peer dependency.
14+
15+
## Documentation
16+
17+
- **[Repository README](https://github.com/modelcontextprotocol/typescript-sdk#readme)** — overview, package layout, examples
18+
- **[Client guide](https://github.com/modelcontextprotocol/typescript-sdk/blob/main/docs/client.md)**
19+
- **[API reference](https://ts.sdk.modelcontextprotocol.io/v2/)**
20+
- **[MCP specification](https://modelcontextprotocol.io)**

packages/server/README.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# `@modelcontextprotocol/server`
2+
3+
The MCP (Model Context Protocol) TypeScript server SDK. Build MCP servers that expose tools, resources, and prompts.
4+
5+
> [!NOTE] This is **v2** of the MCP TypeScript SDK. It replaces the monolithic `@modelcontextprotocol/sdk` package from v1. See the **[migration guide](https://github.com/modelcontextprotocol/typescript-sdk/blob/main/docs/migration.md)** if you're coming from v1.
6+
7+
## Install
8+
9+
```bash
10+
npm install @modelcontextprotocol/server@alpha zod
11+
```
12+
13+
`zod` is a required peer dependency.
14+
15+
Optional framework adapters: [`@modelcontextprotocol/express`](https://www.npmjs.com/package/@modelcontextprotocol/express), [`@modelcontextprotocol/hono`](https://www.npmjs.com/package/@modelcontextprotocol/hono),
16+
[`@modelcontextprotocol/node`](https://www.npmjs.com/package/@modelcontextprotocol/node).
17+
18+
## Documentation
19+
20+
- **[Repository README](https://github.com/modelcontextprotocol/typescript-sdk#readme)** — overview, package layout, examples
21+
- **[Server guide](https://github.com/modelcontextprotocol/typescript-sdk/blob/main/docs/server.md)**
22+
- **[API reference](https://ts.sdk.modelcontextprotocol.io/v2/)**
23+
- **[MCP specification](https://modelcontextprotocol.io)**

0 commit comments

Comments
 (0)