Back to MCP directory
publicPublicdnsLocal runtime

my-first-mcp-server

一个由Yusuke Wada开发的基于Node.js的MCP游戏服务器项目

article

README

🚀 配置文件说明

本项目主要围绕配置文件展开,该配置文件指定了相关服务的启动命令和参数,为系统的运行提供了必要的配置信息。

🚀 快速开始

配置文件路径

配置文件位于 /Users/yusuke/Library/Application\ 支持/Claude/claude_desktop_config.json

配置文件内容

{
  "mcpServers": {
    "game": {
      "command": "node",
      "args": ["/path-to/build/index.js"]
    }
  }
}

✨ 主要特性

  • 明确指定了 game 服务的启动命令为 node
  • 详细列出了启动 game 服务所需的参数,即 /path-to/build/index.js

📄 许可证

本项目采用 MIT 许可证。

👨‍💻 作者

Yusuke Wada

help

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client