Back to MCP directory
publicPublicdnsLocal runtime

j-archive-mcp

该项目为VSCode用户提供基于J-Archive的《危险边缘》单人游戏体验,通过GitHub Copilot实现问答互动。

article

README

🚀 项目 J-Archive MCP 服务器

此仓库具备在 VSCode 中,借助 J-Archive 和 GitHub Copilot 实现单人版 Jeopardy! 游戏体验的功能,为玩家提供了独特的游戏环境。

🚀 快速开始

本项目能让你在 VSCode 里轻松体验单人版 Jeopardy! 游戏。只需按照以下步骤操作,即可开启游戏之旅。

✨ 主要特性

  • 可玩 Jeopardy! 各轮次,包含普通轮、双倍分数轮和最终轮。
  • 能探索特定赛季和游戏中的问题。
  • 提供单人版的经典 Jeopardy! 格式改编。

📦 安装指南

  1. 克隆仓库:
    git clone git@github.com:abdyer/j-archive-mcp.git
    
  2. 安装依赖项并构建:
    npm install && npm run build
    
  3. 更新你的 VSCode settings.json 文件,在 mcp 键下添加如下配置:
    "mcp": {
      "servers": {
        "j-archive-mcp": {
          "command": "node",
          "args": ["/path/to/repo/j-archive-mcp/build/index.js"]
        }
      }
    }
    
    请将文件路径替换为你的 MCP 服务器入口点的正确路径。
  4. 启动 MCP 服务器,让 Copilot 开启一局 Jeopardy! 游戏。

🤝 贡献

欢迎大家积极贡献!你可以随意提出问题或提交拉取请求,共同改进这个项目。

📄 许可证

此项目采用 MIT 许可证。详细信息请查看 LICENSE 文件。

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