Skip to content

Commit 7f134a8

Browse files
authored
Add troubleshooting instructions for MCP connectivity issues (#5)
1 parent 24dbf6e commit 7f134a8

2 files changed

Lines changed: 61 additions & 0 deletions

File tree

public/index.html

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -497,6 +497,39 @@ <h3>Available Tools</h3>
497497
</li>
498498
</ul>
499499
</div>
500+
501+
<div class="troubleshooting">
502+
<h3>Troubleshooting</h3>
503+
<p>
504+
If you're experiencing connection timeouts or network issues with the MCP server,
505+
you may need to configure a proxy.
506+
This is particularly common in corporate environments
507+
or regions with restricted internet access.
508+
</p>
509+
<p>
510+
Configure your MCP client to use a proxy by adding environment variables:
511+
</p>
512+
<pre><code class="mcp-config"><span class="dimmed"><span class="punctuation">{</span></span>
513+
<span class="dimmed"> <span class="key">"mcpServers"</span><span class="punctuation">:</span> <span class="punctuation">{</span></span>
514+
<span class="sosumi-entry"> <span class="key">"sosumi"</span><span class="punctuation">:</span> <span class="punctuation">{</span>
515+
<span class="key">"command"</span><span class="punctuation">:</span> <span class="string">"npx"</span><span class="punctuation">,</span>
516+
<span class="key">"args"</span><span class="punctuation">:</span> <span class="punctuation">[</span>
517+
<span class="string">"-y"</span><span class="punctuation">,</span>
518+
<span class="string">"mcp-remote"</span><span class="punctuation">,</span>
519+
<span class="string">"https://sosumi.ai/mcp"</span>
520+
<span class="punctuation">]</span><span class="punctuation">,</span>
521+
<span class="key">"env"</span><span class="punctuation">:</span> <span class="punctuation">{</span>
522+
<span class="key">"HTTP_PROXY"</span><span class="punctuation">:</span> <span class="string">"http://proxy.example.com:8080"</span><span class="punctuation">,</span>
523+
<span class="key">"HTTPS_PROXY"</span><span class="punctuation">:</span> <span class="string">"http://proxy.example.com:8080"</span>
524+
<span class="punctuation">}</span>
525+
<span class="punctuation">}</span></span><span class="dimmed"> <span class="punctuation">}</span></span>
526+
<span class="dimmed"><span class="punctuation">}</span></span></code></pre>
527+
<p>
528+
Replace <code>proxy.example.com:8080</code> with your actual proxy server details.
529+
For authenticated proxies, use the format:
530+
<code>http://username:password@proxy.example.com:8080</code>
531+
</p>
532+
</div>
500533
</section>
501534
</main>
502535

public/llms.txt

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,34 @@ Connect your MCP client to `https://sosumi.ai/mcp`:
6363
- Parameters: `path` (string) - Full or relative documentation path
6464
- Returns documentation content as markdown
6565

66+
## Troubleshooting
67+
68+
If you're experiencing connection timeouts or network issues with the MCP server,
69+
you may need to configure a proxy.
70+
This is particularly common in corporate environments
71+
or regions with restricted internet access.
72+
73+
Configure your MCP client to use a proxy by adding environment variables:
74+
75+
```json
76+
{
77+
"mcpServers": {
78+
"sosumi": {
79+
"command": "npx",
80+
"args": ["-y", "mcp-remote", "https://sosumi.ai/mcp"],
81+
"env": {
82+
"HTTP_PROXY": "http://proxy.example.com:8080",
83+
"HTTPS_PROXY": "http://proxy.example.com:8080"
84+
}
85+
}
86+
}
87+
}
88+
```
89+
90+
Replace `proxy.example.com:8080` with your actual proxy server details.
91+
For authenticated proxies, use the format:
92+
`http://username:password@proxy.example.com:8080`
93+
6694
## About
6795

6896
This is an unofficial,

0 commit comments

Comments
 (0)