You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Deprecate the Radar MCP server. The unified Cloudflare MCP server at https://mcp.cloudflare.com/mcp already covers all Radar API endpoints via Code Mode (see https://github.com/cloudflare/mcp).
6
+
7
+
Tools continue to function. The server now exposes a deprecation notice via the MCP `instructions` field, and the `radar.mcp.cloudflare.com` entries have been removed from `server.json` so registries stop advertising the deprecated server.
8
+
9
+
**Action required:** migrate to `https://mcp.cloudflare.com/mcp` at your earliest convenience.
Copy file name to clipboardExpand all lines: README.md
-1Lines changed: 0 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,6 @@ The following servers are included in this repository:
14
14
|[**Workers Bindings server**](/apps/workers-bindings)| Build Workers applications with storage, AI, and compute primitives |`https://bindings.mcp.cloudflare.com/mcp`|
15
15
|[**Workers Builds server**](/apps/workers-builds)| Get insights and manage your Cloudflare Workers Builds |`https://builds.mcp.cloudflare.com/mcp`|
16
16
|[**Observability server**](/apps/workers-observability)| Debug and get insight into your application's logs and analytics |`https://observability.mcp.cloudflare.com/mcp`|
17
-
|[**Radar server**](/apps/radar)| Get global Internet traffic insights, trends, URL scans, and other utilities |`https://radar.mcp.cloudflare.com/mcp`|
18
17
|[**Container server**](/apps/sandbox-container)| Spin up a sandbox development environment |`https://containers.mcp.cloudflare.com/mcp`|
19
18
|[**Browser rendering server**](/apps/browser-rendering)| Fetch web pages, convert them to markdown and take screenshots |`https://browser.mcp.cloudflare.com/mcp`|
20
19
|[**Logpush server**](/apps/logpush)| Get quick summaries for Logpush job health |`https://logs.mcp.cloudflare.com/mcp`|
Copy file name to clipboardExpand all lines: apps/radar/CONTRIBUTING.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,7 @@
1
1
# Setup
2
2
3
+
> ⚠️ **This server is deprecated.** See [`README.md`](./README.md) for the migration path to [`mcp.cloudflare.com/mcp`](https://mcp.cloudflare.com/mcp). Bug fixes are welcome; new features will generally not be accepted — please direct new work at the unified [`cloudflare/mcp`](https://github.com/cloudflare/mcp) repository instead.
4
+
3
5
If you'd like to iterate and test your MCP server, you can do so in local development.
Copy file name to clipboardExpand all lines: apps/radar/README.md
+22Lines changed: 22 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,27 @@
1
1
# Cloudflare Radar MCP Server 📡
2
2
3
+
## ⚠️ Deprecated
4
+
5
+
**This server is deprecated.** The unified Cloudflare MCP server at [`mcp.cloudflare.com/mcp`](https://mcp.cloudflare.com/mcp) already covers all Radar API endpoints (along with the rest of the Cloudflare API).
6
+
7
+
All new work should move to the unified server:
8
+
9
+
```json
10
+
{
11
+
"mcpServers": {
12
+
"cloudflare-api": {
13
+
"url": "https://mcp.cloudflare.com/mcp"
14
+
}
15
+
}
16
+
}
17
+
```
18
+
19
+
That server uses [Code Mode](https://blog.cloudflare.com/code-mode-mcp/) — two generic tools (`search` and `execute`) that give agents access to the full Cloudflare API through code execution. It supports both OAuth (connect to the URL and authorize) and Cloudflare API tokens (send as a bearer token). See [`cloudflare/mcp`](https://github.com/cloudflare/mcp) for details.
20
+
21
+
The tools below still function. No new features will be added. Please migrate at your earliest convenience.
22
+
23
+
---
24
+
3
25
This is a [Model Context Protocol (MCP)](https://modelcontextprotocol.io/introduction) server that supports remote MCP
0 commit comments