MCP Server Template

local-only server

The server can only run on the client’s local machine because it depends on local resources.

MCP 服务器模板🛠️

用于构建您自己的模型上下文协议 (MCP) 服务器的入门模板。此模板提供了创建可与 Cursor 或 Claude Desktop 配合使用的自定义 MCP 所需的基本结构和设置。

特征

项目结构

mcp-server-template/ ├── index.ts # Main server implementation ├── package.json # Project dependencies ├── tsconfig.json # TypeScript configuration └── build/ # Compiled JavaScript output

入门

  1. 克隆此模板:
git clone [your-repo-url] my-mcp-server cd my-mcp-server
  1. 安装依赖项:
pnpm install
  1. 构建项目:
pnpm run build

这将生成/build/index.js文件 - 已编译的 MCP 服务器脚本。

与游标一起使用

  1. 前往“光标设置”->“MCP”->“添加新的 MCP 服务器”
  2. 配置您的 MCP:
    • 姓名:[选择您自己的名字]
    • 类型:命令
    • 命令: node ABSOLUTE_PATH_TO_MCP_SERVER/build/index.js

与 Claude Desktop 一起使用

将以下 MCP 配置添加到您的 Claude Desktop 配置中:

{ "mcpServers": { "your-mcp-name": { "command": "node", "args": ["ABSOLUTE_PATH_TO_MCP_SERVER/build/index.js"] } } }

发展

该模板在index.ts中包含一个示例工具实现。要创建您自己的 MCP,请执行以下操作:

  1. 修改index.ts中的服务器配置:
const server = new McpServer({ name: "your-mcp-name", version: "0.0.1", });
  1. 使用server.tool()方法定义您的自定义工具:
server.tool( "your-tool-name", "Your tool description", { // Define your tool's parameters using Zod schema parameter: z.string().describe("Parameter description"), }, async ({ parameter }) => { // Implement your tool's logic here return { content: [ { type: "text", text: "Your tool's response", }, ], }; } );
  1. 构建并测试您的实现:
npm run build

贡献

请随时提交问题和增强请求!

执照

麻省理工学院

You must be authenticated.

A
security – no known vulnerabilities
F
license - not found
A
quality - confirmed to work

用于构建模型上下文协议服务器的入门模板,可以与 Cursor 或 Claude Desktop 集成,允许开发人员为 AI 助手创建自定义工具和扩展。

  1. Features
    1. Project Structure
      1. Getting Started
        1. Using with Cursor
          1. Using with Claude Desktop
            1. Development
              1. Contributing
                1. License
                  ID: vnt96edg3a