Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计异常

mcp-cloudflareMCP Cloudflare 搜索

Agent Skill

mcp-cloudflare 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,128

周安装

47

GitHub Stars

338

下载量

376
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:mcp-cloudflare(MCP Cloudflare 搜索)
来源仓库:https://github.com/heyvhuang/ship-faster
仓库路径:skills/mcp-cloudflare
安装命令:
npx skills add https://github.com/heyvhuang/ship-faster --skill mcp-cloudflare
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/heyvhuang/ship-faster --skill mcp-cloudflare

简介

mcp-cloudflare 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 适用于需要根据关键词或任务场景从来源线索中筛选信息的场景。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 安装前需确认权限范围、维护状态及是否触发联网或文件操作。
  • 建议结合原始 README 和仓库内容进一步核验具体用法。

SKILL.md

Cloudflare MCP Skill

Interact with Cloudflare services via MCP: Workers, KV, R2, D1, Hyperdrive, Observability, Builds, Audit, Container Sandbox.

File-based Pipeline (Pass Paths Only)

When integrating troubleshooting/changes into multi-step workflows, persist all evidence and artifacts to disk, passing only paths between agents/sub-agents.

Recommended directory structure (within project): runs/<workflow>/active/<run_id>/

  • Input: 01-input/goal.md (symptoms/objectives), 01-input/context.json (account/worker/resource/time_range, etc.)
  • Evidence: 02-analysis/observability.md, 02-analysis/audit.md, 02-analysis/screenshots/
  • Plan: 03-plans/change-plan.md (write operation plan; must write here and await confirmation first)
  • Output: 05-final/report.md (conclusion + evidence chain + tool call summary + next steps)
  • Logs: logs/events.jsonl (summary of each tool call)

Permission Tiers (Core Principles)

TierPurposeTool ScopeRisk Control
DiagnoseRead-only/query/troubleshootObservability, Builds, Browser, AuditDefault entry point, no write operations
ChangeCreate/modify/delete resourcesWorkers Bindings (KV/R2/D1)Requires user confirmation, post-execution verification
Super AdminHighest privilegesAll + Container SandboxOnly in isolated environments/test accounts

Tool Reference

Diagnose Tier (Read-only)

Observability

ToolPurpose
query_worker_observabilityQuery logs/metrics (events, CPU, error rate)
observability_keysDiscover available fields
observability_valuesExplore field values

Builds

ToolPurpose
workers_builds_list_buildsList build history
workers_builds_get_buildGet build details
workers_builds_get_build_logsGet build logs

Browser Rendering (Page Capture)

ToolPurpose
get_url_html_contentFetch page HTML
get_url_markdownConvert to Markdown
get_url_screenshotTake page screenshot

Audit Logs

ToolPurpose
auditlogs_by_account_idPull change history by time range

Change Tier (Write Operations)

Account

ToolPurpose
accounts_listList accounts
set_active_accountSet active account

Builds (Settings)

ToolPurpose
workers_builds_set_active_worker⚠️ Set active worker (requires confirmation)

KV

ToolPurpose
kv_namespaces_listList namespaces
kv_namespace_getGet details
kv_namespace_createCreate (⚠️ requires confirmation)
kv_namespace_updateUpdate (⚠️ requires confirmation)
kv_namespace_deleteDelete (⚠️ requires confirmation)

R2

ToolPurpose
r2_buckets_listList buckets
r2_bucket_getGet details
r2_bucket_createCreate (⚠️ requires confirmation)
r2_bucket_deleteDelete (⚠️ requires confirmation)

D1

ToolPurpose
d1_databases_listList databases
d1_database_getGet details
d1_database_queryExecute SQL
d1_database_createCreate (⚠️ requires confirmation)
d1_database_deleteDelete (⚠️ requires confirmation)

Hyperdrive

ToolPurpose
hyperdrive_configs_listList configs
hyperdrive_config_getGet details
hyperdrive_config_createCreate (⚠️ requires confirmation)
hyperdrive_config_editEdit (⚠️ requires confirmation)
hyperdrive_config_deleteDelete (⚠️ requires confirmation)

Workers

ToolPurpose
workers_listList workers
workers_get_workerGet worker details
workers_get_worker_codeGet source code

Super Admin Tier (Container Sandbox)

ToolPurpose
container_initializeInitialize container (~10 min lifecycle)
container_execExecute command
container_file_writeWrite file
container_file_readRead file
container_files_listList files
container_file_deleteDelete file

Container Notes: No persistent state, short lifespan, only for temporary tasks (running tests/reproducing issues/parsing data).

Security Rules (Must Follow)

Read Operations

  1. Define scope first: account / worker / resource ID
  2. No account? Run accounts_list first
  3. Conclusions must have evidence chain: logs/screenshots/audit records

Write Operations (Three-step Flow)

1. Plan: Read current state first (list/get)
2. Confirm: Output precise change (name/ID/impact scope), await user confirmation
3. Execute: create/delete/update
4. Verify: audit logs + observability confirm no new errors

Prohibited Actions

  • ❌ Execute create/delete/update without confirmation
  • ❌ Delete production resources (unless user explicitly says "delete production xxx")
  • ❌ Use Super Admin privileges in non-isolated environments
  • ❌ Use container sandbox as persistent environment

Operation Workflows

Troubleshooting Flow (Typical)

1. Clarify symptoms → worker name/time range/error type
2. query_worker_observability to pull logs/metrics
3. If build-related → workers_builds_get_build_logs
4. If page-related → get_url_screenshot to reproduce
5. Trace changes → auditlogs_by_account_id
6. Summarize: root cause + evidence + fix recommendations

Resource Management Flow

1. accounts_list → set_active_account
2. List resources (kv_namespaces_list / r2_buckets_list / d1_databases_list)
3. Plan changes → present to user
4. Execute after confirmation
5. Verify: audit logs + observability shows no errors

Output Format

  • Language: English
  • Structure: Conclusion → Key data/evidence → Tool call summary → Next steps
  • Write operations: Must clearly list operations to be executed and impact scope

Example output:

✅ Investigation complete: worker `api-gateway` experienced 5xx spike between 18:00-18:30

Root cause: New code deployed threw TypeError when processing /v2/users
Evidence:
- Logs: 18:02 first occurrence of "Cannot read property 'id' of undefined"
- Audit: 18:00 user dev@example.com deployed new version
- Metrics: error_rate jumped from 0.1% to 12%

Recommendation: Roll back to previous version, or fix /v2/users handler

Error Handling

SituationAction
Account not setRun accounts_listset_active_account first
Resource doesn't existVerify ID/name is correct, list available resources
Insufficient permissionsExplain required permissions, suggest checking API token scope
Observability query too longSplit into smaller time ranges, ask more specific questions

Scenario Examples

See scenarios.md for 20 real-world development scenarios.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.51%
按下载量换算134

Claude

27.09%
按下载量换算102

Cursor

20.62%
按下载量换算78

Gemini CLI

9.88%
按下载量换算37

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills