polydev-ai 1.8.27 → 1.8.28
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/mcp/stdio-wrapper.js +3 -1
- package/package.json +1 -1
package/mcp/stdio-wrapper.js
CHANGED
|
@@ -848,7 +848,9 @@ class StdioMCPWrapper {
|
|
|
848
848
|
max_tokens: args.max_tokens || 20000
|
|
849
849
|
};
|
|
850
850
|
|
|
851
|
-
|
|
851
|
+
// serverUrl is 'https://www.polydev.ai/api/mcp'
|
|
852
|
+
// We need 'https://www.polydev.ai/api/mcp/report-cli-results'
|
|
853
|
+
const response = await fetch(`${this.serverUrl}/report-cli-results`, {
|
|
852
854
|
method: 'POST',
|
|
853
855
|
headers: {
|
|
854
856
|
'Authorization': `Bearer ${this.userToken}`,
|
package/package.json
CHANGED