mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-07 08:26:51 +00:00
including llmsInstall + removed borders between items
This commit is contained in:
parent
a3dc4471e3
commit
89603d3e92
3 changed files with 3 additions and 2 deletions
|
|
@ -480,7 +480,7 @@ export class ClineProvider implements vscode.WebviewViewProvider {
|
|||
})
|
||||
|
||||
// Create task with context from README
|
||||
const task = `Set up the MCP server from ${mcpDetails.githubUrl}. Use "${mcpDetails.mcpId}" as the server name in cline_mcp_settings.json. Here's some additional context from the README:\n\n${mcpDetails.readmeContent}`
|
||||
const task = `Set up the MCP server from ${mcpDetails.githubUrl}. Use "${mcpDetails.mcpId}" as the server name in cline_mcp_settings.json. Here's some additional context from the README:\n\n${mcpDetails.readmeContent}\n${mcpDetails.llmsInstallationContent}`
|
||||
|
||||
// Initialize task and show chat view
|
||||
await this.initClineWithTask(task)
|
||||
|
|
|
|||
|
|
@ -79,6 +79,7 @@ export interface McpMarketplaceItem {
|
|||
tags: string[]
|
||||
requiresApiKey: boolean
|
||||
readmeContent?: string
|
||||
llmsInstallationContent?: string
|
||||
isRecommended: boolean
|
||||
githubStars: number
|
||||
downloadCount: number
|
||||
|
|
@ -98,5 +99,6 @@ export interface McpDownloadResponse {
|
|||
author: string
|
||||
description: string
|
||||
readmeContent: string
|
||||
llmsInstallationContent: string
|
||||
requiresApiKey: boolean
|
||||
}
|
||||
|
|
|
|||
|
|
@ -57,7 +57,6 @@ const McpMarketplaceCard = ({ item, installedServers }: McpMarketplaceCardProps)
|
|||
})
|
||||
}}
|
||||
style={{
|
||||
borderBottom: "1px solid var(--vscode-textCodeBlock-background)",
|
||||
padding: "12px 16px",
|
||||
cursor: isLoading ? "wait" : "pointer",
|
||||
}}>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue