Tools now return CallToolResult directly instead of Content arrays, preventing the MCP SDK from auto-generating structuredContent as a JSON array (which Claude Code rejects — expects a JSON object/record). Also adds Accept header to test helpers and SSE response parsing. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
48 lines
1.2 KiB
PHP
48 lines
1.2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Mcp\Tool\Constructeur;
|
|
|
|
use App\Entity\Constructeur;
|
|
use App\Mcp\Tool\McpToolHelper;
|
|
use Doctrine\ORM\EntityManagerInterface;
|
|
use Mcp\Capability\Attribute\McpTool;
|
|
use Mcp\Schema\Result\CallToolResult;
|
|
use Symfony\Bundle\SecurityBundle\Security;
|
|
|
|
#[McpTool(
|
|
name: 'create_constructeur',
|
|
description: 'Create a new constructeur (manufacturer/supplier). Requires ROLE_GESTIONNAIRE.',
|
|
)]
|
|
class CreateConstructeurTool
|
|
{
|
|
use McpToolHelper;
|
|
|
|
public function __construct(
|
|
private readonly EntityManagerInterface $em,
|
|
private readonly Security $security,
|
|
) {}
|
|
|
|
public function __invoke(
|
|
string $name,
|
|
string $email = '',
|
|
string $phone = '',
|
|
): CallToolResult {
|
|
$this->requireRole($this->security, 'ROLE_GESTIONNAIRE');
|
|
|
|
$constructeur = new Constructeur();
|
|
$constructeur->setName($name);
|
|
$constructeur->setEmail('' !== $email ? $email : null);
|
|
$constructeur->setPhone('' !== $phone ? $phone : null);
|
|
|
|
$this->em->persist($constructeur);
|
|
$this->em->flush();
|
|
|
|
return $this->jsonResponse([
|
|
'id' => $constructeur->getId(),
|
|
'name' => $constructeur->getName(),
|
|
]);
|
|
}
|
|
}
|