Skip to content

Commit ee411e4

Browse files
committed
clean up readme's
1 parent 1fc2533 commit ee411e4

File tree

3 files changed

+15
-16
lines changed

3 files changed

+15
-16
lines changed
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
CLOUDFLARE_CLIENT_ID=
22
CLOUDFLARE_CLIENT_SECRET=
3+
# OR
34
DEV_DISABLE_OAUTH=
45
DEV_CLOUDFLARE_API_TOKEN=
5-
DEV_CLOUDFLARE_EMAIL=
6+
DEV_CLOUDFLARE_EMAIL=

apps/workers-builds/CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ If you'd like to iterate and test your MCP server, you can do so in local develo
2424

2525
2. Start the local development server:
2626

27-
```bash
28-
npx wrangler dev
29-
```
27+
```bash
28+
pnpm dev
29+
```
3030

3131
3. To test locally, open Inspector, and connect to `http://localhost:8976/sse`.
3232
Once you follow the prompts, you'll be able to "List Tools". You can also connect with any MCP client.

apps/workers-builds/README.md

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -9,24 +9,22 @@ It integrates tools to provide insights and management capabilities for your Clo
99

1010
Currently 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

2019
This 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

Comments
 (0)