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>
This commit is contained in:
@@ -8,6 +8,7 @@ use App\Entity\Site;
|
||||
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(
|
||||
@@ -31,7 +32,7 @@ class CreateSiteTool
|
||||
string $contactPostalCode = '',
|
||||
string $contactCity = '',
|
||||
string $color = '',
|
||||
): array {
|
||||
): CallToolResult {
|
||||
$this->requireRole($this->security, 'ROLE_GESTIONNAIRE');
|
||||
|
||||
$site = new Site();
|
||||
|
||||
@@ -8,6 +8,7 @@ use App\Mcp\Tool\McpToolHelper;
|
||||
use App\Repository\SiteRepository;
|
||||
use Doctrine\ORM\EntityManagerInterface;
|
||||
use Mcp\Capability\Attribute\McpTool;
|
||||
use Mcp\Schema\Result\CallToolResult;
|
||||
use Symfony\Bundle\SecurityBundle\Security;
|
||||
|
||||
#[McpTool(
|
||||
@@ -24,7 +25,7 @@ class DeleteSiteTool
|
||||
private readonly Security $security,
|
||||
) {}
|
||||
|
||||
public function __invoke(string $siteId): array
|
||||
public function __invoke(string $siteId): CallToolResult
|
||||
{
|
||||
$this->requireRole($this->security, 'ROLE_GESTIONNAIRE');
|
||||
|
||||
|
||||
@@ -7,6 +7,7 @@ namespace App\Mcp\Tool\Site;
|
||||
use App\Mcp\Tool\McpToolHelper;
|
||||
use App\Repository\SiteRepository;
|
||||
use Mcp\Capability\Attribute\McpTool;
|
||||
use Mcp\Schema\Result\CallToolResult;
|
||||
|
||||
#[McpTool(
|
||||
name: 'get_site',
|
||||
@@ -20,7 +21,7 @@ class GetSiteTool
|
||||
private readonly SiteRepository $sites,
|
||||
) {}
|
||||
|
||||
public function __invoke(string $siteId): array
|
||||
public function __invoke(string $siteId): CallToolResult
|
||||
{
|
||||
$site = $this->sites->find($siteId);
|
||||
|
||||
|
||||
@@ -7,6 +7,7 @@ namespace App\Mcp\Tool\Site;
|
||||
use App\Mcp\Tool\McpToolHelper;
|
||||
use App\Repository\SiteRepository;
|
||||
use Mcp\Capability\Attribute\McpTool;
|
||||
use Mcp\Schema\Result\CallToolResult;
|
||||
|
||||
#[McpTool(
|
||||
name: 'list_sites',
|
||||
@@ -20,7 +21,7 @@ class ListSitesTool
|
||||
private readonly SiteRepository $sites,
|
||||
) {}
|
||||
|
||||
public function __invoke(int $page = 1, int $limit = 30, string $search = ''): array
|
||||
public function __invoke(int $page = 1, int $limit = 30, string $search = ''): CallToolResult
|
||||
{
|
||||
$p = $this->paginationParams($page, $limit);
|
||||
|
||||
|
||||
@@ -8,6 +8,7 @@ use App\Mcp\Tool\McpToolHelper;
|
||||
use App\Repository\SiteRepository;
|
||||
use Doctrine\ORM\EntityManagerInterface;
|
||||
use Mcp\Capability\Attribute\McpTool;
|
||||
use Mcp\Schema\Result\CallToolResult;
|
||||
use Symfony\Bundle\SecurityBundle\Security;
|
||||
|
||||
#[McpTool(
|
||||
@@ -33,7 +34,7 @@ class UpdateSiteTool
|
||||
?string $contactPostalCode = null,
|
||||
?string $contactCity = null,
|
||||
?string $color = null,
|
||||
): array {
|
||||
): CallToolResult {
|
||||
$this->requireRole($this->security, 'ROLE_GESTIONNAIRE');
|
||||
|
||||
$site = $this->sites->find($siteId);
|
||||
|
||||
Reference in New Issue
Block a user