mirror of
https://github.com/pacnpal/Roo-Code.git
synced 2025-12-20 12:21:13 -05:00
Fixes
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
|
||||
- Add support for Model Context Protocol (MCP), enabling Cline to use custom tools like web-search tool or GitHub tool
|
||||
- Add MCP server management tab accessible via the server icon in the menu bar
|
||||
- Add ability for Cline to dynamically create new MCP servers based on user requests (e.g., "add a tool that fetches Jira tickets")
|
||||
- Add ability for Cline to dynamically create new MCP servers based on user requests (e.g., "add a tool that pulls the latest npm docs")
|
||||
|
||||
## [2.1.6]
|
||||
|
||||
|
||||
@@ -470,7 +470,9 @@ export class McpHub {
|
||||
): Promise<McpToolCallResponse> {
|
||||
const connection = this.connections.find((conn) => conn.server.name === serverName)
|
||||
if (!connection) {
|
||||
throw new Error(`No connection found for server: ${serverName}`)
|
||||
throw new Error(
|
||||
`No connection found for server: ${serverName}. Please make sure to use MCP servers available under 'Connected MCP Servers'.`,
|
||||
)
|
||||
}
|
||||
return await connection.client.request(
|
||||
{
|
||||
|
||||
@@ -40,7 +40,7 @@ const Announcement = ({ version, hideAnnouncement }: AnnouncementProps) => {
|
||||
</VSCodeLink>
|
||||
</p>
|
||||
<p style={{ margin: "5px 0px" }}>
|
||||
You can add and configure MCP servers by clicking the{" "}
|
||||
You can add and configure MCP servers by clicking the new{" "}
|
||||
<span className="codicon codicon-server" style={{ fontSize: "10px" }}></span> icon in the menu bar.
|
||||
</p>
|
||||
<p style={{ margin: "5px 0px" }}>
|
||||
@@ -57,8 +57,9 @@ const Announcement = ({ version, hideAnnouncement }: AnnouncementProps) => {
|
||||
with others too.{" "}
|
||||
</p>
|
||||
<p style={{ margin: "5px 0px" }}>
|
||||
Try it yourself by asking Cline to "add a tool that pulls the latest npm docs", or
|
||||
<VSCodeLink href="https://x.com/sdrzn/status/1850880547825823989" style={{ display: "inline" }}>
|
||||
See a demo of MCP in action here!
|
||||
see a demo of MCP in action here.
|
||||
</VSCodeLink>
|
||||
</p>
|
||||
{/*<ul style={{ margin: "0 0 8px", paddingLeft: "12px" }}>
|
||||
|
||||
@@ -118,8 +118,8 @@ const McpView = ({ onDone }: McpViewProps) => {
|
||||
<VSCodeLink href="https://github.com/modelcontextprotocol/servers" style={{ display: "inline" }}>
|
||||
community-made servers
|
||||
</VSCodeLink>{" "}
|
||||
or ask Cline to create new tools specific to your workflow (e.g., "add a tool that pulls GitHub
|
||||
issues").
|
||||
or ask Cline to create new tools specific to your workflow (e.g., "add a tool that pulls the latest
|
||||
npm docs").
|
||||
</div>
|
||||
|
||||
{/* Server List */}
|
||||
|
||||
Reference in New Issue
Block a user