Skip to content

Commit 19c2c81

Browse files
committed
update links
1 parent 004c339 commit 19c2c81

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

src/content/docs/agents/guides/remote-mcp-server-github.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
pcx_content_type: example
33
title: Build a Remote MCP Server with GitHub Auth
44
description: An example MCP server that uses GitHub as an OAuth provider
5-
external_link: https://github.com/cloudflare/ai/demos/remote-mcp-server-github
5+
external_link: https://github.com/cloudflare/ai/tree/main/demos/remote-mcp-server-github
66
sidebar:
77
order: 8
88
---

src/content/docs/agents/guides/remote-mcp-server-slack.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
pcx_content_type: example
33
title: Build a Remote MCP Server that exposes Slack as a tool
44
description: An MCP server that uses Slack as an OAuth provider, and allows MCP clients to send messages to a Slack channel.
5-
external_link: https://github.com/cloudflare/ai/demos/remote-mcp-server-slack
5+
external_link: https://github.com/cloudflare/ai/tree/main/demos/remote-mcp-server-slack
66
sidebar:
77
order: 9
88
---

src/content/docs/agents/guides/remote-mcp-server.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
pcx_content_type: example
33
title: Build a Remote MCP Server
44
description: Complete example of a remote MCP server, with authorization built-in, that you can deploy to Cloudflare
5-
external_link: https://github.com/cloudflare/ai/demos/remote-mcp-server
5+
external_link: https://github.com/cloudflare/ai/tree/main/demos/remote-mcp-server
66
sidebar:
77
order: 7
88
---

src/content/docs/agents/model-context-protocol/getting-started.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@ The MCP standard supports two modes of operation:
3232

3333
## Deploy your first MCP server
3434

35-
This guide will walk you through how to deploy an [example MCP server](https://github.com/cloudflare/ai/demos/remote-mcp-server) to your Cloudflare account. You will then customize this example to suit your needs.
35+
This guide will walk you through how to deploy an [example MCP server](https://github.com/cloudflare/ai/tree/main/demos/remote-mcp-server) to your Cloudflare account. You will then customize this example to suit your needs.
3636

37-
The link below will guide you through everything you need to do to deploy this [example MCP server](https://github.com/cloudflare/ai/demos/remote-mcp-server) to your Cloudflare account:
37+
The link below will guide you through everything you need to do to deploy this [example MCP server](https://github.com/cloudflare/ai/tree/main/demos/remote-mcp-server) to your Cloudflare account:
3838

39-
[![Deploy to Workers](https://deploy.workers.cloudflare.com/button)](https://dash.cloudflare.com/?to=/:account/workers-and-pages/create/deploy-to-workers&repository=https://github.com/cloudflare/ai/demos/remote-mcp-server)
39+
[![Deploy to Workers](https://deploy.workers.cloudflare.com/button)](https://dash.cloudflare.com/?to=/:account/workers-and-pages/create/deploy-to-workers&repository=https://github.com/cloudflare/ai/tree/main/demos/remote-mcp-server)
4040

4141
At the end of this process, you will have a new git repository on your GitHub or GitLab account for your MCP server, configured to automatically deploy Cloudflare each time you push a change or merge a pull request to the main branch of the repository. You can then clone this repository, [develop locally](/agents/model-context-protocol/getting-started/#local-development), and start writing code and building.
4242

src/content/docs/agents/model-context-protocol/tools.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Model Context Protocol (MCP) tools are functions that a [MCP Server](/agents/mod
1111

1212
When you build MCP Servers with the `@cloudflare/model-context-protocol` package, you can define tools the [same way as shown in the `@modelcontextprotocol/typescript-sdk` package's examples](https://github.com/modelcontextprotocol/typescript-sdk?tab=readme-ov-file#tools).
1313

14-
For example, the following code from [this example MCP server](https://github.com/cloudflare/ai/demos/remote-mcp-server) defines a simple MCP server that adds two numbers together:
14+
For example, the following code from [this example MCP server](https://github.com/cloudflare/ai/tree/main/demos/remote-mcp-server) defines a simple MCP server that adds two numbers together:
1515

1616
```ts title="src/index.ts"
1717
import { McpServer } from "@modelcontextprotocol/sdk/server/mcp";

0 commit comments

Comments
 (0)