Incorrect MCP server documentation

I am trying to add an MCP server using the documentation here:

It says this is the correct format for the mcp.json file:

// This example demonstrated an MCP server using the stdio format
// Cursor automatically runs this process for you
// This uses a Python server, ran with python
{
“mcpServers”: {
“server-name”: {
“command”: “python”,
“args”: [“mcp-server.py”],
“env”: {
“API_KEY”: “value”
}
}
}
}

However, when I try to run that server, I get:

2025-05-08 11:24:53.334 [info] name: Handling ListOfferings action

2025-05-08 11:24:53.334 [error] name: No server info found

I am on Windows 11