# 安装 io.github.flagrix-io/flagrix

- 类型: MCP 工具
- 说明: Scan GitHub repos and profiles for malware before cloning — commit-pinned risk verdicts for agents
- 仓库: https://github.com/flagrix-io/flagrix-cli

## 方式一 · 一键代装（复制提示词让 AI 代劳）

### Claude Code
```
请帮我安装 askskill 上的 "io.github.flagrix-io/flagrix" MCP 服务：
执行：claude mcp add 'io-github-flagrix-io-flagrix' -- npx -y flagrix
```

### Codex
```
请帮我安装 askskill 上的 "io.github.flagrix-io/flagrix" MCP 服务：
在 ~/.codex/config.toml 中添加：
[mcp_servers.io-github-flagrix-io-flagrix]
command = "npx"
args = ["-y","flagrix"]
然后重启 Codex 生效
```

### Cursor
```
请帮我安装 askskill 上的 "io.github.flagrix-io/flagrix" MCP 服务：
在 .cursor/mcp.json 的 "mcpServers" 中添加：
"io-github-flagrix-io-flagrix": { "command": "npx", "args": ["-y","flagrix"] }
然后在 Cursor 设置 > MCP 中启用
```

## 方式二 · 命令行安装（原生命令与配置）

### Claude Code
```bash
claude mcp add --env GITHUB_TOKEN=YOUR_VALUE --transport stdio io-github-flagrix-io-flagrix -- npx -y flagrix
```
需要环境变量：GITHUB_TOKEN

### Codex
```bash
codex mcp add --env GITHUB_TOKEN=YOUR_VALUE io-github-flagrix-io-flagrix -- npx -y flagrix
```
配置文件 ~/.codex/config.toml：
```toml
[mcp_servers.io-github-flagrix-io-flagrix]
command = "npx"
args = ["-y","flagrix"]

[mcp_servers.io-github-flagrix-io-flagrix.env]
GITHUB_TOKEN = "YOUR_VALUE"
```
需要环境变量：GITHUB_TOKEN

### Cursor
配置文件 .cursor/mcp.json：
```json
{
  "mcpServers": {
    "io-github-flagrix-io-flagrix": {
      "command": "npx",
      "args": [
        "-y",
        "flagrix"
      ],
      "env": {
        "GITHUB_TOKEN": "YOUR_VALUE"
      }
    }
  }
}
```
一键安装：cursor://anysphere.cursor-deeplink/mcp/install?name=io-github-flagrix-io-flagrix&config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyIteSIsImZsYWdyaXgiXSwiZW52Ijp7IkdJVEhVQl9UT0tFTiI6IllPVVJfVkFMVUUifX0
需要环境变量：GITHUB_TOKEN
