(command: Command)
| 252 | * @returns True if the command is from an MCP server |
| 253 | */ |
| 254 | export function isMcpCommand(command: Command): boolean { |
| 255 | return command.name?.startsWith('mcp__') || command.isMcp === true |
| 256 | } |
| 257 | |
| 258 | /** |
| 259 | * Describe the file path for a given MCP config scope. |
nothing calls this directly
no outgoing calls
no test coverage detected