@universal-mcp-toolkit/server-cloudflare-workers 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -33,4 +33,4 @@
33
33
  "prompts": [
34
34
  "edge-rollout"
35
35
  ]
36
- }
36
+ }
package/LICENSE CHANGED
@@ -1,21 +1,21 @@
1
- MIT License
2
-
3
- Copyright (c) 2026 universal-mcp-toolkit
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
1
+ MIT License
2
+
3
+ Copyright (c) 2026 universal-mcp-toolkit
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,47 @@
1
+ Use this server to list your Cloudflare Workers, inspect one worker, and check the routes tied to it.
2
+
3
+ ## What it can do
4
+ - `list_workers` - Lists worker scripts in your Cloudflare account and shows the basics for each one.
5
+ - `get_worker` - Shows settings for one worker, including bindings, placement mode, and logpush.
6
+ - `list_routes` - Lists worker routes and can filter them down to one script.
7
+
8
+ ## Setup
9
+ Set these env vars before you start:
10
+ - `CLOUDFLARE_API_TOKEN`: create a Cloudflare API token here: https://dash.cloudflare.com/profile/api-tokens/ and see the docs here: https://developers.cloudflare.com/fundamentals/api/get-started/create-token/
11
+ - `CLOUDFLARE_ACCOUNT_ID`: copy your account ID here: https://dash.cloudflare.com/?to=/:account/home or use these docs: https://developers.cloudflare.com/fundamentals/account/find-account-and-zone-ids/
12
+ Those are the only required env vars.
13
+
14
+ ## Claude Desktop config
15
+ ```json
16
+ {
17
+ "mcpServers": {
18
+ "cloudflare-workers": {
19
+ "command": "npx",
20
+ "args": ["-y", "@universal-mcp-toolkit/server-cloudflare-workers@latest"],
21
+ "env": {
22
+ "CLOUDFLARE_API_TOKEN": "your_cloudflare_api_token",
23
+ "CLOUDFLARE_ACCOUNT_ID": "your_cloudflare_account_id"
24
+ }
25
+ }
26
+ }
27
+ }
28
+ ```
29
+
30
+ ## Cursor config
31
+ ```json
32
+ {
33
+ "mcpServers": {
34
+ "cloudflare-workers": {
35
+ "command": "npx",
36
+ "args": ["-y", "@universal-mcp-toolkit/server-cloudflare-workers@latest"],
37
+ "env": {
38
+ "CLOUDFLARE_API_TOKEN": "your_cloudflare_api_token",
39
+ "CLOUDFLARE_ACCOUNT_ID": "your_cloudflare_account_id"
40
+ }
41
+ }
42
+ }
43
+ }
44
+ ```
45
+
46
+ ## Quick example
47
+ "List my Workers, show the settings for `marketing-edge`, then list the routes attached to it and point out anything that might break a rollout."
package/package.json CHANGED
@@ -1,18 +1,17 @@
1
1
  {
2
2
  "name": "@universal-mcp-toolkit/server-cloudflare-workers",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "type": "module",
5
5
  "description": "Worker, route, and deployment tools for Cloudflare Workers.",
6
6
  "license": "MIT",
7
7
  "bin": {
8
- "server-cloudflare-workers": "./dist/index.js",
9
8
  "umt-cloudflare-workers": "./dist/index.js"
10
9
  },
11
10
  "repository": {
12
11
  "type": "git",
13
- "url": "git+https://github.com/Markgatcha/universal-mcp-toolkit.git"
12
+ "url": "git+https://github.com/universal-mcp-toolkit/universal-mcp-toolkit.git"
14
13
  },
15
- "homepage": "https://github.com/Markgatcha/universal-mcp-toolkit#readme",
14
+ "homepage": "https://github.com/universal-mcp-toolkit/universal-mcp-toolkit#readme",
16
15
  "exports": {
17
16
  ".": {
18
17
  "types": "./dist/index.d.ts",
@@ -36,12 +35,9 @@
36
35
  "deployments"
37
36
  ],
38
37
  "dependencies": {
39
- "@universal-mcp-toolkit/core": "0.1.0",
38
+ "@universal-mcp-toolkit/core": "0.2.0",
40
39
  "zod": "^4.3.6"
41
40
  },
42
- "publishConfig": {
43
- "access": "public"
44
- },
45
41
  "scripts": {
46
42
  "build": "tsup src/index.ts --format esm --dts --clean",
47
43
  "dev": "tsx watch src/index.ts",