We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Xsaven/vector-memory-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Brain.php•594 B
<?php
declare(strict_types=1);
namespace BrainNode;
use BrainCore\Archetypes\BrainArchetype;
use BrainCore\Attributes\Includes;
use BrainCore\Attributes\Meta;
use BrainCore\Attributes\Purpose;
use BrainCore\Variations\Brain\PythonCharacter;
#[Meta('id', 'brain-core')]
#[Purpose('The Python vector memory MCP server')]
#[Includes(PythonCharacter::class)]
class Brain extends BrainArchetype
{
/**
* Handle the architecture logic.
*
* @return void
*/
protected function handle(): void
{
// Brain orchestration logic can be added here if needed
}
}