Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ Or use the following configuration:
}
```

For more details on configuring MCP servers in Augment Code, visit [the Augment Code documentation](https://docs.augmentcode.com/setup-augment/mcp).
For more details on configuring MCP servers in Msty AI, visit [the Msty AI documentation](https://docs.msty.studio/features/toolbox/tools).

> **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.

Expand Down
20 changes: 10 additions & 10 deletions app/components/content.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -547,16 +547,16 @@ export default function Content({
<li>Copy the following JSON configuration: </li>
<CodeExample
code={`{
"mcpServers": {
"${serverName}": {
"command": "npx",
"args": [
"mcp-remote",
"${url}"
]
}
}
}`}
"mcpServers": {
"${serverName}": {
"command": "npx",
"args": [
"mcp-remote",
"${url}"
]
}
}
}`}
id="msty-ai"
name="Msty AI"
/>
Expand Down
2 changes: 1 addition & 1 deletion app/routes/_index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -554,7 +554,7 @@ export default function Home() {

<div className="flex flex-col items-center">
<a
href="https://msty.studio"
href="https://msty.ai"
target="_blank"
rel="noopener noreferrer"
className="group hover:opacity-90 transition-opacity flex flex-col items-center"
Expand Down
98 changes: 98 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/api/tools/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
},
fetchUsageCodeExamples: {
description:
"Fetch code examples that use the given function. Use it when the user asks about code example or how to use his function. Returns code snippets that demonstrate how to calls this function.",
"Fetch code examples that use the given function. Use it when the user asks about code example or how to use his function. Returns code snippets that demonstrate how to call this function.",
},
},
},
Expand Down Expand Up @@ -164,7 +164,7 @@
);
});

expect(mockMcp.getTools()).toEqual(test.expectedTools);

Check failure on line 167 in src/api/tools/index.test.ts

View workflow job for this annotation

GitHub Actions / test

src/api/tools/index.test.ts > Tools Module > Tool registration > should register tool names correctly for https://myorg.gitmcp.io/myrepo

AssertionError: expected { …(5) } to deeply equal { …(5) } - Expected + Received Object { "fetchUsageCodeExamples": Object { - "description": "Fetch code examples that use the given function. Use it when the user asks about code example or how to use his function. Returns code snippets that demonstrate how to call this function.", + "description": "Fetch code examples that use the given function. Use it when the user asks about code example or how to use his function. Returns code snippets that demonstrate how to calls this function.", }, "fetch_generic_url_content": Object { "description": "Generic tool to fetch content from any absolute URL, respecting robots.txt rules. Use this to retrieve referenced urls (absolute urls) that were mentioned in previously fetched documentation.", }, "fetch_myrepo_documentation": Object { "description": "Fetch entire documentation file from the myorg/myrepo GitHub Pages. Useful for general questions. Always call this tool first if asked about myorg/myrepo.", }, "search_myrepo_code": Object { "description": "Search for code within the GitHub repository: \"myorg/myrepo\" using the GitHub Search API (exact match). Returns matching files for you to query further if relevant.", }, "search_myrepo_documentation": Object { "description": "Semantically search within the fetched documentation from the myorg/myrepo GitHub Pages. Useful for specific queries.", }, } ❯ src/api/tools/index.test.ts:167:36

Check failure on line 167 in src/api/tools/index.test.ts

View workflow job for this annotation

GitHub Actions / test

src/api/tools/index.test.ts > Tools Module > Tool registration > should register tool names correctly for https://gitmcp.io/myorg/myrepo

AssertionError: expected { …(5) } to deeply equal { …(5) } - Expected + Received Object { "fetchUsageCodeExamples": Object { - "description": "Fetch code examples that use the given function. Use it when the user asks about code example or how to use his function. Returns code snippets that demonstrate how to call this function.", + "description": "Fetch code examples that use the given function. Use it when the user asks about code example or how to use his function. Returns code snippets that demonstrate how to calls this function.", }, "fetch_generic_url_content": Object { "description": "Generic tool to fetch content from any absolute URL, respecting robots.txt rules. Use this to retrieve referenced urls (absolute urls) that were mentioned in previously fetched documentation.", }, "fetch_myrepo_documentation": Object { "description": "Fetch entire documentation file from GitHub repository: myorg/myrepo. Useful for general questions. Always call this tool first if asked about myorg/myrepo.", }, "search_myrepo_code": Object { "description": "Search for code within the GitHub repository: \"myorg/myrepo\" using the GitHub Search API (exact match). Returns matching files for you to query further if relevant.", }, "search_myrepo_documentation": Object { "description": "Semantically search within the fetched documentation from GitHub repository: myorg/myrepo. Useful for specific queries.", }, } ❯ src/api/tools/index.test.ts:167:36
});
});
});
Expand Down
Loading