()
| 106 | } |
| 107 | |
| 108 | getStatus(): MCPServerStatus { |
| 109 | return { |
| 110 | ...this.options, |
| 111 | errors: this.errors, |
| 112 | infos: this.infos, |
| 113 | prompts: this.prompts, |
| 114 | resources: this.resources, |
| 115 | resourceTemplates: this.resourceTemplates, |
| 116 | tools: this.tools, |
| 117 | status: this.status, |
| 118 | isProtectedResource: this.isProtectedResource, |
| 119 | }; |
| 120 | } |
| 121 | |
| 122 | async connectClient(forceRefresh: boolean, externalSignal: AbortSignal) { |
| 123 | if (this.status === "disabled") { |
no outgoing calls
no test coverage detected