@wisewandtools/mcp-server 2.0.4 → 2.0.5
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 +3 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -589,9 +589,10 @@ var WisewandAPIClient = class {
|
|
|
589
589
|
}
|
|
590
590
|
async checkHealth() {
|
|
591
591
|
try {
|
|
592
|
-
const response = await fetch(`${this.config.apiUrl}/
|
|
592
|
+
const response = await fetch(`${this.config.apiUrl}/v1/projects/?take=1`, {
|
|
593
593
|
headers: {
|
|
594
|
-
"Authorization": `Bearer ${this.config.apiKey}
|
|
594
|
+
"Authorization": `Bearer ${this.config.apiKey}`,
|
|
595
|
+
"Content-Type": "application/json"
|
|
595
596
|
},
|
|
596
597
|
signal: AbortSignal.timeout(5e3)
|
|
597
598
|
});
|