Files
Inventory/src/Mcp/Tool/Comment/UnresolvedCountTool.php
Matthieu add3a9a21f fix(mcp) : return CallToolResult to prevent structuredContent serialization issue
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>
2026-03-16 17:24:04 +01:00

39 lines
956 B
PHP

<?php
declare(strict_types=1);
namespace App\Mcp\Tool\Comment;
use App\Entity\Comment;
use App\Mcp\Tool\McpToolHelper;
use Doctrine\ORM\EntityManagerInterface;
use Mcp\Capability\Attribute\McpTool;
use Mcp\Schema\Result\CallToolResult;
#[McpTool(
name: 'get_unresolved_comments_count',
description: 'Get the total count of unresolved (open) comments across all entities.',
)]
class UnresolvedCountTool
{
use McpToolHelper;
public function __construct(
private readonly EntityManagerInterface $em,
) {}
public function __invoke(): CallToolResult
{
$count = (int) $this->em->getRepository(Comment::class)
->createQueryBuilder('c')
->select('COUNT(c.id)')
->andWhere('c.status = :status')
->setParameter('status', 'open')
->getQuery()
->getSingleScalarResult()
;
return $this->jsonResponse(['count' => $count]);
}
}