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
Copy file name to clipboardExpand all lines: src/content/docs/agents/guides/remote-mcp-server.mdx
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ The button below will guide you through everything you need to do to deploy this
20
20
21
21
[](https://deploy.workers.cloudflare.com/?url=https://github.com/cloudflare/ai/tree/main/demos/remote-mcp-authless)
22
22
23
-
Once deployed, this server will be live at your workers.dev subdomain (e.g. remote-mcp-server-authless.your-account.workers.dev/sse). You can connect to it immediately using the [AI Playground](https://playground.ai.cloudflare.com/) (a remote MCP client), [MCP inspector](https://github.com/modelcontextprotocol/inspector) or [other MCP clients](/agents/guides/remote-mcp-server/#connect-your-remote-mcp-server-to-claude-and-other-mcp-clients-via-a-local-proxy). Then, once you're ready, you can customize the MCP server and add your own [tools](/agents/model-context-protocol/tools/).
23
+
Once deployed, this server will be live at your workers.dev subdomain (e.g. remote-mcp-server-authless.your-account.workers.dev/sse). You can connect to it immediately using the [AI Playground](https://playground.ai.cloudflare.com/) (a remote MCP client), [MCP inspector](https://github.com/modelcontextprotocol/inspector) or [other MCP clients](/agents/guides/remote-mcp-server/#connect-your-remote-mcp-server-to-claude-and-other-mcp-clients-via-a-local-proxy). Then, once you're ready, you can customize the MCP server and add your own [tools](/agents/model-context-protocol/tools/).
24
24
25
25
If you're using the "Deploy to Cloudflare" button, a new git repository will be set up on your GitHub or GitLab account for your MCP server, configured to automatically deploy to 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/guides/remote-mcp-server/#local-development), and start writing code and building.
26
26
@@ -48,7 +48,7 @@ In the directory of your new project, run the following command to start the dev
48
48
npm start
49
49
```
50
50
51
-
Your MCP server is now running on `http://localhost:8787/sse`.
51
+
Your MCP server is now running on `http://localhost:8788/sse`.
52
52
53
53
In a new terminal, run the [MCP inspector](https://github.com/modelcontextprotocol/inspector). The MCP inspector is an interactive MCP client that allows you to connect to your MCP server and invoke tools from a web browser.
54
54
@@ -62,7 +62,7 @@ Open the MCP inspector in your web browser:
62
62
open http://localhost:5173
63
63
```
64
64
65
-
In the inspector, enter the URL of your MCP server, `http://localhost:8787/sse`, and click **Connect**. You should see the "List Tools" button, which will list the tools that your MCP server exposes.
65
+
In the inspector, enter the URL of your MCP server, `http://localhost:8788/sse`, and click **Connect**. You should see the "List Tools" button, which will list the tools that your MCP server exposes.
@@ -182,7 +182,7 @@ Run the following command to start the development server:
182
182
npm start
183
183
```
184
184
185
-
Your MCP server is now running on `http://localhost:8787/sse`.
185
+
Your MCP server is now running on `http://localhost:8788/sse`.
186
186
187
187
In a new terminal, run the [MCP inspector](https://github.com/modelcontextprotocol/inspector). The MCP inspector is an interactive MCP client that allows you to connect to your MCP server and invoke tools from a web browser.
188
188
@@ -196,7 +196,7 @@ Open the MCP inspector in your web browser:
196
196
open http://localhost:5173
197
197
```
198
198
199
-
In the inspector, enter the URL of your MCP server, `http://localhost:8787/sse`, and click **Connect**:
199
+
In the inspector, enter the URL of your MCP server, `http://localhost:8788/sse`, and click **Connect**:
200
200
201
201
You should be redirected to a GitHub login or authorization page. After authorizing the MCP Client (the inspector) access to your GitHub account, you will be redirected back to the inspector. You should see the "List Tools" button, which will list the tools that your MCP server exposes.
Copy file name to clipboardExpand all lines: src/content/docs/agents/guides/test-remote-mcp-server.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -47,7 +47,7 @@ Even though [Claude Desktop](https://claude.ai/download) doesn't yet support rem
47
47
}
48
48
```
49
49
50
-
This tells Claude to communicate with your MCP server running at `http://localhost:8787/sse`.
50
+
This tells Claude to communicate with your MCP server running at `http://localhost:8788/sse`.
51
51
52
52
3. Save the file and restart Claude Desktop (command/ctrl + R). When Claude restarts, a browser window will open showing your OAuth login page. Complete the authorization flow to grant Claude access to your MCP server.
0 commit comments