# 安装 io.github.geraservicesuk/mcp-gerasure

- 类型: MCP 工具
- 说明: 帮助用户获取微型保险报价、投保理赔并管理多国保障方案。
- 仓库: https://github.com/geraservicesuk/globetura
- ⚠ 安全: 该 MCP 工具材料较少，但来源于官方 Registry 且开源、近期有更新，整体未见明确高风险红旗。其功能涉及保险业务与本机代码执行，且需配置 API 地址，建议按最小权限和受控网络环境使用。

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

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

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

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

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

### Claude Code
```bash
claude mcp add --env GERASURE_API_URL=YOUR_VALUE --transport stdio io-github-geraservicesuk-mcp-gerasure -- npx -y @gera-services/mcp-gerasure
```
需要环境变量：GERASURE_API_URL

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

[mcp_servers.io-github-geraservicesuk-mcp-gerasure.env]
GERASURE_API_URL = "YOUR_VALUE"
```
需要环境变量：GERASURE_API_URL

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