Skip to content

Commit 32357ec

Browse files
committed
fix: improve description more
1 parent e8c70da commit 32357ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Mcp/Tools/ListRoutes.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public function schema(ToolInputSchema $schema): ToolInputSchema
2424
{
2525
// Mirror the most common `route:list` options. All are optional.
2626
$schema->string('method')->description('Filter the routes by HTTP method (e.g., GET, POST, PUT, DELETE).')->required(false);
27-
$schema->string('action')->description('Filter the routes by controller action (e.g., UserController@index).')->required(false);
27+
$schema->string('action')->description('Filter the routes by controller action (e.g., UserController@index, ChatController, show).')->required(false);
2828
$schema->string('name')->description('Filter the routes by route name (no wildcards supported).')->required(false);
2929
$schema->string('domain')->description('Filter the routes by domain.')->required(false);
3030
$schema->string('path')->description('Only show routes matching the given path pattern.')->required(false);

0 commit comments

Comments
 (0)