> ## Documentation Index
> Fetch the complete documentation index at: https://mcp.wiki/llms.txt
> Use this file to discover all available pages before exploring further.

# TypeScript SDK

> MCP TypeScript/JavaScript SDK 使用指南

## TypeScript SDK 概述

官方 TypeScript SDK 支持 Node.js 和浏览器环境。

## 安装

```bash theme={null}
npm install @modelcontextprotocol/sdk
```

## 快速开始

```typescript theme={null}
import { McpServer } from '@modelcontextprotocol/sdk';

const server = new McpServer({
  name: 'my-server',
  version: '1.0.0'
});

server.start();
```

<Note>
  详细内容正在完善中...
</Note>
