- 
                Notifications
    
You must be signed in to change notification settings  - Fork 14
 
Description
Hello,
The pre-compiled Windows release (v1.0.0) appears to be broken. The server starts and listens on the specified port, but it returns a "404 page not found" error for all POST requests to its root endpoint.
Environment:
- OS: Windows
 - MCP Server Version: v1.0.0 (from 
reportportal-mcp-server_1.0.0_windows_amd64.zip) 
Steps to Reproduce:
- 
Start the server in one terminal with the necessary environment variables. The server confirms it is running:
time=... level=INFO msg="ReportPortal MCP Server running on SSE" addr=:4389 - 
In a second terminal, send a standard tool-calling request using
curl:curl -X POST -H "Content-Type: application/json" -d "{\"name\":\"list_launches\",\"arguments\":{\"status_in\":\"FAILED\"}}" http://localhost:4389/
 
Expected Behavior:
The server should process the request and return a JSON response with the list of launches.
Actual Behavior:
The server immediately returns a 404 page not found error.
Conclusion:
This proves that the server is running but is not correctly handling requests at its root endpoint, making the v1.0.0 release unusable on Windows.
Thank you.