# 安装 Inter MCP

- 类型: MCP 工具
- 说明: 连接 Inter 银行账户，让 AI 查询余额、账单、卡片与投资信息。
- 仓库: https://github.com/mcp-dir/inter-mcp
- ⚠ 安全: 该工具看起来是官方 Registry 中的开源 MCP，用途与其声明的银行/开放金融账户接入功能基本一致，未见明显恶意红旗。主要风险点在于其会处理高度敏感的金融账户数据、需要联网到 api.mcp.ai，且文档缺失导致实际鉴权与数据流细节透明度有限，整体评为需留意。

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

### Claude Code
```
请帮我安装 askskill 上的 "Inter MCP" MCP 服务：
执行：claude mcp add --transport http 'io-github-mcp-dir-inter-mcp' 'https://api.mcp.ai/p_inter'
```

### Codex
```
请帮我安装 askskill 上的 "Inter MCP" MCP 服务：
在 ~/.codex/config.toml 中添加：
[mcp_servers.io-github-mcp-dir-inter-mcp]
url = "https://api.mcp.ai/p_inter"
然后重启 Codex 生效
```

### Cursor
```
请帮我安装 askskill 上的 "Inter MCP" MCP 服务：
在 .cursor/mcp.json 的 "mcpServers" 中添加：
"io-github-mcp-dir-inter-mcp": { "url": "https://api.mcp.ai/p_inter" }
然后在 Cursor 设置 > MCP 中启用
```

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

### Claude Code
```bash
claude mcp add --transport http 'io-github-mcp-dir-inter-mcp' 'https://api.mcp.ai/p_inter'
```

### Codex
```bash
codex mcp add 'io-github-mcp-dir-inter-mcp' --url 'https://api.mcp.ai/p_inter'
```
配置文件 ~/.codex/config.toml：
```toml
[mcp_servers.io-github-mcp-dir-inter-mcp]
url = "https://api.mcp.ai/p_inter"
```

### Cursor
配置文件 .cursor/mcp.json：
```json
{
  "mcpServers": {
    "io-github-mcp-dir-inter-mcp": {
      "url": "https://api.mcp.ai/p_inter"
    }
  }
}
```
一键安装：cursor://anysphere.cursor-deeplink/mcp/install?name=io-github-mcp-dir-inter-mcp&config=eyJ1cmwiOiJodHRwczovL2FwaS5tY3AuYWkvcF9pbnRlciJ9
