-
Notifications
You must be signed in to change notification settings - Fork 123
[Server] Extend elicitation enum schema compliance #261
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
chr-hertel
wants to merge
1
commit into
main
Choose a base branch
from
elicit-schema
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
127 changes: 127 additions & 0 deletions
127
src/Schema/Elicitation/MultiSelectEnumSchemaDefinition.php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,127 @@ | ||
| <?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\Elicitation; | ||
|
|
||
| use Mcp\Exception\InvalidArgumentException; | ||
|
|
||
| /** | ||
| * Schema definition for multi-select enum fields without titles (SEP-1330). | ||
| * | ||
| * Produces: {"type": "array", "items": {"type": "string", "enum": [...]}} | ||
| * | ||
| * @see https://github.com/modelcontextprotocol/modelcontextprotocol/issues/1330 | ||
| */ | ||
| final class MultiSelectEnumSchemaDefinition extends AbstractSchemaDefinition | ||
| { | ||
| /** | ||
| * @param string $title Human-readable title for the field | ||
| * @param string[] $enum Array of allowed string values | ||
| * @param string|null $description Optional description/help text | ||
| * @param string[]|null $default Optional default selected values (must be subset of enum) | ||
| * @param int|null $minItems Optional minimum number of selections | ||
| * @param int|null $maxItems Optional maximum number of selections | ||
| */ | ||
| public function __construct( | ||
| string $title, | ||
| public readonly array $enum, | ||
| ?string $description = null, | ||
| public readonly ?array $default = null, | ||
| public readonly ?int $minItems = null, | ||
| public readonly ?int $maxItems = null, | ||
| ) { | ||
| parent::__construct($title, $description); | ||
|
|
||
chr-hertel marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| if ([] === $enum) { | ||
| throw new InvalidArgumentException('enum array must not be empty.'); | ||
| } | ||
|
|
||
| foreach ($enum as $value) { | ||
| if (!\is_string($value)) { | ||
| throw new InvalidArgumentException('All enum values must be strings.'); | ||
| } | ||
| } | ||
|
|
||
| if (null !== $minItems && $minItems < 0) { | ||
| throw new InvalidArgumentException('minItems must be non-negative.'); | ||
| } | ||
|
|
||
| if (null !== $maxItems && $maxItems < 0) { | ||
| throw new InvalidArgumentException('maxItems must be non-negative.'); | ||
| } | ||
|
|
||
| if (null !== $minItems && null !== $maxItems && $minItems > $maxItems) { | ||
| throw new InvalidArgumentException('minItems cannot be greater than maxItems.'); | ||
| } | ||
|
|
||
| if (null !== $default) { | ||
| foreach ($default as $value) { | ||
| if (!\in_array($value, $enum, true)) { | ||
| throw new InvalidArgumentException(\sprintf('Default value "%s" is not in the enum array.', $value)); | ||
| } | ||
| } | ||
| } | ||
| } | ||
|
|
||
| /** | ||
| * @param array{ | ||
| * title: string, | ||
| * items: array{type: string, enum: string[]}, | ||
| * description?: string, | ||
| * default?: string[], | ||
| * minItems?: int, | ||
| * maxItems?: int, | ||
| * } $data | ||
| */ | ||
| public static function fromArray(array $data): self | ||
| { | ||
| self::validateTitle($data, 'multi-select enum'); | ||
|
|
||
| if (!isset($data['items']['enum']) || !\is_array($data['items']['enum'])) { | ||
| throw new InvalidArgumentException('Missing or invalid "items.enum" for multi-select enum schema definition.'); | ||
| } | ||
|
|
||
| return new self( | ||
| title: $data['title'], | ||
| enum: $data['items']['enum'], | ||
| description: $data['description'] ?? null, | ||
| default: $data['default'] ?? null, | ||
| minItems: isset($data['minItems']) ? (int) $data['minItems'] : null, | ||
| maxItems: isset($data['maxItems']) ? (int) $data['maxItems'] : null, | ||
| ); | ||
| } | ||
|
|
||
| /** | ||
| * @return array<string, mixed> | ||
| */ | ||
| public function jsonSerialize(): array | ||
| { | ||
| $data = $this->buildBaseJson('array'); | ||
| $data['items'] = [ | ||
| 'type' => 'string', | ||
| 'enum' => $this->enum, | ||
| ]; | ||
|
|
||
| if (null !== $this->default) { | ||
| $data['default'] = $this->default; | ||
| } | ||
|
|
||
| if (null !== $this->minItems) { | ||
| $data['minItems'] = $this->minItems; | ||
| } | ||
|
|
||
| if (null !== $this->maxItems) { | ||
| $data['maxItems'] = $this->maxItems; | ||
| } | ||
|
|
||
| return $data; | ||
| } | ||
| } | ||
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,98 @@ | ||
| <?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\Elicitation; | ||
|
|
||
| use Mcp\Exception\InvalidArgumentException; | ||
|
|
||
| /** | ||
| * Schema definition for single-select enum fields with titled options (SEP-1330). | ||
| * | ||
| * Uses the oneOf pattern with const/title pairs instead of enum/enumNames. | ||
| * Produces: {"type": "string", "oneOf": [{"const": "value", "title": "Label"}, ...]} | ||
| * | ||
| * @see https://github.com/modelcontextprotocol/modelcontextprotocol/issues/1330 | ||
| */ | ||
| final class TitledEnumSchemaDefinition extends AbstractSchemaDefinition | ||
| { | ||
| /** | ||
| * @param string $title Human-readable title for the field | ||
| * @param list<array{const: string, title: string}> $oneOf Array of const/title pairs | ||
| * @param string|null $description Optional description/help text | ||
| * @param string|null $default Optional default value (must match a const) | ||
| */ | ||
| public function __construct( | ||
| string $title, | ||
| public readonly array $oneOf, | ||
| ?string $description = null, | ||
| public readonly ?string $default = null, | ||
| ) { | ||
| parent::__construct($title, $description); | ||
chr-hertel marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| if ([] === $oneOf) { | ||
| throw new InvalidArgumentException('oneOf array must not be empty.'); | ||
| } | ||
|
|
||
| $consts = []; | ||
| foreach ($oneOf as $item) { | ||
| if (!isset($item['const']) || !\is_string($item['const'])) { | ||
| throw new InvalidArgumentException('Each oneOf item must have a string "const" property.'); | ||
| } | ||
| if (!isset($item['title']) || !\is_string($item['title'])) { | ||
| throw new InvalidArgumentException('Each oneOf item must have a string "title" property.'); | ||
| } | ||
| $consts[] = $item['const']; | ||
| } | ||
|
|
||
| if (null !== $default && !\in_array($default, $consts, true)) { | ||
| throw new InvalidArgumentException(\sprintf('Default value "%s" is not in the oneOf const values.', $default)); | ||
| } | ||
| } | ||
|
|
||
| /** | ||
| * @param array{ | ||
| * title: string, | ||
| * oneOf: list<array{const: string, title: string}>, | ||
| * description?: string, | ||
| * default?: string, | ||
| * } $data | ||
| */ | ||
| public static function fromArray(array $data): self | ||
| { | ||
| self::validateTitle($data, 'titled enum'); | ||
|
|
||
| if (!isset($data['oneOf']) || !\is_array($data['oneOf'])) { | ||
| throw new InvalidArgumentException('Missing or invalid "oneOf" for titled enum schema definition.'); | ||
| } | ||
|
|
||
| return new self( | ||
| title: $data['title'], | ||
| oneOf: $data['oneOf'], | ||
| description: $data['description'] ?? null, | ||
| default: $data['default'] ?? null, | ||
| ); | ||
| } | ||
|
|
||
| /** | ||
| * @return array<string, mixed> | ||
| */ | ||
| public function jsonSerialize(): array | ||
| { | ||
| $data = $this->buildBaseJson('string'); | ||
| $data['oneOf'] = $this->oneOf; | ||
|
|
||
| if (null !== $this->default) { | ||
| $data['default'] = $this->default; | ||
| } | ||
|
|
||
| return $data; | ||
| } | ||
| } | ||
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.