Caido代理MCP服务器 是 AI Skill Hub 本期精选MCP工具之一。综合评分 8.2 分,整体质量较高。我们强烈推荐将其纳入你的 AI 工具库,帮助提升工作效率。
Caido代理MCP服务器 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
Caido代理MCP服务器 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
# 方式一:通过 Claude Code CLI 一键安装
claude skill install https://github.com/c0tton-fluff/caido-mcp-server
# 方式二:手动配置 claude_desktop_config.json
{
"mcpServers": {
"caido--mcp---": {
"command": "npx",
"args": ["-y", "caido-mcp-server"]
}
}
}
# 配置文件位置
# macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
# Windows: %APPDATA%/Claude/claude_desktop_config.json
# 安装后在 Claude 对话中直接使用 # 示例: 用户: 请帮我用 Caido代理MCP服务器 执行以下任务... Claude: [自动调用 Caido代理MCP服务器 MCP 工具处理请求] # 查看可用工具列表 # 在 Claude 中输入:"列出所有可用的 MCP 工具"
// claude_desktop_config.json 配置示例
{
"mcpServers": {
"caido__mcp___": {
"command": "npx",
"args": ["-y", "caido-mcp-server"],
"env": {
// "API_KEY": "your-api-key-here"
}
}
}
}
// 保存后重启 Claude Desktop 生效
<p align="center"> <img src="https://raw.githubusercontent.com/caido/caido/main/brand/png/logo.png" alt="Caido" width="120"/> </p>
<p align="center"> MCP server and CLI for <a href="https://caido.io">Caido</a> web proxy - browse, replay, and analyze HTTP traffic from AI assistants or your terminal. </p>
<p align="center"> <a href="https://go.dev"><img src="https://img.shields.io/badge/Go-1.25+-00ADD8?logo=go&logoColor=white" alt="Go"></a> <a href="LICENSE"><img src="https://img.shields.io/badge/License-MIT-blue.svg" alt="License"></a> <a href="https://github.com/c0tton-fluff/caido-mcp-server/releases"><img src="https://img.shields.io/github/v/release/c0tton-fluff/caido-mcp-server" alt="Release"></a> <a href="https://modelcontextprotocol.io"><img src="https://img.shields.io/badge/MCP-compatible-8A2BE2" alt="MCP"></a> <a href="https://github.com/c0tton-fluff/caido-mcp-server/actions/workflows/ci.yml"><img src="https://github.com/c0tton-fluff/caido-mcp-server/actions/workflows/ci.yml/badge.svg" alt="CI"></a> </p>
---
| Category | Capabilities |
|---|---|
| **Proxy History** | Search requests with HTTPQL, get full request/response details, diff two responses |
| **Replay** | Send HTTP requests, get response inline (status, headers, body). Per-session cookie jar auto-persists Set-Cookie between calls |
| **Automate** | Access fuzzing sessions, results, and payloads. Start/pause/resume/cancel tasks |
| **Findings** | Create, list, delete, and export security findings |
| **Sitemap** | Browse discovered endpoints |
| **Scopes** | Full lifecycle: create, rename, delete target scope definitions; check if a host/URL is in scope |
| **Projects** | Full lifecycle: create, rename, select, delete projects |
| **Workflows** | List, run, and toggle automation workflows |
| **Tamper** | List, create, update, toggle, and delete Match & Replace rules in all four GUI modes (update raw, update value, add, remove); dry-run a rule against a raw request before committing it |
| **Intercept** | Check status, pause/resume, list/forward/drop intercepted requests |
| **Environments** | Create, select, delete variable environments (tokens, keys) |
| **Filters** | Create, list, and delete saved HTTPQL filter presets |
| **Hosted Files** | List payload files served by Caido |
| **Tasks** | List and cancel running background tasks |
| **Plugins** | List installed plugin packages |
| **Instance** | Get Caido version and platform info |
Built-in security and performance:
caido://requests/{id} resource); opt out with CAIDO_ALLOW_SENSITIVE_HEADERS (see Revealing sensitive headers)readOnlyHint/destructiveHint/idempotentHint/openWorldHint so MCP clients can distinguish read-only, destructive, and external-network toolsSet-Cookie from a response is auto-attached to the next send_request against the same sessionbodyLimit)curl -fsSL https://raw.githubusercontent.com/c0tton-fluff/caido-mcp-server/main/install.sh | bash
Or download a pre-built binary from Releases (macOS, Linux, Windows - amd64/arm64).
Or install with the Go toolchain (Go 1.25+):
go install github.com/c0tton-fluff/caido-mcp-server/v4/cmd/caido-mcp-server@latest
The binary lands in $(go env GOPATH)/bin (add it to your PATH). The installed binary reports its module version via caido-mcp-server --version.
<details> <summary>Build from source</summary>
git clone https://github.com/c0tton-fluff/caido-mcp-server.git
cd caido-mcp-server
go build -ldflags "-X github.com/c0tton-fluff/caido-mcp-server/v4/internal/buildinfo.version=$(git describe --tags)" -o caido-mcp-server ./cmd/caido-mcp-server
</details>
curl -fsSL https://raw.githubusercontent.com/c0tton-fluff/caido-mcp-server/main/install.sh | TOOL=cli bash
Or download from Releases.
Or install with the Go toolchain (Go 1.25+):
go install github.com/c0tton-fluff/caido-mcp-server/v4/cmd/caido-cli@latest
<details> <summary>Build from source</summary>
git clone https://github.com/c0tton-fluff/caido-mcp-server.git
cd caido-mcp-server
go build -o caido-cli ./cmd/caido-cli
</details>
Option A: Static access token (recommended)
This server talks to the local Caido app's GraphQL API, which authenticates with the access token from your Caido login session — not a Caido Cloud Personal Access Token. A Cloud PAT (prefixed caido_) is for the cloud/dashboard API and will not authenticate against your local instance.
Grab the access token from the Caido GUI: open developer tools (CTRL+SHIFT+I) and run this in the Console tab:
JSON.parse(localStorage.CAIDO_AUTHENTICATION).accessToken
Pass it via the CAIDO_ACCESS_TOKEN environment variable. No login command needed.
{
"mcpServers": {
"caido": {
"command": "caido-mcp-server",
"args": ["serve"],
"env": {
"CAIDO_URL": "http://127.0.0.1:8080",
"CAIDO_ACCESS_TOKEN": "your-caido-access-token"
}
}
}
}
Note: this token expires after ~7 days; for a long-lived setup use Option B (OAuth), which refreshes automatically. The olderCAIDO_PATvariable is still accepted as a deprecated alias forCAIDO_ACCESS_TOKEN.
Option B: OAuth device flow
CAIDO_URL=http://localhost:8080 caido-mcp-server login
This opens your browser for OAuth authentication and saves the token to ~/.caido-mcp/token.json. Then configure your MCP client:
{
"mcpServers": {
"caido": {
"command": "caido-mcp-server",
"args": ["serve"],
"env": {
"CAIDO_URL": "http://127.0.0.1:8080"
}
}
}
}
3. Use it
"List all POST requests to /api"
"Send this request with a modified user ID"
"Create a finding for this IDOR"
"Show fuzzing results from Automate session 1"
"What's in scope?"
Requires authentication - run caido-mcp-server login first to store a token. (The CLI reads the stored login token; it does not consume the CAIDO_ACCESS_TOKEN env var that the MCP server uses.)
```bash
caido-cli batch sweep https://target.com/api/profile -t "owner=eyJ1...,cross=eyJ2...,noauth" caido-cli batch fuzz "https://target.com/api/search?q=test" -p q -v "test,test',1 OR 1=1" -H "Authorization: Bearer eyJ..." caido-cli batch ep -t eyJ... https://target.com/dashboard https://target.com/admin caido-cli batch file batch.json
| Error | Fix |
|---|---|
Invalid token | CAIDO_ACCESS_TOKEN must be the local Caido **access token** (not a Cloud PAT) — re-grab it from the GUI console, or run caido-mcp-server login again |
token expired, no refresh token | The static access token expires after ~7 days; re-grab it into CAIDO_ACCESS_TOKEN, or use caido-mcp-server login (OAuth auto-refreshes) |
poll failed: timed out | Target server slow; use get_replay_entry with the returned entryId |
no authentication token found | Set CAIDO_ACCESS_TOKEN env var or run caido-mcp-server login before serve |
MCP server logs: ~/.cache/claude-cli-nodejs/*/mcp-logs-caido/
---
项目契合MCP生态发展方向,为AI助手赋能安全测试能力。代码质量可靠,文档清晰,维护活跃。适合专业安全工具链集成。
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ MIT 协议 — 最宽松的开源协议之一,可自由商用、修改、分发,仅需保留版权声明。
经综合评估,Caido代理MCP服务器 在MCP工具赛道中表现稳健,质量优秀。如果你已有明确的使用需求,可以直接上手体验;如果还在评估阶段,建议对比同类工具后再做决策。
| 原始名称 | caido-mcp-server |
| 原始描述 | 开源MCP工具:MCP server for Caido proxy integration. Enables AI assistants like Claude Code t。⭐53 · Go |
| Topics | Caido代理MCP协议Claude集成网络安全Go开发 |
| GitHub | https://github.com/c0tton-fluff/caido-mcp-server |
| License | MIT |
| 语言 | Go |
收录时间:2026-05-21 · 更新时间:2026-05-30 · License:MIT · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端