You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: redirect ServeCommand output to STDERR for stdio transport
Console output methods sometimes write to STDOUT, which interferes with JSON-RPC communication in stdio mode. This redirects startup messages to STDERR when available.
fix: remove output message after STDIO transport stops
When MCP clients disconnect from STDIO transport, they close STDOUT/STDERR
streams before the Laravel command completes. Attempting to output
"MCP Server (STDIO) stopped." to closed streams causes fwrite() errors.
docs: transport should be explicitly set to stdio for the tool to start
When starting the tool is VSCode without providing a transport, it can't "Choose transport protocol for MCP server communication", so we need to explicitly define it.