@@ -28,7 +28,7 @@ public function boot(): void
2828 */
2929 protected function discoverTools (): array
3030 {
31- $ excludedTools = config ('restify-mcp .mcp.tools.exclude ' , []);
31+ $ excludedTools = config ('restify-boost .mcp.tools.exclude ' , []);
3232 $ toolsPath = __DIR__ .DIRECTORY_SEPARATOR .'Tools ' ;
3333
3434 if (! is_dir ($ toolsPath )) {
@@ -45,7 +45,7 @@ protected function discoverTools(): array
4545 }
4646 }
4747
48- $ extraTools = config ('restify-mcp .mcp.tools.include ' , []);
48+ $ extraTools = config ('restify-boost .mcp.tools.include ' , []);
4949 foreach ($ extraTools as $ toolClass ) {
5050 if (class_exists ($ toolClass )) {
5151 $ this ->addTool ($ toolClass );
@@ -60,7 +60,7 @@ protected function discoverTools(): array
6060 */
6161 protected function discoverResources (): array
6262 {
63- $ excludedResources = config ('restify-mcp .mcp.resources.exclude ' , []);
63+ $ excludedResources = config ('restify-boost .mcp.resources.exclude ' , []);
6464 $ resourcesPath = __DIR__ .DIRECTORY_SEPARATOR .'Resources ' ;
6565
6666 if (! is_dir ($ resourcesPath )) {
@@ -77,7 +77,7 @@ protected function discoverResources(): array
7777 }
7878 }
7979
80- $ extraResources = config ('restify-mcp .mcp.resources.include ' , []);
80+ $ extraResources = config ('restify-boost .mcp.resources.include ' , []);
8181 foreach ($ extraResources as $ resourceClass ) {
8282 if (class_exists ($ resourceClass )) {
8383 $ this ->addResource ($ resourceClass );
@@ -92,7 +92,7 @@ protected function discoverResources(): array
9292 */
9393 protected function discoverPrompts (): array
9494 {
95- $ excludedPrompts = config ('restify-mcp .mcp.prompts.exclude ' , []);
95+ $ excludedPrompts = config ('restify-boost .mcp.prompts.exclude ' , []);
9696 $ promptsPath = __DIR__ .DIRECTORY_SEPARATOR .'Prompts ' ;
9797
9898 if (! is_dir ($ promptsPath )) {
@@ -109,7 +109,7 @@ protected function discoverPrompts(): array
109109 }
110110 }
111111
112- $ extraPrompts = config ('restify-mcp .mcp.prompts.include ' , []);
112+ $ extraPrompts = config ('restify-boost .mcp.prompts.include ' , []);
113113 foreach ($ extraPrompts as $ promptClass ) {
114114 if (class_exists ($ promptClass )) {
115115 $ this ->addPrompt ($ promptClass );
0 commit comments