I changed the port from 8000 to 9050 in .env, but it was not respected.
Ai says:
In main(), MCP_PORT is read from the environment before create_mcp() is called — but load_env() (which loads .env) is called inside create_mcp(). So .env hasn't been loaded yet when the port is read.
I changed the port from 8000 to 9050 in .env, but it was not respected.
Ai says:
In main(), MCP_PORT is read from the environment before create_mcp() is called — but load_env() (which loads .env) is called inside create_mcp(). So .env hasn't been loaded yet when the port is read.