# 安装 io.github.stanislawherjan1/gdocs-comments-mcp

- 类型: MCP 工具
- 说明: Add inline, range-anchored comments to Google Docs - the one comment op the Google APIs can't do.
- 仓库: https://github.com/stanislawherjan1/gdocs-comments-mcp

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

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

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

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

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

### Claude Code
```bash
claude mcp add --env GDOCS_COMMENTS_PROFILE_DIR=YOUR_VALUE --env GDOCS_COMMENTS_CDP_URL=YOUR_VALUE --transport stdio io-github-stanislawherjan1-gdocs-comments-mcp -- npx -y gdocs-comments-mcp
```
需要环境变量：GDOCS_COMMENTS_PROFILE_DIR, GDOCS_COMMENTS_CDP_URL

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

[mcp_servers.io-github-stanislawherjan1-gdocs-comments-mcp.env]
GDOCS_COMMENTS_PROFILE_DIR = "YOUR_VALUE"
GDOCS_COMMENTS_CDP_URL = "YOUR_VALUE"
```
需要环境变量：GDOCS_COMMENTS_PROFILE_DIR, GDOCS_COMMENTS_CDP_URL

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