openclaw 网盘下载
OpenClaw

技能详情(站内镜像,无评论)

首页 > 技能库 > Gate MCP Installer

One-click installer and configurator for Gate MCP (mcporter) in OpenClaw. Use when the user wants to (1) Install mcporter CLI tool, (2) Configure Gate MCP se...

AI 与大模型

作者:Aspire @aspiremongoai

许可证:MIT-0

MIT-0 ·免费使用、修改和重新分发。无需归因。

版本:v2026.3.4

统计:⭐ 1 · 171 · 0 current installs · 0 all-time installs

1

安装量(当前) 0

🛡 VirusTotal :良性 · OpenClaw :良性

Package:aspiremongoai/gate-mc-installer

安全扫描(ClawHub)

  • VirusTotal :良性
  • OpenClaw :良性

OpenClaw 评估

The skill is internally consistent with its stated purpose (installing and configuring mcporter/Gate MCP); nothing in the script or docs requests unrelated credentials or performs unexpected actions, but there is a small documentation inconsistency to review and normal npm supply‑chain cautions apply.

目的

Name/description, README, SKILL.md, and the install script all align: the skill installs the mcporter CLI (npm i -g mcporter), configures the Gate MCP endpoint, and verifies connectivity. Required resources (Node.js/npm and network) are expected for this functionality.

说明范围

Runtime instructions and the script stay within the stated scope (install, configure, verify). One inconsistency: SKILL.md troubleshooting mentions 'fulltrust.link' as an endpoint to check for connection timeouts, while the script and other docs use 'https://api.gatemcp.ai/mcp'. This looks like a stale or incorrect reference in the docs and should be clarified, but it does not appear in the installer script itself.

安装机制

No formal install spec (instruction-only) but a bundled shell script installs mcporter via the public npm registry (npm i -g mcporter). That is proportionate for installing a Node CLI, but global npm installs have normal supply-chain risks (the installer executes code from npm). The script itself uses only standard shell commands and does not download arbitrary archives or executables from unknown URLs.

证书

The skill does not request environment variables, secrets, or config paths. The script configures a public endpoint (https://api.gatemcp.ai/mcp) and does not handle or store credentials—this is proportionate to the declared purpose.

持久

Skill is user-invocable only (always:false) and does not request persistent system-wide privileges, nor does it modify other skills' configs. It runs a one-time installation/configuration flow when invoked.

综合结论

This skill appears to do what it claims: it runs a bundled shell script to globally install the 'mcporter' npm package, add a Gate MCP config pointing to https://api.gatemcp.ai/mcp, and verify connectivity. Before running: (1) inspect the script yourself (it's short and included) to confirm it matches your expectations; (2) be aware that 'npm i -g' runs code from the npm registry—verify the mcporter package author and npm page if you have supp…

安装(复制给龙虾 AI)

将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。

请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Gate MCP Installer」。简介:One-click installer and configurator for Gate MCP (mcporter) in OpenClaw. Use w…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/aspiremongoai/gate-mc-installer/SKILL.md
(来源:yingzhi8.cn 技能库)

SKILL.md

打开原始 SKILL.md(GitHub raw)

---
name: gate-mcp-installer
version: "2026.3.4-1"
updated: "2026-03-04"
description: One-click installer and configurator for Gate MCP (mcporter) in OpenClaw. Use when the user wants to (1) Install mcporter CLI tool, (2) Configure Gate MCP server connection, (3) Verify Gate MCP setup, or (4) Troubleshoot Gate MCP connectivity issues.
---

# Gate MCP Installer

One-click setup for Gate MCP (mcporter) in OpenClaw.

## Quick Start

To set up Gate MCP, run the install script:

```bash
bash ~/.openclaw/skills/gate-mcp-installer/scripts/install-gate-mcp.sh
```

Or execute the skill directly and I will guide you through the installation.

## What This Skill Does

This skill automates the complete Gate MCP setup process:

1. **Installs mcporter CLI** globally via npm
2. **Configures Gate MCP server** with proper endpoint
3. **Verifies connectivity** by listing available tools
4. **Provides usage examples** for common queries

## Manual Installation Steps (if script fails)

### Step 1: Install mcporter

```bash
npm i -g mcporter
# Or verify installation
npx mcporter --version
```

### Step 2: Configure Gate MCP

```bash
mcporter config add gate https://api.gatemcp.ai/mcp --scope home
```

### Step 3: Verify Configuration

```bash
# Check config is written
mcporter config get gate

# List available tools
mcporter list gate --schema
```

If tools are listed, Gate MCP is ready to use!

## Common Usage Examples

After installation, use Gate MCP with queries like:

- "查询 BTC/USDT 的价格"
- "用 gate mcp 分析 SOL"
- "Gate 有什么套利机会?"
- "查看 ETH 的资金费率"

## Troubleshooting

| Issue | Solution |
|-------|----------|
| `command not found: mcporter` | Run `npm i -g mcporter` |
| Config not found | Run the config add command again |
| Connection timeout | Check internet connection to fulltrust.link |
| No tools listed | Verify config URL is correct |

## Resources

- **Install Script**: `scripts/install-gate-mcp.sh` - Automated one-click installer