From 096b86b2d8574d5b37b0d8d0c333c979e0f1e7a0 Mon Sep 17 00:00:00 2001 From: Alexandre D'Eschambeault Date: Wed, 11 Jun 2025 11:58:24 -0400 Subject: [PATCH] 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. --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a88cf4a..6807ef5 100644 --- a/README.md +++ b/README.md @@ -274,7 +274,8 @@ Configure your MCP client to execute this command directly. For example, in Curs "command": "php", "args": [ "/full/path/to/your/laravel/project/artisan", - "mcp:serve" + "mcp:serve", + "--transport=stdio" ] } }