@@ -32,7 +31,7 @@ const McpToolRow = ({ tool }: McpToolRowProps) => {
style={{
marginTop: "8px",
fontSize: "12px",
- background: CODE_BLOCK_BG_COLOR,
+ border: "1px solid color-mix(in srgb, var(--vscode-descriptionForeground) 30%, transparent)",
borderRadius: "3px",
padding: "8px",
}}>
diff --git a/webview-ui/src/components/mcp/McpView.tsx b/webview-ui/src/components/mcp/McpView.tsx
index 391628d..8be4c5c 100644
--- a/webview-ui/src/components/mcp/McpView.tsx
+++ b/webview-ui/src/components/mcp/McpView.tsx
@@ -217,7 +217,7 @@ const ServerRow = ({ server }: { server: McpServer }) => {
{server.tools && server.tools.length > 0 ? (
+ style={{ display: "flex", flexDirection: "column", gap: "6px", width: "100%" }}>
{server.tools.map((tool) => (
))}