@@ -9,24 +9,22 @@ It integrates tools to provide insights and management capabilities for your Clo
99
1010Currently available tools:
1111
12- | ** Category** | ** Tool** | ** Description** |
13- | ------------------ | ------------------------------------------ | --------------------------------------------------------------------------------------------------- |
14- | ** Workers Builds** | ` workers_builds_list_builds ` | Lists recent builds for a specified Cloudflare Worker. |
15- | ** Workers Builds** | ` workers_builds_get_build ` | Retrieves details for a specific build by its UUID, including its outcome (e.g., success, failure). |
16- | ** Workers Builds** | ` workers_builds_set_active_build ` | Sets a build UUID as 'active' for subsequent tool calls, simplifying workflows. |
17- | ** Workers Builds** | ` workers_builds_get_build_logs ` | Fetches the logs for the currently active build. |
18- | ** Workers Builds** | ` workers_builds_get_detected_build_errors ` | Returns any errors detected by Cloudflare for the currently active build. |
12+ | ** Category** | ** Tool** | ** Description** |
13+ | ------------------ | ---------------------------------- | ---------------------------------------------------------------------------------------- |
14+ | ** Workers Builds** | ` workers_builds_set_active_worker ` | Sets the active Worker ID for subsequent calls. |
15+ | ** Workers Builds** | ` workers_builds_list_builds ` | Lists builds for a Cloudflare Worker. |
16+ | ** Workers Builds** | ` workers_builds_get_build ` | Retrieves details for a specific build by its UUID, including build and deploy commands. |
17+ | ** Workers Builds** | ` workers_builds_get_build_logs ` | Fetches the logs for a Cloudflare Workers build by its UUID. |
1918
2019This MCP server is still a work in progress, and we plan to add more tools in the future.
2120
2221### Prompt Examples
2322
23+ - ` Set my-worker as the active worker. `
2424- ` List the last 5 builds for my worker 'my-ci-worker'. `
2525- ` What were the details for build 'xxxx-xxxx-xxxx-xxxx'? `
26- - ` Set build 'yyyy-yyyy-yyyy-yyyy' as the active build. `
27- - ` Show me the logs for the active build. `
28- - ` Are there any detected errors for the current build? `
29- - ` Did the latest build for worker 'frontend-app' succeed? `
26+ - ` Show me the logs for build my latest build. `
27+ - ` Did the latest build for worker frontend-app succeed? `
3028
3129## Access the remote MCP server from from any MCP Client
3230
@@ -41,7 +39,7 @@ Replace the content with the following configuration:
4139 "mcpServers" : {
4240 "cloudflare" : {
4341 "command" : " npx" ,
44- "args" : [" mcp-remote" , " https://builds.mcp.cloudflare.com/sse" ]
42+ "args" : [" mcp-remote@latest " , " https://builds.mcp.cloudflare.com/sse" ]
4543 }
4644 }
4745}
0 commit comments