# 安装 Reel Estate MCP

- 类型: MCP 工具
- 说明: Turn real-estate listing photos into property videos from your AI assistant.
- 仓库: https://github.com/TryReelEstate/reel-estate-mcp

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

### Claude Code
```
请帮我安装 askskill 上的 "Reel Estate MCP" MCP 服务：
执行：claude mcp add 'com-tryreelestate-reel-estate-mcp' -- npx -y reel-estate-mcp
```

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

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

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

### Claude Code
```bash
claude mcp add --env MCP_SERVER_URL=YOUR_VALUE --env MCP_OAUTH_CLIENT_ID=YOUR_VALUE --env MCP_OAUTH_CALLBACK_PORT=YOUR_VALUE --env MCP_OAUTH_STORE_DIR=YOUR_VALUE --env MCP_OAUTH_SCOPE=YOUR_VALUE --env MCP_READONLY=YOUR_VALUE --transport stdio com-tryreelestate-reel-estate-mcp -- npx -y reel-estate-mcp
```
需要环境变量：MCP_SERVER_URL, MCP_OAUTH_CLIENT_ID, MCP_OAUTH_CALLBACK_PORT, MCP_OAUTH_STORE_DIR, MCP_OAUTH_SCOPE, MCP_READONLY

### Codex
```bash
codex mcp add --env MCP_SERVER_URL=YOUR_VALUE --env MCP_OAUTH_CLIENT_ID=YOUR_VALUE --env MCP_OAUTH_CALLBACK_PORT=YOUR_VALUE --env MCP_OAUTH_STORE_DIR=YOUR_VALUE --env MCP_OAUTH_SCOPE=YOUR_VALUE --env MCP_READONLY=YOUR_VALUE com-tryreelestate-reel-estate-mcp -- npx -y reel-estate-mcp
```
配置文件 ~/.codex/config.toml：
```toml
[mcp_servers.com-tryreelestate-reel-estate-mcp]
command = "npx"
args = ["-y","reel-estate-mcp"]

[mcp_servers.com-tryreelestate-reel-estate-mcp.env]
MCP_SERVER_URL = "YOUR_VALUE"
MCP_OAUTH_CLIENT_ID = "YOUR_VALUE"
MCP_OAUTH_CALLBACK_PORT = "YOUR_VALUE"
MCP_OAUTH_STORE_DIR = "YOUR_VALUE"
MCP_OAUTH_SCOPE = "YOUR_VALUE"
MCP_READONLY = "YOUR_VALUE"
```
需要环境变量：MCP_SERVER_URL, MCP_OAUTH_CLIENT_ID, MCP_OAUTH_CALLBACK_PORT, MCP_OAUTH_STORE_DIR, MCP_OAUTH_SCOPE, MCP_READONLY

### Cursor
配置文件 .cursor/mcp.json：
```json
{
  "mcpServers": {
    "com-tryreelestate-reel-estate-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "reel-estate-mcp"
      ],
      "env": {
        "MCP_SERVER_URL": "YOUR_VALUE",
        "MCP_OAUTH_CLIENT_ID": "YOUR_VALUE",
        "MCP_OAUTH_CALLBACK_PORT": "YOUR_VALUE",
        "MCP_OAUTH_STORE_DIR": "YOUR_VALUE",
        "MCP_OAUTH_SCOPE": "YOUR_VALUE",
        "MCP_READONLY": "YOUR_VALUE"
      }
    }
  }
}
```
一键安装：cursor://anysphere.cursor-deeplink/mcp/install?name=com-tryreelestate-reel-estate-mcp&config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyIteSIsInJlZWwtZXN0YXRlLW1jcCJdLCJlbnYiOnsiTUNQX1NFUlZFUl9VUkwiOiJZT1VSX1ZBTFVFIiwiTUNQX09BVVRIX0NMSUVOVF9JRCI6IllPVVJfVkFMVUUiLCJNQ1BfT0FVVEhfQ0FMTEJBQ0tfUE9SVCI6IllPVVJfVkFMVUUiLCJNQ1BfT0FVVEhfU1RPUkVfRElSIjoiWU9VUl9WQUxVRSIsIk1DUF9PQVVUSF9TQ09QRSI6IllPVVJfVkFMVUUiLCJNQ1BfUkVBRE9OTFkiOiJZT1VSX1ZBTFVFIn19
需要环境变量：MCP_SERVER_URL, MCP_OAUTH_CLIENT_ID, MCP_OAUTH_CALLBACK_PORT, MCP_OAUTH_STORE_DIR, MCP_OAUTH_SCOPE, MCP_READONLY
