-
Notifications
You must be signed in to change notification settings - Fork 129
Expand file tree
/
Copy pathClientCapabilities.php
More file actions
107 lines (95 loc) · 2.91 KB
/
ClientCapabilities.php
File metadata and controls
107 lines (95 loc) · 2.91 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<?php
/*
* This file is part of the official PHP MCP SDK.
*
* A collaboration between Symfony and the PHP Foundation.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Mcp\Schema;
/**
* Capabilities a client may support. Known capabilities are defined here, in this schema, but this is not a closed set:
* any client can define its own, additional capabilities.
*
* @author Kyrian Obikwelu <koshnawaza@gmail.com>
*/
class ClientCapabilities implements \JsonSerializable
{
/**
* @param array<string, mixed> $experimental
*/
public function __construct(
public readonly ?bool $roots = false,
public readonly ?bool $rootsListChanged = null,
public readonly ?bool $sampling = null,
public readonly ?bool $elicitation = null,
public readonly ?array $experimental = null,
) {
}
/**
* @param array{
* roots?: array{
* listChanged?: bool,
* },
* sampling?: bool,
* elicitation?: bool,
* experimental?: array<string, mixed>,
* } $data
*/
public static function fromArray(array $data): self
{
$rootsEnabled = isset($data['roots']);
$rootsListChanged = null;
if ($rootsEnabled) {
if (\is_array($data['roots']) && \array_key_exists('listChanged', $data['roots'])) {
$rootsListChanged = (bool) $data['roots']['listChanged'];
} elseif (\is_object($data['roots']) && property_exists($data['roots'], 'listChanged')) {
$rootsListChanged = (bool) $data['roots']->listChanged;
}
}
$sampling = null;
if (isset($data['sampling'])) {
$sampling = true;
}
$elicitation = null;
if (isset($data['elicitation'])) {
$elicitation = true;
}
return new self(
$rootsEnabled,
$rootsListChanged,
$sampling,
$elicitation,
$data['experimental'] ?? null
);
}
/**
* @return array{
* roots?: object,
* sampling?: object,
* elicitation?: object,
* experimental?: object,
* }|\stdClass
*/
public function jsonSerialize(): array|object
{
$data = [];
if ($this->roots || $this->rootsListChanged) {
$data['roots'] = new \stdClass();
if ($this->rootsListChanged) {
$data['roots']->listChanged = $this->rootsListChanged;
}
}
if ($this->sampling) {
$data['sampling'] = new \stdClass();
}
if ($this->elicitation) {
$data['elicitation'] = new \stdClass();
}
if ($this->experimental) {
$data['experimental'] = (object) $this->experimental;
}
return $data ?: new \stdClass();
}
}