We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/adrianmikula/JakartaMigration'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
SSE_TESTING_SUCCESS.md•2.04 kB
# SSE Testing - Server Running Successfully ✅
## Status: Server is Running!
**Date**: 2026-01-06 20:00:25
**Verification**:
- ✅ Health endpoint: `http://localhost:8080/actuator/health` - **WORKING** (200 OK)
- ✅ Web server: Running on port 8080
- ✅ Tools registered: 6 tools
- ✅ MCP SSE endpoint: `http://localhost:8080/mcp/sse`
## Server Details
- **Transport**: SSE (Server-Sent Events)
- **Port**: 8080
- **Path**: `/mcp/sse`
- **Profile**: `mcp-sse`
- **Process ID**: 23924
## Next Step: Configure Cursor
Now that the server is running, configure Cursor to use SSE:
1. **Open Cursor Settings** (`Ctrl+,`)
2. **Navigate to Features → MCP**
3. **Update jakarta-migration configuration** to:
```json
{
"mcpServers": {
"jakarta-migration": {
"type": "sse",
"url": "http://localhost:8080/mcp/sse"
}
}
}
```
4. **Restart Cursor completely**
## Testing
After configuring Cursor:
1. **Check MCP status** - Should show jakarta-migration as connected
2. **Test tool discovery**: Ask "What Jakarta migration tools are available?"
3. **Test a tool**: Try "Analyze Jakarta readiness for examples/..."
## Expected Behavior
### If SSE Resolves Timeout:
- ✅ Tools load without 1-minute timeout
- ✅ GetInstructions/ListOfferings work or are bypassed
- ✅ Tools accessible in Cursor
### If SSE Has Same Issue:
- ⚠️ Confirms it's a Spring AI MCP framework bug
- ⚠️ Both stdio and SSE affected
- ⚠️ Need framework fix
## Important Notes
- **Keep server running**: The server must stay running while using Cursor
- **Port must be available**: Ensure port 8080 isn't used by other applications
- **Server logs**: Monitor the server console for any errors
## Server Management
### Start Server:
```powershell
java -jar build\libs\jakarta-migration-mcp-1.0.0-SNAPSHOT.jar --spring.profiles.active=mcp-sse
```
### Stop Server:
Press `Ctrl+C` in the terminal where the server is running
### Verify Server:
```powershell
Invoke-WebRequest -Uri http://localhost:8080/actuator/health
```