@corbat-tech/coco 2.25.11 → 2.25.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -27653,14 +27653,6 @@ var HTTPTransport = class {
27653
27653
  if (this.shouldAttemptOAuth()) {
27654
27654
  this.oauthToken = await getStoredMcpOAuthToken(this.config.url);
27655
27655
  }
27656
- const response = await this.sendRequestWithOAuthRetry(
27657
- "GET",
27658
- void 0,
27659
- this.abortController.signal
27660
- );
27661
- if (!response.ok && response.status !== 404) {
27662
- throw new Error(`HTTP ${response.status}: ${response.statusText}`);
27663
- }
27664
27656
  this.connected = true;
27665
27657
  } catch (error) {
27666
27658
  if (error instanceof MCPError) {