(pluginId: string, serverName: string)
| 480 | } |
| 481 | |
| 482 | function pluginMcpRuntimeName(pluginId: string, serverName: string): string { |
| 483 | // Plugin ids cannot contain ":", so this keeps plugin/server pairs unambiguous |
| 484 | // even when either side contains "-". |
| 485 | return `plugin-${pluginId}:${serverName}`; |
| 486 | } |
| 487 | |
| 488 | function withPluginMcpRuntime( |
| 489 | config: McpServerConfig, |
no outgoing calls
no test coverage detected