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>
82 lines
2.2 KiB
PHP
82 lines
2.2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Mcp\Tool\Piece;
|
|
|
|
use App\Entity\Piece;
|
|
use App\Mcp\Tool\McpToolHelper;
|
|
use App\Repository\ConstructeurRepository;
|
|
use App\Repository\ModelTypeRepository;
|
|
use Doctrine\ORM\EntityManagerInterface;
|
|
use Mcp\Capability\Attribute\McpTool;
|
|
use Mcp\Schema\Result\CallToolResult;
|
|
use Symfony\Bundle\SecurityBundle\Security;
|
|
|
|
#[McpTool(
|
|
name: 'create_piece',
|
|
description: 'Create a new piece. prix must be a string (e.g. "12.50"). Requires ROLE_GESTIONNAIRE.',
|
|
)]
|
|
class CreatePieceTool
|
|
{
|
|
use McpToolHelper;
|
|
|
|
public function __construct(
|
|
private readonly EntityManagerInterface $em,
|
|
private readonly Security $security,
|
|
private readonly ModelTypeRepository $modelTypes,
|
|
private readonly ConstructeurRepository $constructeurs,
|
|
) {}
|
|
|
|
/**
|
|
* @param string[] $constructeurIds
|
|
*/
|
|
public function __invoke(
|
|
string $name,
|
|
string $reference = '',
|
|
string $description = '',
|
|
string $prix = '',
|
|
string $modelTypeId = '',
|
|
array $constructeurIds = [],
|
|
): CallToolResult {
|
|
$this->requireRole($this->security, 'ROLE_GESTIONNAIRE');
|
|
|
|
$piece = new Piece();
|
|
$piece->setName($name);
|
|
|
|
if ('' !== $reference) {
|
|
$piece->setReference($reference);
|
|
}
|
|
if ('' !== $description) {
|
|
$piece->setDescription($description);
|
|
}
|
|
if ('' !== $prix) {
|
|
$piece->setPrix($prix);
|
|
}
|
|
|
|
if ('' !== $modelTypeId) {
|
|
$modelType = $this->modelTypes->find($modelTypeId);
|
|
if (!$modelType) {
|
|
$this->mcpError('not_found', "ModelType not found: {$modelTypeId}");
|
|
}
|
|
$piece->setTypePiece($modelType);
|
|
}
|
|
|
|
foreach ($constructeurIds as $cId) {
|
|
$c = $this->constructeurs->find($cId);
|
|
if (!$c) {
|
|
$this->mcpError('not_found', "Constructeur not found: {$cId}");
|
|
}
|
|
$piece->addConstructeur($c);
|
|
}
|
|
|
|
$this->em->persist($piece);
|
|
$this->em->flush();
|
|
|
|
return $this->jsonResponse([
|
|
'id' => $piece->getId(),
|
|
'name' => $piece->getName(),
|
|
]);
|
|
}
|
|
}
|