File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -168,6 +168,48 @@ This can be customized by adding the argument `--user-agent=YourUserAgent` to th
168168
169169The server can be configured to use a proxy by using the ` --proxy-url ` argument.
170170
171+ ## Windows Configuration
172+
173+ If you're experiencing timeout issues on Windows, you may need to set the ` PYTHONIOENCODING ` environment variable to ensure proper character encoding:
174+
175+ <details >
176+ <summary >Windows configuration (uvx)</summary >
177+
178+ ``` json
179+ {
180+ "mcpServers" : {
181+ "fetch" : {
182+ "command" : " uvx" ,
183+ "args" : [" mcp-server-fetch" ],
184+ "env" : {
185+ "PYTHONIOENCODING" : " utf-8"
186+ }
187+ }
188+ }
189+ }
190+ ```
191+ </details >
192+
193+ <details >
194+ <summary >Windows configuration (pip)</summary >
195+
196+ ``` json
197+ {
198+ "mcpServers" : {
199+ "fetch" : {
200+ "command" : " python" ,
201+ "args" : [" -m" , " mcp_server_fetch" ],
202+ "env" : {
203+ "PYTHONIOENCODING" : " utf-8"
204+ }
205+ }
206+ }
207+ }
208+ ```
209+ </details >
210+
211+ This addresses character encoding issues that can cause the server to timeout on Windows systems.
212+
171213## Debugging
172214
173215You can use the MCP inspector to debug the server. For uvx installations:
You can’t perform that action at this time.
0 commit comments