Skip to content

Commit 0cd329f

Browse files
authored
feat: add Msty AI integration and configuration instructions (#180)
1 parent 1810ea2 commit 0cd329f

File tree

3 files changed

+95
-0
lines changed

3 files changed

+95
-0
lines changed

README.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,25 @@ Or use the following configuration:
191191
}
192192
```
193193

194+
#### Connecting Msty AI
195+
1. Open Msty Studio
196+
2. Go to Tools > Import Tools from JSON Clipboard
197+
3. Paste the following configuration:
198+
199+
```json
200+
{
201+
"mcpServers": {
202+
"git-mcp Docs": {
203+
"command": "npx",
204+
"args": [
205+
"mcp-remote",
206+
"https://gitmcp.io/{owner}/{repo}"
207+
]
208+
}
209+
}
210+
}
211+
```
212+
194213
For more details on configuring MCP servers in Augment Code, visit [the Augment Code documentation](https://docs.augmentcode.com/setup-augment/mcp).
195214

196215
> **Note:** Remember to replace `{owner}` and `{repo}` with the actual GitHub username/organization and repository name. You can also use the dynamic endpoint `https://gitmcp.io/docs` to allow your AI to access any repository on demand.

app/components/content.tsx

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,8 @@ export default function Content({
109109
return "https://highlightai.com/favicon.ico";
110110
case "Augment Code":
111111
return "https://cdn.prod.website-files.com/66d76c2202b335e39ad2b5e8/66f302d663108ca67c19ddbc_Favicon.png";
112+
case "Msty AI":
113+
return "https://msty.studio/favicon.ico";
112114
default:
113115
return "https://codeium.com/favicon.ico";
114116
}
@@ -241,6 +243,7 @@ export default function Content({
241243
"Cline",
242244
"Highlight AI",
243245
"Augment Code",
246+
"Msty AI",
244247
].map((tab, index) => (
245248
<button
246249
key={tab}
@@ -537,9 +540,49 @@ export default function Content({
537540
</div>
538541
</div>
539542
</div>
543+
544+
<div id="tab-msty-ai" className="tab-content hidden">
545+
<div className="bg-slate-50 p-3 sm:p-4 rounded-md border border-slate-200">
546+
<ul className="text-sm text-slate-700 mb-4 list-disc pl-5 space-y-2">
547+
<li>Copy the following JSON configuration: </li>
548+
<CodeExample
549+
code={`{
550+
"mcpServers": {
551+
"${serverName}": {
552+
"command": "npx",
553+
"args": [
554+
"mcp-remote",
555+
"${url}"
556+
]
557+
}
558+
}
559+
}`}
560+
id="msty-ai"
561+
name="Msty AI"
562+
/>
563+
<li>
564+
Go to Msty Studio &gt; Tools &gt; 'Import Tools from JSON
565+
Clipboard'
566+
</li>
567+
</ul>
568+
<p className="text-sm text-slate-700 mb-4">
569+
For more details on using Msty AI, refer to{" "}
570+
<a
571+
href="https://docs.msty.ai"
572+
target="_blank"
573+
rel="noopener noreferrer"
574+
className="text-blue-600 hover:text-blue-800"
575+
>
576+
the documentation
577+
</a>
578+
.
579+
</p>
580+
</div>
581+
</div>
540582
</div>
541583
</div>
542584

585+
{/* Footer with tool links */}
543586
<div className="mt-8 flex flex-col items-center justify-center">
544587
<div className="flex justify-center space-x-8 mb-6">
545588
<a
@@ -635,6 +678,19 @@ export default function Content({
635678
/>
636679
Augment Code
637680
</a>
681+
<a
682+
href="https://msty.ai"
683+
className="text-blue-600 hover:text-blue-800 flex items-center transition-colors"
684+
target="_blank"
685+
rel="noopener noreferrer"
686+
>
687+
<img
688+
src={getToolFaviconUrl("Msty AI")}
689+
alt="Msty AI"
690+
className="h-6 w-6 mr-2"
691+
/>
692+
Msty AI
693+
</a>
638694
</div>
639695
</div>
640696
</div>

app/routes/_index.tsx

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -551,6 +551,26 @@ export default function Home() {
551551
</span>
552552
</a>
553553
</div>
554+
555+
<div className="flex flex-col items-center">
556+
<a
557+
href="https://msty.studio"
558+
target="_blank"
559+
rel="noopener noreferrer"
560+
className="group hover:opacity-90 transition-opacity flex flex-col items-center"
561+
>
562+
<div className="w-16 h-16 sm:w-20 sm:h-20 bg-gradient-to-br from-gray-700 to-gray-800 rounded-xl shadow-lg flex items-center justify-center mb-3 group-hover:from-gray-650 group-hover:to-gray-750 transition-all">
563+
<img
564+
src="https://msty.studio/favicon.ico"
565+
alt="Msty AI"
566+
className="h-8 w-8 sm:h-10 sm:w-10"
567+
/>
568+
</div>
569+
<span className="text-gray-200 text-base sm:text-lg font-medium">
570+
Msty AI
571+
</span>
572+
</a>
573+
</div>
554574
</div>
555575
</div>
556576
</section>

0 commit comments

Comments
 (0)