MCP
Connect the tools provided by Model Context Protocol (MCP) servers to your agent.
How it works
use NeuronAI\MCP\McpConnector;
class MyAgent extends Agent
{
...
protected function tools(): array
{
return [
...McpConnector::make([
'command' => 'php',
'args' => ['/home/code/mcp_server.php'],
])->tools(),
];
}
}Local MCP Server
Remote MCP Server
Streamable HTTP Server
SSE HTTP Transport
Monitoring & Debugging

Filter the list of tools
Last updated