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
@@ -66,7 +74,7 @@ To bypass authentication, or to emit custom headers on all requests to your remo
66
74
67
75
### Flags
68
76
69
-
- If `npx` is producing errors, consider adding `-y` as the first argument to auto-accept the installation of the `mcp-remote` package.
77
+
* If `npx` is producing errors, consider adding `-y` as the first argument to auto-accept the installation of the `mcp-remote` package.
70
78
71
79
```json
72
80
"command": "npx",
@@ -77,7 +85,7 @@ To bypass authentication, or to emit custom headers on all requests to your remo
77
85
]
78
86
```
79
87
80
-
- To force `npx` to always check for an updated version of `mcp-remote`, add the `@latest` flag:
88
+
* To force `npx` to always check for an updated version of `mcp-remote`, add the `@latest` flag:
81
89
82
90
```json
83
91
"args": [
@@ -86,7 +94,7 @@ To bypass authentication, or to emit custom headers on all requests to your remo
86
94
]
87
95
```
88
96
89
-
- To change which port `mcp-remote` listens for an OAuth redirect (by default `3334`), add an additional argument after the server URL. Note that whatever port you specify, if it is unavailable an open port will be chosen at random.
97
+
* To change which port `mcp-remote` listens for an OAuth redirect (by default `3334`), add an additional argument after the server URL. Note that whatever port you specify, if it is unavailable an open port will be chosen at random.
90
98
91
99
```json
92
100
"args": [
@@ -96,7 +104,7 @@ To bypass authentication, or to emit custom headers on all requests to your remo
96
104
]
97
105
```
98
106
99
-
- To change which host `mcp-remote` registers as the OAuth callback URL (by default `localhost`), add the `--host` flag.
107
+
* To change which host `mcp-remote` registers as the OAuth callback URL (by default `localhost`), add the `--host` flag.
100
108
101
109
```json
102
110
"args": [
@@ -107,7 +115,7 @@ To bypass authentication, or to emit custom headers on all requests to your remo
107
115
]
108
116
```
109
117
110
-
- To allow HTTP connections in trusted private networks, add the `--allow-http` flag. Note: This should only be used in secure private networks where traffic cannot be intercepted.
118
+
* To allow HTTP connections in trusted private networks, add the `--allow-http` flag. Note: This should only be used in secure private networks where traffic cannot be intercepted.
111
119
112
120
```json
113
121
"args": [
@@ -117,7 +125,7 @@ To bypass authentication, or to emit custom headers on all requests to your remo
117
125
]
118
126
```
119
127
120
-
- To enable detailed debugging logs, add the `--debug` flag. This will write verbose logs to `~/.mcp-auth/{server_hash}_debug.log` with timestamps and detailed information about the auth process, connections, and token refreshing.
128
+
* To enable detailed debugging logs, add the `--debug` flag. This will write verbose logs to `~/.mcp-auth/{server_hash}_debug.log` with timestamps and detailed information about the auth process, connections, and token refreshing.
If it does not exist yet, [you may need to enable it under Settings > Developer](https://modelcontextprotocol.io/quickstart/user#2-add-the-filesystem-mcp-server).
188
196
@@ -204,16 +212,16 @@ As of version `0.48.0`, Cursor supports unauthed SSE servers directly. If your M
204
212
205
213
For instructions on building & deploying remote MCP servers, including acting as a valid OAuth client, see the following resources:
-https://github.com/cloudflare/workers-oauth-provider for defining an MCP-comlpiant OAuth server in Cloudflare Workers
212
-
-https://github.com/cloudflare/agents/tree/main/examples/mcp for defining an `McpAgent` using the [`agents`](https://npmjs.com/package/agents) framework.
219
+
*https://github.com/cloudflare/workers-oauth-provider for defining an MCP-comlpiant OAuth server in Cloudflare Workers
220
+
*https://github.com/cloudflare/agents/tree/main/examples/mcp for defining an `McpAgent` using the [`agents`](https://npmjs.com/package/agents) framework.
213
221
214
222
For more information about testing these servers, see also:
0 commit comments