Token导航 LogoToken导航TokenDH.com
Valorant Rank MCP Server logo
运维云端未说明官方级别未说明来源级核验

Valorant Rank MCP Server

MCP Server

一个用于与本地Valorant API服务器集成的模型上下文协议(MCP)服务器。

工具数

0

提示词数

0

GitHub Stars

0

资源数

0
TypeScriptClaudeAPI集成Claude DesktopClaude

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

作者 / 组织

owenbean400

提供方

owenbean400

最后核验

2026/5/17 20:19

快速接入

先看主来源和安装命令,再打开仓库或文档;下面只保留这个条目的关键接入事实。

详细介绍

Valorant MCP服务器

一种模型上下文协议(MCP)服务器,用于与本地Valorant API服务器集成。

  • Valorant API服务器存储库:

______________________________________________________________________

设置

1.安装依赖项

首先,确认已安装Node.js:

node --version

如果未安装Node.js,请从以下位置下载并安装:

安装项目依赖关系:

npm ci

或者:

npm install

______________________________________________________________________

2.建设项目

将TypeScript源代码编译为JavaScript:

npm run build

编译后的输出将在以下时间生成:

build/index.min.js

______________________________________________________________________

使用Claude Desktop运行

  1. 打开 克劳德桌面版.
  2. 导航至 设置→ 开发者.
  3. 打开MCP配置文件。
  4. 添加本地MCP服务器配置。

以下是使用 BeanBaller 账户

有关更多详细信息,请参阅: https://modelcontextprotocol.io/docs/develop/connect-local-servers

MCP配置示例

{
  "mcpServers": {
    "BeanBaller Valorant Data": {
      "command": "node",
      "args": ["build\\index.min.js"],
      "env": {
        "username": "BeanBaller",
        "api_base": "https://api.beanballer.com"
      }
    }
  }
}

______________________________________________________________________

MCP配置的JSON模式

下面是一个JSON模式,用于验证示例配置结构:

{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Claude MCP Configuration",
  "type": "object",
  "required": ["mcpServers"],
  "properties": {
    "mcpServers": {
      "type": "object",
      "minProperties": 1,
      "additionalProperties": {
        "type": "object",
        "required": ["command", "args", "env"],
        "properties": {
          "command": {
            "type": "string",
            "description": "Executable used to start the MCP server"
          },
          "args": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "minItems": 1,
            "description": "Arguments passed to the command"
          },
          "env": {
            "type": "object",
            "required": ["username", "api_base"],
            "properties": {
              "username": {
                "type": "string",
                "description": "Valorant account username"
              },
              "api_base": {
                "type": "string",
                "format": "uri",
                "description": "Base URL of the Valorant API server"
              }
            },
            "additionalProperties": true
          }
        },
        "additionalProperties": false
      }
    }
  },
  "additionalProperties": false
}

目录标签

目录标签

TypeScriptClaudeAPI集成Valorant本地部署游戏数据MCP服务器

支持客户端

Claude DesktopClaude

接入字段

传输方式(transport,传输协议)

未说明

鉴权方式(authType,认证方式)

none

工具数量(toolCount,工具数)

0

资源数量(resourceCount,资源数)

0

提示词数量(promptCount,提示词数)

0

权限和风险

未说明none部署方式未说明

接入前请确认传输方式、认证方式和部署位置,并根据实际工具能力限制访问范围。

安装前确认

不要直接授予不必要的文件、网络或账号权限;先核对安装命令和配置内容。

仍需确认:installCommand

来源信息

继续浏览同类 MCP