(id: string, name = `Server ${id}`)
| 20 | } |
| 21 | |
| 22 | function serverConfig(id: string, name = `Server ${id}`) { |
| 23 | return { |
| 24 | id, |
| 25 | name, |
| 26 | transport: 'streamable-http' as const, |
| 27 | url: `https://${id}.example.com/mcp`, |
| 28 | } |
| 29 | } |
| 30 | |
| 31 | const { |
| 32 | MockMcpClientConstructor, |
no outgoing calls
no test coverage detected