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
StarWarsServer.php•483 B
<?php
declare(strict_types=1);
namespace App\Mcp\Servers;
use App\Mcp\Tools\StarWarsTool;
use Laravel\Mcp\Server;
class StarWarsServer extends Server
{
/**
* The tools registered with this MCP server.
*
* @var array<int, class-string<\Laravel\Mcp\Server\Tool>>
*/
protected array $tools = [
StarWarsTool::class,
];
protected string $instructions = 'Este servidor fornece acesso a dados da franquia Star Wars via API e banco local.';
}