including llmsInstall + removed borders between items

This commit is contained in:
pashpashpash 2025-02-15 16:49:06 -08:00
parent a3dc4471e3
commit 89603d3e92
3 changed files with 3 additions and 2 deletions

View file

@ -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)

View file

@ -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
}

View file

@ -57,7 +57,6 @@ const McpMarketplaceCard = ({ item, installedServers }: McpMarketplaceCardProps)
})
}}
style={{
borderBottom: "1px solid var(--vscode-textCodeBlock-background)",
padding: "12px 16px",
cursor: isLoading ? "wait" : "pointer",
}}>