We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/JoaoA1egre/mcp-app'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
GetProjectStats.php•824 B
<?php
declare(strict_types=1);
namespace App\Mcp\Tools;
use Illuminate\Contracts\JsonSchema\JsonSchema;
use Laravel\Mcp\Request;
use Laravel\Mcp\Response;
use Laravel\Mcp\Server\Tool;
class GetProjectStats extends Tool
{
/**
* The tool's description.
*/
protected string $description = <<<'MARKDOWN'
A description of what this tool does.
MARKDOWN;
/**
* Handle the tool request.
*/
public function handle(Request $request): Response
{
//
return Response::text('The content generated by the tool.');
}
/**
* Get the tool's input schema.
*
* @return array<string, \Illuminate\Contracts\JsonSchema\JsonSchema>
*/
public function schema(JsonSchema $schema): array
{
return [
//
];
}
}