(value: unknown)
| 112 | } |
| 113 | |
| 114 | function isPlainObject(value: unknown): value is Record<string, unknown> { |
| 115 | return typeof value === "object" && value !== null && !Array.isArray(value); |
| 116 | } |
| 117 | |
| 118 | /** |
| 119 | * Normalize a single MCP server config from an external source. We do not run |
no outgoing calls
no test coverage detected