Skip to main content

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 概述

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

安装

npm install @modelcontextprotocol/sdk

快速开始

import { McpServer } from '@modelcontextprotocol/sdk';

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

server.start();
详细内容正在完善中…