Skip to main content
Glama

MCP Registry Server

Server Details

Publish and discover MCP servers via the official MCP Registry. Powered by HAPI MCP server.

If you are the author of this connector, you can claim ownership with GitHub, an HTTP challenge, or a DNS record. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
modelcontextprotocol/registry
GitHub Stars
6,314

TDQS

A3.6/5.0
Disambiguation5/5

Each tool targets a distinct resource level: all servers, versions of a specific server, and a specific version. There is no overlap or ambiguity between them.

Naming Consistency5/5

All names follow the same pattern of getV01Servers + path segments, making the hierarchy clear and predictable. The naming is consistent and accurately reflects the API endpoints.

Tool Count5/5

Three tools is a well-scoped set for a read-only registry server. Each tool serves a distinct purpose without redundancy or unnecessary bloat.

Completeness4/5

The surface covers the typical registry lookup workflow: list servers, list versions, and fetch a specific version (including 'latest'). A minor gap is the lack of a direct way to list all servers with their latest versions in a single call, requiring multiple requests.

Available Tools

3 tools
getV01ServersList MCP serversC
Read-only
Inspect

List MCP servers - Returns a list of all registered MCP servers

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
cursorNo
searchNo
versionNo
updated_sinceNo

TDQS

C2.4/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true and destructiveHint=false, so the safety profile is covered. However, the description adds little beyond restating the purpose. It says 'all registered' but does not clarify that filters can narrow results, potentially misleading the agent about the default scope. No pagination or ordering behavior is disclosed.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness2/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is redundant: 'List MCP servers' and 'Returns a list of all registered MCP servers' convey the same information. The dash-separated structure wastes space without adding value. It is short but not well-structured.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a list tool with five optional parameters and no output schema, the description is incomplete. It does not mention pagination (cursor, limit), search, version filtering, or updated_since semantics, nor any return format details. Annotations cover the read-only aspect, but the overall usage context is insufficient.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters1/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema description coverage is 0% for five parameters, and the description provides no explanations for limit, cursor, search, version, or updated_since. The agent has no semantic understanding of these filter/pagination parameters from the description.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('List') and resource ('MCP servers'), and explicitly says it returns 'a list of all registered MCP servers'. While it doesn't directly differentiate from sibling tools (which focus on server versions), the name and phrasing make the purpose clear.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is provided on when to use this tool versus the sibling tools, nor are the optional parameters (limit, cursor, search, version, updated_since) explained. There is no mention of filtering, pagination, or when to use a more specific version-related tool.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

getV01ServersServerNameVersionsList all versions of an MCP serverA
Read-only
Inspect

List all versions of an MCP server - Returns all available versions for a specific MCP server, ordered by publication date (newest first)

ParametersJSON Schema
NameRequiredDescriptionDefault
serverNameYes

TDQS

A3.9/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true and destructiveHint=false, so the safety profile is known. The description adds useful behavioral context beyond annotations: it specifies the result is ordered by publication date (newest first) and that it returns 'all available versions'. This provides additional expectation-setting without contradicting annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise, using two short phrases separated by a dash, with the key action front-loaded. Every word adds value: it names the resource, specifies the scope ('all versions', 'specific MCP server'), and adds the ordering detail. No filler or redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's simplicity (one parameter, no output schema, read-only annotations), the description is mostly complete. It clearly states what the tool returns. Minor gaps like pagination or response format are not mentioned, but for a simple listing tool with good annotations, this is acceptable. It is not overburdened and covers the essential context.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has only one parameter (serverName) with 0% description coverage. The description says 'for a specific MCP server', which gives vague meaning but does not explain what serverName is, how to obtain it, or any format requirements. With no schema description, the description should compensate but minimally does, leaving the parameter semantics unclear.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: 'List all versions of an MCP server' and elaborates with 'Returns all available versions for a specific MCP server, ordered by publication date (newest first)'. The verb 'List' and the resource 'versions of an MCP server' are specific, and it distinguishes from sibling tools like getV01ServersServerNameVersionsVersion (likely a single version) by emphasizing 'all versions'.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies when to use the tool: when you need all versions of a server. However, it does not explicitly mention alternatives or provide when-not-to-use guidance. There is no reference to sibling tools or exclusions, so usage guidelines are only implied, not stated directly.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

getV01ServersServerNameVersionsVersionGet specific MCP server versionA
Read-only
Inspect

Get specific MCP server version - Returns detailed information about a specific version of an MCP server. Use the special version latest to get the latest version.

ParametersJSON Schema
NameRequiredDescriptionDefault
versionYes
serverNameYes

TDQS

A4.4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true and destructiveHint=false. The description adds useful behavioral context about the 'latest' special version and promises detailed information, going beyond the structured annotations without contradicting them.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences long, front-loaded with the primary action and purpose, and contains no redundant or filler content.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple read-only tool with two string parameters, the description adequately covers purpose and key behavior. The lack of an output schema is somewhat mitigated by the straightforward nature of the tool; more detail on return structure would be nice but is not essential.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must compensate. It explains the 'version' parameter's special value ('latest') and clarifies the resource context. The 'serverName' parameter is self-explanatory from the tool name and context, making the description sufficient for both parameters.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('Get') and clearly identifies the resource ('specific MCP server version'), distinguishing it from sibling tools that list servers or versions. The mention of the special 'latest' value adds further precision.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description clearly implies when to use the tool (retrieve a specific version) and provides guidance on using the 'latest' special value. It does not explicitly name alternatives, but the sibling tool names make the distinction self-evident.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 3 tool updates
    • ChangedgetV01Servers1 field changed
      • removedInput schema / properties / x-hapi-auth-state
        Removed value: -{
        -  "type": "string"
        -}
    • ChangedgetV01ServersServerNameVersions1 field changed
      • removedInput schema / properties / x-hapi-auth-state
        Removed value: -{
        -  "type": "string"
        -}
    • ChangedgetV01ServersServerNameVersionsVersion1 field changed
      • removedInput schema / properties / x-hapi-auth-state
        Removed value: -{
        -  "type": "string"
        -}
  2. 4 tool updates
    • RemoveddeleteV01ServersServerNameVersionsVersion
    • ChangedgetV01Servers2 fields changed
      • addedInput schema / properties / limit / maximum
        Added value: +100
      • addedInput schema / properties / limit / minimum
        Added value: +1
    • RemovedpostV01Publish
    • RemovedputV01ServersServerNameVersionsVersion
  3. 2 tool updates
    • ChangedpostV01Publish1 field changed
      • changedInput schema / properties / undefinedBody / properties / packages / items / properties / transport / anyOf
        Previous value: -[
        -  {
        -    "properties": {
        -      "type": {
        -        "description": "Transport type",
        -        "enum": [
        -          "stdio"
        -        ],
        -        "type": "string"
        -      }
        -    },
        -    "required": [
        -      "type"
        -    ],
        -    "type": "object"
        -  },
        -  {
        -    "properties": {
        -      "headers": {
        -        "description": "HTTP headers to include",
        -        "items": {
        -          "allOf": [
        -            {
        -              "allOf": [
        -                {
        -                  "properties": {
        -                    "choices": {
        -                      "description": "A list of possible values for the input. If provided, the user must select one of these values.",
        -                      "items": {
        -                        "type": "string"
        -                      },
        -                      "type": "array"
        -                    },
        -                    "default": {
        -                      "description": "The default value for the input.  This should be a valid value for the input.  If you want to provide input examples or guidance, use the `placeholder` field instead.",
        -                      "type": "string"
        -                    },
        -                    "description": {
        -                      "description": "A description of the input, which clients can use to provide context to the user.",
        -                      "type": "string"
        -                    },
        -                    "format": {
        -                      "description": "Specifies the input format. Supported values include `filepath`, which should be interpreted as a file on the user's filesystem.\n\nWhen the input is converted to a string, booleans should be represented by the strings \"true\" and \"false\", and numbers should be represented as decimal values.",
        -                      "enum": [
        -                        "string",
        -                        "number",
        -                        "boolean",
        -                        "filepath"
        -                      ],
        -                      "type": "string"
        -                    },
        -                    "isRequired": {
        -                      "type": "boolean"
        -                    },
        -                    "isSecret": {
        -                      "description": "Indicates whether the input is a secret value (e.g., password, token). If true, clients should handle the value securely.",
        -                      "type": "boolean"
        -                    },
        -                    "placeholder": {
        -                      "description": "A placeholder for the input to be displaying during configuration. This is used to provide examples or guidance about the expected form or content of the input.",
        -                      "type": "string"
        -                    },
        -                    "value": {
        -                      "description": "The value for the input. If this is not set, the user may be prompted to provide a value. If a value is set, it should not be configurable by end users.\n\nIdentifiers wrapped in `{curly_braces}` will be replaced with the corresponding properties from the input `variables` map. If an identifier in braces is not found in `variables`, or if `variables` is not provided, the `{curly_braces}` substring should remain unchanged.\n",
        -                      "type": "string"
        -                    }
        -                  },
        -                  "type": "object"
        -                },
        -                {
        -                  "properties": {
        -                    "variables": {
        -                      "additionalProperties": {
        -                        "$ref": "#/components/schemas/Input"
        -                      },
        -                      "description": "A map of variable names to their values. Keys in the input `value` that are wrapped in `{curly_braces}` will be replaced with the corresponding variable values.",
        -                      "properties": {},
        -                      "type": "object"
        -                    }
        -                  },
        -                  "type": "object"
        -                }
        -              ]
        -            },
        -            {
        -              "properties": {
        -                "name": {
        -                  "description": "Name of the header or environment variable.",
        -                  "type": "string"
        -                }
        -              },
        -              "required": [
        -                "name"
        -              ],
        -              "type": "object"
        -            }
        -          ]
        -        },
        -        "type": "array"
        -      },
        -      "type": {
        -        "description": "Transport type",
        -        "enum": [
        -          "streamable-http"
        -        ],
        -        "type": "string"
        -      },
        -      "url": {
        -        "description": "URL template for the streamable-http transport. Variables in {curly_braces} are resolved based on context: In Package context, they reference argument valueHints, argument names, or environment variable names from the parent Package. In Remote context, they reference variables from the transport's 'variables' object. After variable substitution, this should produce a valid URI.",
        -        "pattern": "^https?://[^\\s]+$",
        -        "type": "string"
        -      }
        -    },
        -    "required": [
        -      "type",
        -      "url"
        -    ],
        -    "type": "object"
        -  },
        -  {
        -    "properties": {
        -      "headers": {
        -        "description": "HTTP headers to include",
        -        "items": {
        -          "allOf": [
        -            {
        -              "allOf": [
        -                {
        -                  "properties": {
        -                    "choices": {
        -                      "description": "A list of possible values for the input. If provided, the user must select one of these values.",
        -                      "items": {
        -                        "type": "string"
        -                      },
        -                      "type": "array"
        -                    },
        -                    "default": {
        -                      "description": "The default value for the input.  This should be a valid value for the input.  If you want to provide input examples or guidance, use the `placeholder` field instead.",
        -                      "type": "string"
        -                    },
        -                    "description": {
        -                      "description": "A description of the input, which clients can use to provide context to the user.",
        -                      "type": "string"
        -                    },
        -                    "format": {
        -                      "description": "Specifies the input format. Supported values include `filepath`, which should be interpreted as a file on the user's filesystem.\n\nWhen the input is converted to a string, booleans should be represented by the strings \"true\" and \"false\", and numbers should be represented as decimal values.",
        -                      "enum": [
        -                        "string",
        -                        "number",
        -                        "boolean",
        -                        "filepath"
        -                      ],
        -                      "type": "string"
        -                    },
        -                    "isRequired": {
        -                      "type": "boolean"
        -                    },
        -                    "isSecret": {
        -                      "description": "Indicates whether the input is a secret value (e.g., password, token). If true, clients should handle the value securely.",
        -                      "type": "boolean"
        -                    },
        -                    "placeholder": {
        -                      "description": "A placeholder for the input to be displaying during configuration. This is used to provide examples or guidance about the expected form or content of the input.",
        -                      "type": "string"
        -                    },
        -                    "value": {
        -                      "description": "The value for the input. If this is not set, the user may be prompted to provide a value. If a value is set, it should not be configurable by end users.\n\nIdentifiers wrapped in `{curly_braces}` will be replaced with the corresponding properties from the input `variables` map. If an identifier in braces is not found in `variables`, or if `variables` is not provided, the `{curly_braces}` substring should remain unchanged.\n",
        -                      "type": "string"
        -                    }
        -                  },
        -                  "type": "object"
        -                },
        -                {
        -                  "properties": {
        -                    "variables": {
        -                      "additionalProperties": {
        -                        "$ref": "#/components/schemas/Input"
        -                      },
        -                      "description": "A map of variable names to their values. Keys in the input `value` that are wrapped in `{curly_braces}` will be replaced with the corresponding variable values.",
        -                      "properties": {},
        -                      "type": "object"
        -                    }
        -                  },
        -                  "type": "object"
        -                }
        -              ]
        -            },
        -            {
        -              "properties": {
        -                "name": {
        -                  "description": "Name of the header or environment variable.",
        -                  "type": "string"
        -                }
        -              },
        -              "required": [
        -                "name"
        -              ],
        -              "type": "object"
        -            }
        -          ]
        -        },
        -        "type": "array"
        -      },
        -      "type": {
        -        "description": "Transport type",
        -        "enum": [
        -          "sse"
        -        ],
        -        "type": "string"
        -      },
        -      "url": {
        -        "description": "Server-Sent Events endpoint URL template. Variables in {curly_braces} are resolved based on context: In Package context, they reference argument valueHints, argument names, or environment variable names from the parent Package. In Remote context, they reference variables from the transport's 'variables' object. After variable substitution, this should produce a valid URI.",
        -        "pattern": "^https?://[^\\s]+$",
        -        "type": "string"
        -      }
        -    },
        -    "required": [
        -      "type",
        -      "url"
        -    ],
        -    "type": "object"
        -  }
        -]New value: +[
        +  {
        +    "properties": {
        +      "type": {
        +        "description": "Transport type",
        +        "enum": [
        +          "stdio"
        +        ],
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "properties": {
        +      "headers": {
        +        "description": "HTTP headers to include",
        +        "items": {
        +          "allOf": [
        +            {
        +              "allOf": [
        +                {
        +                  "properties": {
        +                    "choices": {
        +                      "description": "A list of possible values for the input. If provided, the user must select one of these values.",
        +                      "items": {
        +                        "type": "string"
        +                      },
        +                      "type": "array"
        +                    },
        +                    "default": {
        +                      "description": "The default value for the input.  This should be a valid value for the input.  If you want to provide input examples or guidance, use the `placeholder` field instead.",
        +                      "type": "string"
        +                    },
        +                    "description": {
        +                      "description": "A description of the input, which clients can use to provide context to the user.",
        +                      "type": "string"
        +                    },
        +                    "format": {
        +                      "description": "Specifies the input format. Supported values include `filepath`, which should be interpreted as a file on the user's filesystem.\n\nWhen the input is converted to a string, booleans should be represented by the strings \"true\" and \"false\", and numbers should be represented as decimal values.",
        +                      "enum": [
        +                        "string",
        +                        "number",
        +                        "boolean",
        +                        "filepath"
        +                      ],
        +                      "type": "string"
        +                    },
        +                    "isRequired": {
        +                      "type": "boolean"
        +                    },
        +                    "isSecret": {
        +                      "description": "Indicates whether the input is a secret value (e.g., password, token). If true, clients should handle the value securely.",
        +                      "type": "boolean"
        +                    },
        +                    "placeholder": {
        +                      "description": "A placeholder for the input to be displaying during configuration. This is used to provide examples or guidance about the expected form or content of the input.",
        +                      "type": "string"
        +                    },
        +                    "value": {
        +                      "description": "The value for the input. If this is not set, the user may be prompted to provide a value. If a value is set, it should not be configurable by end users.\n\nIdentifiers wrapped in `{curly_braces}` will be replaced with the corresponding properties from the input `variables` map. If an identifier in braces is not found in `variables`, or if `variables` is not provided, the `{curly_braces}` substring should remain unchanged.\n",
        +                      "type": "string"
        +                    }
        +                  },
        +                  "type": "object"
        +                },
        +                {
        +                  "properties": {
        +                    "variables": {
        +                      "additionalProperties": {
        +                        "$ref": "#/components/schemas/Input"
        +                      },
        +                      "description": "A map of variable names to their values. Keys in the input `value` that are wrapped in `{curly_braces}` will be replaced with the corresponding variable values.",
        +                      "properties": {},
        +                      "type": "object"
        +                    }
        +                  },
        +                  "type": "object"
        +                }
        +              ]
        +            },
        +            {
        +              "properties": {
        +                "name": {
        +                  "description": "Name of the header or environment variable.",
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "name"
        +              ],
        +              "type": "object"
        +            }
        +          ]
        +        },
        +        "type": "array"
        +      },
        +      "type": {
        +        "description": "Transport type",
        +        "enum": [
        +          "streamable-http"
        +        ],
        +        "type": "string"
        +      },
        +      "url": {
        +        "description": "URL template for the streamable-http transport. Must start with http://, https://, or a template variable (e.g., {baseUrl}). Variables in {curly_braces} are resolved based on context: In Package context, they reference argument valueHints, argument names, or environment variable names from the parent Package. In Remote context, they reference variables from the transport's 'variables' object. After variable substitution, this should produce a valid URI.",
        +        "pattern": "^(https?://[^\\s]+|\\{[a-zA-Z_][a-zA-Z0-9_]*\\}[^\\s]*)$",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type",
        +      "url"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "properties": {
        +      "headers": {
        +        "description": "HTTP headers to include",
        +        "items": {
        +          "allOf": [
        +            {
        +              "allOf": [
        +                {
        +                  "properties": {
        +                    "choices": {
        +                      "description": "A list of possible values for the input. If provided, the user must select one of these values.",
        +                      "items": {
        +                        "type": "string"
        +                      },
        +                      "type": "array"
        +                    },
        +                    "default": {
        +                      "description": "The default value for the input.  This should be a valid value for the input.  If you want to provide input examples or guidance, use the `placeholder` field instead.",
        +                      "type": "string"
        +                    },
        +                    "description": {
        +                      "description": "A description of the input, which clients can use to provide context to the user.",
        +                      "type": "string"
        +                    },
        +                    "format": {
        +                      "description": "Specifies the input format. Supported values include `filepath`, which should be interpreted as a file on the user's filesystem.\n\nWhen the input is converted to a string, booleans should be represented by the strings \"true\" and \"false\", and numbers should be represented as decimal values.",
        +                      "enum": [
        +                        "string",
        +                        "number",
        +                        "boolean",
        +                        "filepath"
        +                      ],
        +                      "type": "string"
        +                    },
        +                    "isRequired": {
        +                      "type": "boolean"
        +                    },
        +                    "isSecret": {
        +                      "description": "Indicates whether the input is a secret value (e.g., password, token). If true, clients should handle the value securely.",
        +                      "type": "boolean"
        +                    },
        +                    "placeholder": {
        +                      "description": "A placeholder for the input to be displaying during configuration. This is used to provide examples or guidance about the expected form or content of the input.",
        +                      "type": "string"
        +                    },
        +                    "value": {
        +                      "description": "The value for the input. If this is not set, the user may be prompted to provide a value. If a value is set, it should not be configurable by end users.\n\nIdentifiers wrapped in `{curly_braces}` will be replaced with the corresponding properties from the input `variables` map. If an identifier in braces is not found in `variables`, or if `variables` is not provided, the `{curly_braces}` substring should remain unchanged.\n",
        +                      "type": "string"
        +                    }
        +                  },
        +                  "type": "object"
        +                },
        +                {
        +                  "properties": {
        +                    "variables": {
        +                      "additionalProperties": {
        +                        "$ref": "#/components/schemas/Input"
        +                      },
        +                      "description": "A map of variable names to their values. Keys in the input `value` that are wrapped in `{curly_braces}` will be replaced with the corresponding variable values.",
        +                      "properties": {},
        +                      "type": "object"
        +                    }
        +                  },
        +                  "type": "object"
        +                }
        +              ]
        +            },
        +            {
        +              "properties": {
        +                "name": {
        +                  "description": "Name of the header or environment variable.",
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "name"
        +              ],
        +              "type": "object"
        +            }
        +          ]
        +        },
        +        "type": "array"
        +      },
        +      "type": {
        +        "description": "Transport type",
        +        "enum": [
        +          "sse"
        +        ],
        +        "type": "string"
        +      },
        +      "url": {
        +        "description": "Server-Sent Events endpoint URL template. Must start with http://, https://, or a template variable (e.g., {baseUrl}). Variables in {curly_braces} are resolved based on context: In Package context, they reference argument valueHints, argument names, or environment variable names from the parent Package. In Remote context, they reference variables from the transport's 'variables' object. After variable substitution, this should produce a valid URI.",
        +        "pattern": "^(https?://[^\\s]+|\\{[a-zA-Z_][a-zA-Z0-9_]*\\}[^\\s]*)$",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type",
        +      "url"
        +    ],
        +    "type": "object"
        +  }
        +]
    • ChangedputV01ServersServerNameVersionsVersion1 field changed
      • changedInput schema / properties / undefinedBody / properties / packages / items / properties / transport / anyOf
        Previous value: -[
        -  {
        -    "properties": {
        -      "type": {
        -        "description": "Transport type",
        -        "enum": [
        -          "stdio"
        -        ],
        -        "type": "string"
        -      }
        -    },
        -    "required": [
        -      "type"
        -    ],
        -    "type": "object"
        -  },
        -  {
        -    "properties": {
        -      "headers": {
        -        "description": "HTTP headers to include",
        -        "items": {
        -          "allOf": [
        -            {
        -              "allOf": [
        -                {
        -                  "properties": {
        -                    "choices": {
        -                      "description": "A list of possible values for the input. If provided, the user must select one of these values.",
        -                      "items": {
        -                        "type": "string"
        -                      },
        -                      "type": "array"
        -                    },
        -                    "default": {
        -                      "description": "The default value for the input.  This should be a valid value for the input.  If you want to provide input examples or guidance, use the `placeholder` field instead.",
        -                      "type": "string"
        -                    },
        -                    "description": {
        -                      "description": "A description of the input, which clients can use to provide context to the user.",
        -                      "type": "string"
        -                    },
        -                    "format": {
        -                      "description": "Specifies the input format. Supported values include `filepath`, which should be interpreted as a file on the user's filesystem.\n\nWhen the input is converted to a string, booleans should be represented by the strings \"true\" and \"false\", and numbers should be represented as decimal values.",
        -                      "enum": [
        -                        "string",
        -                        "number",
        -                        "boolean",
        -                        "filepath"
        -                      ],
        -                      "type": "string"
        -                    },
        -                    "isRequired": {
        -                      "type": "boolean"
        -                    },
        -                    "isSecret": {
        -                      "description": "Indicates whether the input is a secret value (e.g., password, token). If true, clients should handle the value securely.",
        -                      "type": "boolean"
        -                    },
        -                    "placeholder": {
        -                      "description": "A placeholder for the input to be displaying during configuration. This is used to provide examples or guidance about the expected form or content of the input.",
        -                      "type": "string"
        -                    },
        -                    "value": {
        -                      "description": "The value for the input. If this is not set, the user may be prompted to provide a value. If a value is set, it should not be configurable by end users.\n\nIdentifiers wrapped in `{curly_braces}` will be replaced with the corresponding properties from the input `variables` map. If an identifier in braces is not found in `variables`, or if `variables` is not provided, the `{curly_braces}` substring should remain unchanged.\n",
        -                      "type": "string"
        -                    }
        -                  },
        -                  "type": "object"
        -                },
        -                {
        -                  "properties": {
        -                    "variables": {
        -                      "additionalProperties": {
        -                        "$ref": "#/components/schemas/Input"
        -                      },
        -                      "description": "A map of variable names to their values. Keys in the input `value` that are wrapped in `{curly_braces}` will be replaced with the corresponding variable values.",
        -                      "properties": {},
        -                      "type": "object"
        -                    }
        -                  },
        -                  "type": "object"
        -                }
        -              ]
        -            },
        -            {
        -              "properties": {
        -                "name": {
        -                  "description": "Name of the header or environment variable.",
        -                  "type": "string"
        -                }
        -              },
        -              "required": [
        -                "name"
        -              ],
        -              "type": "object"
        -            }
        -          ]
        -        },
        -        "type": "array"
        -      },
        -      "type": {
        -        "description": "Transport type",
        -        "enum": [
        -          "streamable-http"
        -        ],
        -        "type": "string"
        -      },
        -      "url": {
        -        "description": "URL template for the streamable-http transport. Variables in {curly_braces} are resolved based on context: In Package context, they reference argument valueHints, argument names, or environment variable names from the parent Package. In Remote context, they reference variables from the transport's 'variables' object. After variable substitution, this should produce a valid URI.",
        -        "pattern": "^https?://[^\\s]+$",
        -        "type": "string"
        -      }
        -    },
        -    "required": [
        -      "type",
        -      "url"
        -    ],
        -    "type": "object"
        -  },
        -  {
        -    "properties": {
        -      "headers": {
        -        "description": "HTTP headers to include",
        -        "items": {
        -          "allOf": [
        -            {
        -              "allOf": [
        -                {
        -                  "properties": {
        -                    "choices": {
        -                      "description": "A list of possible values for the input. If provided, the user must select one of these values.",
        -                      "items": {
        -                        "type": "string"
        -                      },
        -                      "type": "array"
        -                    },
        -                    "default": {
        -                      "description": "The default value for the input.  This should be a valid value for the input.  If you want to provide input examples or guidance, use the `placeholder` field instead.",
        -                      "type": "string"
        -                    },
        -                    "description": {
        -                      "description": "A description of the input, which clients can use to provide context to the user.",
        -                      "type": "string"
        -                    },
        -                    "format": {
        -                      "description": "Specifies the input format. Supported values include `filepath`, which should be interpreted as a file on the user's filesystem.\n\nWhen the input is converted to a string, booleans should be represented by the strings \"true\" and \"false\", and numbers should be represented as decimal values.",
        -                      "enum": [
        -                        "string",
        -                        "number",
        -                        "boolean",
        -                        "filepath"
        -                      ],
        -                      "type": "string"
        -                    },
        -                    "isRequired": {
        -                      "type": "boolean"
        -                    },
        -                    "isSecret": {
        -                      "description": "Indicates whether the input is a secret value (e.g., password, token). If true, clients should handle the value securely.",
        -                      "type": "boolean"
        -                    },
        -                    "placeholder": {
        -                      "description": "A placeholder for the input to be displaying during configuration. This is used to provide examples or guidance about the expected form or content of the input.",
        -                      "type": "string"
        -                    },
        -                    "value": {
        -                      "description": "The value for the input. If this is not set, the user may be prompted to provide a value. If a value is set, it should not be configurable by end users.\n\nIdentifiers wrapped in `{curly_braces}` will be replaced with the corresponding properties from the input `variables` map. If an identifier in braces is not found in `variables`, or if `variables` is not provided, the `{curly_braces}` substring should remain unchanged.\n",
        -                      "type": "string"
        -                    }
        -                  },
        -                  "type": "object"
        -                },
        -                {
        -                  "properties": {
        -                    "variables": {
        -                      "additionalProperties": {
        -                        "$ref": "#/components/schemas/Input"
        -                      },
        -                      "description": "A map of variable names to their values. Keys in the input `value` that are wrapped in `{curly_braces}` will be replaced with the corresponding variable values.",
        -                      "properties": {},
        -                      "type": "object"
        -                    }
        -                  },
        -                  "type": "object"
        -                }
        -              ]
        -            },
        -            {
        -              "properties": {
        -                "name": {
        -                  "description": "Name of the header or environment variable.",
        -                  "type": "string"
        -                }
        -              },
        -              "required": [
        -                "name"
        -              ],
        -              "type": "object"
        -            }
        -          ]
        -        },
        -        "type": "array"
        -      },
        -      "type": {
        -        "description": "Transport type",
        -        "enum": [
        -          "sse"
        -        ],
        -        "type": "string"
        -      },
        -      "url": {
        -        "description": "Server-Sent Events endpoint URL template. Variables in {curly_braces} are resolved based on context: In Package context, they reference argument valueHints, argument names, or environment variable names from the parent Package. In Remote context, they reference variables from the transport's 'variables' object. After variable substitution, this should produce a valid URI.",
        -        "pattern": "^https?://[^\\s]+$",
        -        "type": "string"
        -      }
        -    },
        -    "required": [
        -      "type",
        -      "url"
        -    ],
        -    "type": "object"
        -  }
        -]New value: +[
        +  {
        +    "properties": {
        +      "type": {
        +        "description": "Transport type",
        +        "enum": [
        +          "stdio"
        +        ],
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "properties": {
        +      "headers": {
        +        "description": "HTTP headers to include",
        +        "items": {
        +          "allOf": [
        +            {
        +              "allOf": [
        +                {
        +                  "properties": {
        +                    "choices": {
        +                      "description": "A list of possible values for the input. If provided, the user must select one of these values.",
        +                      "items": {
        +                        "type": "string"
        +                      },
        +                      "type": "array"
        +                    },
        +                    "default": {
        +                      "description": "The default value for the input.  This should be a valid value for the input.  If you want to provide input examples or guidance, use the `placeholder` field instead.",
        +                      "type": "string"
        +                    },
        +                    "description": {
        +                      "description": "A description of the input, which clients can use to provide context to the user.",
        +                      "type": "string"
        +                    },
        +                    "format": {
        +                      "description": "Specifies the input format. Supported values include `filepath`, which should be interpreted as a file on the user's filesystem.\n\nWhen the input is converted to a string, booleans should be represented by the strings \"true\" and \"false\", and numbers should be represented as decimal values.",
        +                      "enum": [
        +                        "string",
        +                        "number",
        +                        "boolean",
        +                        "filepath"
        +                      ],
        +                      "type": "string"
        +                    },
        +                    "isRequired": {
        +                      "type": "boolean"
        +                    },
        +                    "isSecret": {
        +                      "description": "Indicates whether the input is a secret value (e.g., password, token). If true, clients should handle the value securely.",
        +                      "type": "boolean"
        +                    },
        +                    "placeholder": {
        +                      "description": "A placeholder for the input to be displaying during configuration. This is used to provide examples or guidance about the expected form or content of the input.",
        +                      "type": "string"
        +                    },
        +                    "value": {
        +                      "description": "The value for the input. If this is not set, the user may be prompted to provide a value. If a value is set, it should not be configurable by end users.\n\nIdentifiers wrapped in `{curly_braces}` will be replaced with the corresponding properties from the input `variables` map. If an identifier in braces is not found in `variables`, or if `variables` is not provided, the `{curly_braces}` substring should remain unchanged.\n",
        +                      "type": "string"
        +                    }
        +                  },
        +                  "type": "object"
        +                },
        +                {
        +                  "properties": {
        +                    "variables": {
        +                      "additionalProperties": {
        +                        "$ref": "#/components/schemas/Input"
        +                      },
        +                      "description": "A map of variable names to their values. Keys in the input `value` that are wrapped in `{curly_braces}` will be replaced with the corresponding variable values.",
        +                      "properties": {},
        +                      "type": "object"
        +                    }
        +                  },
        +                  "type": "object"
        +                }
        +              ]
        +            },
        +            {
        +              "properties": {
        +                "name": {
        +                  "description": "Name of the header or environment variable.",
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "name"
        +              ],
        +              "type": "object"
        +            }
        +          ]
        +        },
        +        "type": "array"
        +      },
        +      "type": {
        +        "description": "Transport type",
        +        "enum": [
        +          "streamable-http"
        +        ],
        +        "type": "string"
        +      },
        +      "url": {
        +        "description": "URL template for the streamable-http transport. Must start with http://, https://, or a template variable (e.g., {baseUrl}). Variables in {curly_braces} are resolved based on context: In Package context, they reference argument valueHints, argument names, or environment variable names from the parent Package. In Remote context, they reference variables from the transport's 'variables' object. After variable substitution, this should produce a valid URI.",
        +        "pattern": "^(https?://[^\\s]+|\\{[a-zA-Z_][a-zA-Z0-9_]*\\}[^\\s]*)$",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type",
        +      "url"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "properties": {
        +      "headers": {
        +        "description": "HTTP headers to include",
        +        "items": {
        +          "allOf": [
        +            {
        +              "allOf": [
        +                {
        +                  "properties": {
        +                    "choices": {
        +                      "description": "A list of possible values for the input. If provided, the user must select one of these values.",
        +                      "items": {
        +                        "type": "string"
        +                      },
        +                      "type": "array"
        +                    },
        +                    "default": {
        +                      "description": "The default value for the input.  This should be a valid value for the input.  If you want to provide input examples or guidance, use the `placeholder` field instead.",
        +                      "type": "string"
        +                    },
        +                    "description": {
        +                      "description": "A description of the input, which clients can use to provide context to the user.",
        +                      "type": "string"
        +                    },
        +                    "format": {
        +                      "description": "Specifies the input format. Supported values include `filepath`, which should be interpreted as a file on the user's filesystem.\n\nWhen the input is converted to a string, booleans should be represented by the strings \"true\" and \"false\", and numbers should be represented as decimal values.",
        +                      "enum": [
        +                        "string",
        +                        "number",
        +                        "boolean",
        +                        "filepath"
        +                      ],
        +                      "type": "string"
        +                    },
        +                    "isRequired": {
        +                      "type": "boolean"
        +                    },
        +                    "isSecret": {
        +                      "description": "Indicates whether the input is a secret value (e.g., password, token). If true, clients should handle the value securely.",
        +                      "type": "boolean"
        +                    },
        +                    "placeholder": {
        +                      "description": "A placeholder for the input to be displaying during configuration. This is used to provide examples or guidance about the expected form or content of the input.",
        +                      "type": "string"
        +                    },
        +                    "value": {
        +                      "description": "The value for the input. If this is not set, the user may be prompted to provide a value. If a value is set, it should not be configurable by end users.\n\nIdentifiers wrapped in `{curly_braces}` will be replaced with the corresponding properties from the input `variables` map. If an identifier in braces is not found in `variables`, or if `variables` is not provided, the `{curly_braces}` substring should remain unchanged.\n",
        +                      "type": "string"
        +                    }
        +                  },
        +                  "type": "object"
        +                },
        +                {
        +                  "properties": {
        +                    "variables": {
        +                      "additionalProperties": {
        +                        "$ref": "#/components/schemas/Input"
        +                      },
        +                      "description": "A map of variable names to their values. Keys in the input `value` that are wrapped in `{curly_braces}` will be replaced with the corresponding variable values.",
        +                      "properties": {},
        +                      "type": "object"
        +                    }
        +                  },
        +                  "type": "object"
        +                }
        +              ]
        +            },
        +            {
        +              "properties": {
        +                "name": {
        +                  "description": "Name of the header or environment variable.",
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "name"
        +              ],
        +              "type": "object"
        +            }
        +          ]
        +        },
        +        "type": "array"
        +      },
        +      "type": {
        +        "description": "Transport type",
        +        "enum": [
        +          "sse"
        +        ],
        +        "type": "string"
        +      },
        +      "url": {
        +        "description": "Server-Sent Events endpoint URL template. Must start with http://, https://, or a template variable (e.g., {baseUrl}). Variables in {curly_braces} are resolved based on context: In Package context, they reference argument valueHints, argument names, or environment variable names from the parent Package. In Remote context, they reference variables from the transport's 'variables' object. After variable substitution, this should produce a valid URI.",
        +        "pattern": "^(https?://[^\\s]+|\\{[a-zA-Z_][a-zA-Z0-9_]*\\}[^\\s]*)$",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type",
        +      "url"
        +    ],
        +    "type": "object"
        +  }
        +]
  4. 2 tool updates
    • ChangedpostV01Publish1 field changed
      • changedInput schema / properties / undefinedBody / properties / packages / items / properties / transport / anyOf
        Previous value: -[
        -  {
        -    "properties": {
        -      "type": {
        -        "description": "Transport type",
        -        "enum": [
        -          "stdio"
        -        ],
        -        "type": "string"
        -      }
        -    },
        -    "required": [
        -      "type"
        -    ],
        -    "type": "object"
        -  },
        -  {
        -    "properties": {
        -      "headers": {
        -        "description": "HTTP headers to include",
        -        "items": {
        -          "allOf": [
        -            {
        -              "allOf": [
        -                {
        -                  "properties": {
        -                    "choices": {
        -                      "description": "A list of possible values for the input. If provided, the user must select one of these values.",
        -                      "items": {
        -                        "type": "string"
        -                      },
        -                      "type": "array"
        -                    },
        -                    "default": {
        -                      "description": "The default value for the input.  This should be a valid value for the input.  If you want to provide input examples or guidance, use the `placeholder` field instead.",
        -                      "type": "string"
        -                    },
        -                    "description": {
        -                      "description": "A description of the input, which clients can use to provide context to the user.",
        -                      "type": "string"
        -                    },
        -                    "format": {
        -                      "description": "Specifies the input format. Supported values include `filepath`, which should be interpreted as a file on the user's filesystem.\n\nWhen the input is converted to a string, booleans should be represented by the strings \"true\" and \"false\", and numbers should be represented as decimal values.",
        -                      "enum": [
        -                        "string",
        -                        "number",
        -                        "boolean",
        -                        "filepath"
        -                      ],
        -                      "type": "string"
        -                    },
        -                    "isRequired": {
        -                      "type": "boolean"
        -                    },
        -                    "isSecret": {
        -                      "description": "Indicates whether the input is a secret value (e.g., password, token). If true, clients should handle the value securely.",
        -                      "type": "boolean"
        -                    },
        -                    "placeholder": {
        -                      "description": "A placeholder for the input to be displaying during configuration. This is used to provide examples or guidance about the expected form or content of the input.",
        -                      "type": "string"
        -                    },
        -                    "value": {
        -                      "description": "The value for the input. If this is not set, the user may be prompted to provide a value. If a value is set, it should not be configurable by end users.\n\nIdentifiers wrapped in `{curly_braces}` will be replaced with the corresponding properties from the input `variables` map. If an identifier in braces is not found in `variables`, or if `variables` is not provided, the `{curly_braces}` substring should remain unchanged.\n",
        -                      "type": "string"
        -                    }
        -                  },
        -                  "type": "object"
        -                },
        -                {
        -                  "properties": {
        -                    "variables": {
        -                      "additionalProperties": {
        -                        "$ref": "#/components/schemas/Input"
        -                      },
        -                      "description": "A map of variable names to their values. Keys in the input `value` that are wrapped in `{curly_braces}` will be replaced with the corresponding variable values.",
        -                      "properties": {},
        -                      "type": "object"
        -                    }
        -                  },
        -                  "type": "object"
        -                }
        -              ]
        -            },
        -            {
        -              "properties": {
        -                "name": {
        -                  "description": "Name of the header or environment variable.",
        -                  "type": "string"
        -                }
        -              },
        -              "required": [
        -                "name"
        -              ],
        -              "type": "object"
        -            }
        -          ]
        -        },
        -        "type": "array"
        -      },
        -      "type": {
        -        "description": "Transport type",
        -        "enum": [
        -          "streamable-http"
        -        ],
        -        "type": "string"
        -      },
        -      "url": {
        -        "description": "URL template for the streamable-http transport. Must start with http://, https://, or a template variable (e.g., {baseUrl}). Variables in {curly_braces} are resolved based on context: In Package context, they reference argument valueHints, argument names, or environment variable names from the parent Package. In Remote context, they reference variables from the transport's 'variables' object. After variable substitution, this should produce a valid URI.",
        -        "pattern": "^(https?://[^\\s]+|\\{[a-zA-Z_][a-zA-Z0-9_]*\\}[^\\s]*)$",
        -        "type": "string"
        -      }
        -    },
        -    "required": [
        -      "type",
        -      "url"
        -    ],
        -    "type": "object"
        -  },
        -  {
        -    "properties": {
        -      "headers": {
        -        "description": "HTTP headers to include",
        -        "items": {
        -          "allOf": [
        -            {
        -              "allOf": [
        -                {
        -                  "properties": {
        -                    "choices": {
        -                      "description": "A list of possible values for the input. If provided, the user must select one of these values.",
        -                      "items": {
        -                        "type": "string"
        -                      },
        -                      "type": "array"
        -                    },
        -                    "default": {
        -                      "description": "The default value for the input.  This should be a valid value for the input.  If you want to provide input examples or guidance, use the `placeholder` field instead.",
        -                      "type": "string"
        -                    },
        -                    "description": {
        -                      "description": "A description of the input, which clients can use to provide context to the user.",
        -                      "type": "string"
        -                    },
        -                    "format": {
        -                      "description": "Specifies the input format. Supported values include `filepath`, which should be interpreted as a file on the user's filesystem.\n\nWhen the input is converted to a string, booleans should be represented by the strings \"true\" and \"false\", and numbers should be represented as decimal values.",
        -                      "enum": [
        -                        "string",
        -                        "number",
        -                        "boolean",
        -                        "filepath"
        -                      ],
        -                      "type": "string"
        -                    },
        -                    "isRequired": {
        -                      "type": "boolean"
        -                    },
        -                    "isSecret": {
        -                      "description": "Indicates whether the input is a secret value (e.g., password, token). If true, clients should handle the value securely.",
        -                      "type": "boolean"
        -                    },
        -                    "placeholder": {
        -                      "description": "A placeholder for the input to be displaying during configuration. This is used to provide examples or guidance about the expected form or content of the input.",
        -                      "type": "string"
        -                    },
        -                    "value": {
        -                      "description": "The value for the input. If this is not set, the user may be prompted to provide a value. If a value is set, it should not be configurable by end users.\n\nIdentifiers wrapped in `{curly_braces}` will be replaced with the corresponding properties from the input `variables` map. If an identifier in braces is not found in `variables`, or if `variables` is not provided, the `{curly_braces}` substring should remain unchanged.\n",
        -                      "type": "string"
        -                    }
        -                  },
        -                  "type": "object"
        -                },
        -                {
        -                  "properties": {
        -                    "variables": {
        -                      "additionalProperties": {
        -                        "$ref": "#/components/schemas/Input"
        -                      },
        -                      "description": "A map of variable names to their values. Keys in the input `value` that are wrapped in `{curly_braces}` will be replaced with the corresponding variable values.",
        -                      "properties": {},
        -                      "type": "object"
        -                    }
        -                  },
        -                  "type": "object"
        -                }
        -              ]
        -            },
        -            {
        -              "properties": {
        -                "name": {
        -                  "description": "Name of the header or environment variable.",
        -                  "type": "string"
        -                }
        -              },
        -              "required": [
        -                "name"
        -              ],
        -              "type": "object"
        -            }
        -          ]
        -        },
        -        "type": "array"
        -      },
        -      "type": {
        -        "description": "Transport type",
        -        "enum": [
        -          "sse"
        -        ],
        -        "type": "string"
        -      },
        -      "url": {
        -        "description": "Server-Sent Events endpoint URL template. Must start with http://, https://, or a template variable (e.g., {baseUrl}). Variables in {curly_braces} are resolved based on context: In Package context, they reference argument valueHints, argument names, or environment variable names from the parent Package. In Remote context, they reference variables from the transport's 'variables' object. After variable substitution, this should produce a valid URI.",
        -        "pattern": "^(https?://[^\\s]+|\\{[a-zA-Z_][a-zA-Z0-9_]*\\}[^\\s]*)$",
        -        "type": "string"
        -      }
        -    },
        -    "required": [
        -      "type",
        -      "url"
        -    ],
        -    "type": "object"
        -  }
        -]New value: +[
        +  {
        +    "properties": {
        +      "type": {
        +        "description": "Transport type",
        +        "enum": [
        +          "stdio"
        +        ],
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "properties": {
        +      "headers": {
        +        "description": "HTTP headers to include",
        +        "items": {
        +          "allOf": [
        +            {
        +              "allOf": [
        +                {
        +                  "properties": {
        +                    "choices": {
        +                      "description": "A list of possible values for the input. If provided, the user must select one of these values.",
        +                      "items": {
        +                        "type": "string"
        +                      },
        +                      "type": "array"
        +                    },
        +                    "default": {
        +                      "description": "The default value for the input.  This should be a valid value for the input.  If you want to provide input examples or guidance, use the `placeholder` field instead.",
        +                      "type": "string"
        +                    },
        +                    "description": {
        +                      "description": "A description of the input, which clients can use to provide context to the user.",
        +                      "type": "string"
        +                    },
        +                    "format": {
        +                      "description": "Specifies the input format. Supported values include `filepath`, which should be interpreted as a file on the user's filesystem.\n\nWhen the input is converted to a string, booleans should be represented by the strings \"true\" and \"false\", and numbers should be represented as decimal values.",
        +                      "enum": [
        +                        "string",
        +                        "number",
        +                        "boolean",
        +                        "filepath"
        +                      ],
        +                      "type": "string"
        +                    },
        +                    "isRequired": {
        +                      "type": "boolean"
        +                    },
        +                    "isSecret": {
        +                      "description": "Indicates whether the input is a secret value (e.g., password, token). If true, clients should handle the value securely.",
        +                      "type": "boolean"
        +                    },
        +                    "placeholder": {
        +                      "description": "A placeholder for the input to be displaying during configuration. This is used to provide examples or guidance about the expected form or content of the input.",
        +                      "type": "string"
        +                    },
        +                    "value": {
        +                      "description": "The value for the input. If this is not set, the user may be prompted to provide a value. If a value is set, it should not be configurable by end users.\n\nIdentifiers wrapped in `{curly_braces}` will be replaced with the corresponding properties from the input `variables` map. If an identifier in braces is not found in `variables`, or if `variables` is not provided, the `{curly_braces}` substring should remain unchanged.\n",
        +                      "type": "string"
        +                    }
        +                  },
        +                  "type": "object"
        +                },
        +                {
        +                  "properties": {
        +                    "variables": {
        +                      "additionalProperties": {
        +                        "$ref": "#/components/schemas/Input"
        +                      },
        +                      "description": "A map of variable names to their values. Keys in the input `value` that are wrapped in `{curly_braces}` will be replaced with the corresponding variable values.",
        +                      "properties": {},
        +                      "type": "object"
        +                    }
        +                  },
        +                  "type": "object"
        +                }
        +              ]
        +            },
        +            {
        +              "properties": {
        +                "name": {
        +                  "description": "Name of the header or environment variable.",
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "name"
        +              ],
        +              "type": "object"
        +            }
        +          ]
        +        },
        +        "type": "array"
        +      },
        +      "type": {
        +        "description": "Transport type",
        +        "enum": [
        +          "streamable-http"
        +        ],
        +        "type": "string"
        +      },
        +      "url": {
        +        "description": "URL template for the streamable-http transport. Variables in {curly_braces} are resolved based on context: In Package context, they reference argument valueHints, argument names, or environment variable names from the parent Package. In Remote context, they reference variables from the transport's 'variables' object. After variable substitution, this should produce a valid URI.",
        +        "pattern": "^https?://[^\\s]+$",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type",
        +      "url"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "properties": {
        +      "headers": {
        +        "description": "HTTP headers to include",
        +        "items": {
        +          "allOf": [
        +            {
        +              "allOf": [
        +                {
        +                  "properties": {
        +                    "choices": {
        +                      "description": "A list of possible values for the input. If provided, the user must select one of these values.",
        +                      "items": {
        +                        "type": "string"
        +                      },
        +                      "type": "array"
        +                    },
        +                    "default": {
        +                      "description": "The default value for the input.  This should be a valid value for the input.  If you want to provide input examples or guidance, use the `placeholder` field instead.",
        +                      "type": "string"
        +                    },
        +                    "description": {
        +                      "description": "A description of the input, which clients can use to provide context to the user.",
        +                      "type": "string"
        +                    },
        +                    "format": {
        +                      "description": "Specifies the input format. Supported values include `filepath`, which should be interpreted as a file on the user's filesystem.\n\nWhen the input is converted to a string, booleans should be represented by the strings \"true\" and \"false\", and numbers should be represented as decimal values.",
        +                      "enum": [
        +                        "string",
        +                        "number",
        +                        "boolean",
        +                        "filepath"
        +                      ],
        +                      "type": "string"
        +                    },
        +                    "isRequired": {
        +                      "type": "boolean"
        +                    },
        +                    "isSecret": {
        +                      "description": "Indicates whether the input is a secret value (e.g., password, token). If true, clients should handle the value securely.",
        +                      "type": "boolean"
        +                    },
        +                    "placeholder": {
        +                      "description": "A placeholder for the input to be displaying during configuration. This is used to provide examples or guidance about the expected form or content of the input.",
        +                      "type": "string"
        +                    },
        +                    "value": {
        +                      "description": "The value for the input. If this is not set, the user may be prompted to provide a value. If a value is set, it should not be configurable by end users.\n\nIdentifiers wrapped in `{curly_braces}` will be replaced with the corresponding properties from the input `variables` map. If an identifier in braces is not found in `variables`, or if `variables` is not provided, the `{curly_braces}` substring should remain unchanged.\n",
        +                      "type": "string"
        +                    }
        +                  },
        +                  "type": "object"
        +                },
        +                {
        +                  "properties": {
        +                    "variables": {
        +                      "additionalProperties": {
        +                        "$ref": "#/components/schemas/Input"
        +                      },
        +                      "description": "A map of variable names to their values. Keys in the input `value` that are wrapped in `{curly_braces}` will be replaced with the corresponding variable values.",
        +                      "properties": {},
        +                      "type": "object"
        +                    }
        +                  },
        +                  "type": "object"
        +                }
        +              ]
        +            },
        +            {
        +              "properties": {
        +                "name": {
        +                  "description": "Name of the header or environment variable.",
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "name"
        +              ],
        +              "type": "object"
        +            }
        +          ]
        +        },
        +        "type": "array"
        +      },
        +      "type": {
        +        "description": "Transport type",
        +        "enum": [
        +          "sse"
        +        ],
        +        "type": "string"
        +      },
        +      "url": {
        +        "description": "Server-Sent Events endpoint URL template. Variables in {curly_braces} are resolved based on context: In Package context, they reference argument valueHints, argument names, or environment variable names from the parent Package. In Remote context, they reference variables from the transport's 'variables' object. After variable substitution, this should produce a valid URI.",
        +        "pattern": "^https?://[^\\s]+$",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type",
        +      "url"
        +    ],
        +    "type": "object"
        +  }
        +]
    • ChangedputV01ServersServerNameVersionsVersion1 field changed
      • changedInput schema / properties / undefinedBody / properties / packages / items / properties / transport / anyOf
        Previous value: -[
        -  {
        -    "properties": {
        -      "type": {
        -        "description": "Transport type",
        -        "enum": [
        -          "stdio"
        -        ],
        -        "type": "string"
        -      }
        -    },
        -    "required": [
        -      "type"
        -    ],
        -    "type": "object"
        -  },
        -  {
        -    "properties": {
        -      "headers": {
        -        "description": "HTTP headers to include",
        -        "items": {
        -          "allOf": [
        -            {
        -              "allOf": [
        -                {
        -                  "properties": {
        -                    "choices": {
        -                      "description": "A list of possible values for the input. If provided, the user must select one of these values.",
        -                      "items": {
        -                        "type": "string"
        -                      },
        -                      "type": "array"
        -                    },
        -                    "default": {
        -                      "description": "The default value for the input.  This should be a valid value for the input.  If you want to provide input examples or guidance, use the `placeholder` field instead.",
        -                      "type": "string"
        -                    },
        -                    "description": {
        -                      "description": "A description of the input, which clients can use to provide context to the user.",
        -                      "type": "string"
        -                    },
        -                    "format": {
        -                      "description": "Specifies the input format. Supported values include `filepath`, which should be interpreted as a file on the user's filesystem.\n\nWhen the input is converted to a string, booleans should be represented by the strings \"true\" and \"false\", and numbers should be represented as decimal values.",
        -                      "enum": [
        -                        "string",
        -                        "number",
        -                        "boolean",
        -                        "filepath"
        -                      ],
        -                      "type": "string"
        -                    },
        -                    "isRequired": {
        -                      "type": "boolean"
        -                    },
        -                    "isSecret": {
        -                      "description": "Indicates whether the input is a secret value (e.g., password, token). If true, clients should handle the value securely.",
        -                      "type": "boolean"
        -                    },
        -                    "placeholder": {
        -                      "description": "A placeholder for the input to be displaying during configuration. This is used to provide examples or guidance about the expected form or content of the input.",
        -                      "type": "string"
        -                    },
        -                    "value": {
        -                      "description": "The value for the input. If this is not set, the user may be prompted to provide a value. If a value is set, it should not be configurable by end users.\n\nIdentifiers wrapped in `{curly_braces}` will be replaced with the corresponding properties from the input `variables` map. If an identifier in braces is not found in `variables`, or if `variables` is not provided, the `{curly_braces}` substring should remain unchanged.\n",
        -                      "type": "string"
        -                    }
        -                  },
        -                  "type": "object"
        -                },
        -                {
        -                  "properties": {
        -                    "variables": {
        -                      "additionalProperties": {
        -                        "$ref": "#/components/schemas/Input"
        -                      },
        -                      "description": "A map of variable names to their values. Keys in the input `value` that are wrapped in `{curly_braces}` will be replaced with the corresponding variable values.",
        -                      "properties": {},
        -                      "type": "object"
        -                    }
        -                  },
        -                  "type": "object"
        -                }
        -              ]
        -            },
        -            {
        -              "properties": {
        -                "name": {
        -                  "description": "Name of the header or environment variable.",
        -                  "type": "string"
        -                }
        -              },
        -              "required": [
        -                "name"
        -              ],
        -              "type": "object"
        -            }
        -          ]
        -        },
        -        "type": "array"
        -      },
        -      "type": {
        -        "description": "Transport type",
        -        "enum": [
        -          "streamable-http"
        -        ],
        -        "type": "string"
        -      },
        -      "url": {
        -        "description": "URL template for the streamable-http transport. Must start with http://, https://, or a template variable (e.g., {baseUrl}). Variables in {curly_braces} are resolved based on context: In Package context, they reference argument valueHints, argument names, or environment variable names from the parent Package. In Remote context, they reference variables from the transport's 'variables' object. After variable substitution, this should produce a valid URI.",
        -        "pattern": "^(https?://[^\\s]+|\\{[a-zA-Z_][a-zA-Z0-9_]*\\}[^\\s]*)$",
        -        "type": "string"
        -      }
        -    },
        -    "required": [
        -      "type",
        -      "url"
        -    ],
        -    "type": "object"
        -  },
        -  {
        -    "properties": {
        -      "headers": {
        -        "description": "HTTP headers to include",
        -        "items": {
        -          "allOf": [
        -            {
        -              "allOf": [
        -                {
        -                  "properties": {
        -                    "choices": {
        -                      "description": "A list of possible values for the input. If provided, the user must select one of these values.",
        -                      "items": {
        -                        "type": "string"
        -                      },
        -                      "type": "array"
        -                    },
        -                    "default": {
        -                      "description": "The default value for the input.  This should be a valid value for the input.  If you want to provide input examples or guidance, use the `placeholder` field instead.",
        -                      "type": "string"
        -                    },
        -                    "description": {
        -                      "description": "A description of the input, which clients can use to provide context to the user.",
        -                      "type": "string"
        -                    },
        -                    "format": {
        -                      "description": "Specifies the input format. Supported values include `filepath`, which should be interpreted as a file on the user's filesystem.\n\nWhen the input is converted to a string, booleans should be represented by the strings \"true\" and \"false\", and numbers should be represented as decimal values.",
        -                      "enum": [
        -                        "string",
        -                        "number",
        -                        "boolean",
        -                        "filepath"
        -                      ],
        -                      "type": "string"
        -                    },
        -                    "isRequired": {
        -                      "type": "boolean"
        -                    },
        -                    "isSecret": {
        -                      "description": "Indicates whether the input is a secret value (e.g., password, token). If true, clients should handle the value securely.",
        -                      "type": "boolean"
        -                    },
        -                    "placeholder": {
        -                      "description": "A placeholder for the input to be displaying during configuration. This is used to provide examples or guidance about the expected form or content of the input.",
        -                      "type": "string"
        -                    },
        -                    "value": {
        -                      "description": "The value for the input. If this is not set, the user may be prompted to provide a value. If a value is set, it should not be configurable by end users.\n\nIdentifiers wrapped in `{curly_braces}` will be replaced with the corresponding properties from the input `variables` map. If an identifier in braces is not found in `variables`, or if `variables` is not provided, the `{curly_braces}` substring should remain unchanged.\n",
        -                      "type": "string"
        -                    }
        -                  },
        -                  "type": "object"
        -                },
        -                {
        -                  "properties": {
        -                    "variables": {
        -                      "additionalProperties": {
        -                        "$ref": "#/components/schemas/Input"
        -                      },
        -                      "description": "A map of variable names to their values. Keys in the input `value` that are wrapped in `{curly_braces}` will be replaced with the corresponding variable values.",
        -                      "properties": {},
        -                      "type": "object"
        -                    }
        -                  },
        -                  "type": "object"
        -                }
        -              ]
        -            },
        -            {
        -              "properties": {
        -                "name": {
        -                  "description": "Name of the header or environment variable.",
        -                  "type": "string"
        -                }
        -              },
        -              "required": [
        -                "name"
        -              ],
        -              "type": "object"
        -            }
        -          ]
        -        },
        -        "type": "array"
        -      },
        -      "type": {
        -        "description": "Transport type",
        -        "enum": [
        -          "sse"
        -        ],
        -        "type": "string"
        -      },
        -      "url": {
        -        "description": "Server-Sent Events endpoint URL template. Must start with http://, https://, or a template variable (e.g., {baseUrl}). Variables in {curly_braces} are resolved based on context: In Package context, they reference argument valueHints, argument names, or environment variable names from the parent Package. In Remote context, they reference variables from the transport's 'variables' object. After variable substitution, this should produce a valid URI.",
        -        "pattern": "^(https?://[^\\s]+|\\{[a-zA-Z_][a-zA-Z0-9_]*\\}[^\\s]*)$",
        -        "type": "string"
        -      }
        -    },
        -    "required": [
        -      "type",
        -      "url"
        -    ],
        -    "type": "object"
        -  }
        -]New value: +[
        +  {
        +    "properties": {
        +      "type": {
        +        "description": "Transport type",
        +        "enum": [
        +          "stdio"
        +        ],
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "properties": {
        +      "headers": {
        +        "description": "HTTP headers to include",
        +        "items": {
        +          "allOf": [
        +            {
        +              "allOf": [
        +                {
        +                  "properties": {
        +                    "choices": {
        +                      "description": "A list of possible values for the input. If provided, the user must select one of these values.",
        +                      "items": {
        +                        "type": "string"
        +                      },
        +                      "type": "array"
        +                    },
        +                    "default": {
        +                      "description": "The default value for the input.  This should be a valid value for the input.  If you want to provide input examples or guidance, use the `placeholder` field instead.",
        +                      "type": "string"
        +                    },
        +                    "description": {
        +                      "description": "A description of the input, which clients can use to provide context to the user.",
        +                      "type": "string"
        +                    },
        +                    "format": {
        +                      "description": "Specifies the input format. Supported values include `filepath`, which should be interpreted as a file on the user's filesystem.\n\nWhen the input is converted to a string, booleans should be represented by the strings \"true\" and \"false\", and numbers should be represented as decimal values.",
        +                      "enum": [
        +                        "string",
        +                        "number",
        +                        "boolean",
        +                        "filepath"
        +                      ],
        +                      "type": "string"
        +                    },
        +                    "isRequired": {
        +                      "type": "boolean"
        +                    },
        +                    "isSecret": {
        +                      "description": "Indicates whether the input is a secret value (e.g., password, token). If true, clients should handle the value securely.",
        +                      "type": "boolean"
        +                    },
        +                    "placeholder": {
        +                      "description": "A placeholder for the input to be displaying during configuration. This is used to provide examples or guidance about the expected form or content of the input.",
        +                      "type": "string"
        +                    },
        +                    "value": {
        +                      "description": "The value for the input. If this is not set, the user may be prompted to provide a value. If a value is set, it should not be configurable by end users.\n\nIdentifiers wrapped in `{curly_braces}` will be replaced with the corresponding properties from the input `variables` map. If an identifier in braces is not found in `variables`, or if `variables` is not provided, the `{curly_braces}` substring should remain unchanged.\n",
        +                      "type": "string"
        +                    }
        +                  },
        +                  "type": "object"
        +                },
        +                {
        +                  "properties": {
        +                    "variables": {
        +                      "additionalProperties": {
        +                        "$ref": "#/components/schemas/Input"
        +                      },
        +                      "description": "A map of variable names to their values. Keys in the input `value` that are wrapped in `{curly_braces}` will be replaced with the corresponding variable values.",
        +                      "properties": {},
        +                      "type": "object"
        +                    }
        +                  },
        +                  "type": "object"
        +                }
        +              ]
        +            },
        +            {
        +              "properties": {
        +                "name": {
        +                  "description": "Name of the header or environment variable.",
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "name"
        +              ],
        +              "type": "object"
        +            }
        +          ]
        +        },
        +        "type": "array"
        +      },
        +      "type": {
        +        "description": "Transport type",
        +        "enum": [
        +          "streamable-http"
        +        ],
        +        "type": "string"
        +      },
        +      "url": {
        +        "description": "URL template for the streamable-http transport. Variables in {curly_braces} are resolved based on context: In Package context, they reference argument valueHints, argument names, or environment variable names from the parent Package. In Remote context, they reference variables from the transport's 'variables' object. After variable substitution, this should produce a valid URI.",
        +        "pattern": "^https?://[^\\s]+$",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type",
        +      "url"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "properties": {
        +      "headers": {
        +        "description": "HTTP headers to include",
        +        "items": {
        +          "allOf": [
        +            {
        +              "allOf": [
        +                {
        +                  "properties": {
        +                    "choices": {
        +                      "description": "A list of possible values for the input. If provided, the user must select one of these values.",
        +                      "items": {
        +                        "type": "string"
        +                      },
        +                      "type": "array"
        +                    },
        +                    "default": {
        +                      "description": "The default value for the input.  This should be a valid value for the input.  If you want to provide input examples or guidance, use the `placeholder` field instead.",
        +                      "type": "string"
        +                    },
        +                    "description": {
        +                      "description": "A description of the input, which clients can use to provide context to the user.",
        +                      "type": "string"
        +                    },
        +                    "format": {
        +                      "description": "Specifies the input format. Supported values include `filepath`, which should be interpreted as a file on the user's filesystem.\n\nWhen the input is converted to a string, booleans should be represented by the strings \"true\" and \"false\", and numbers should be represented as decimal values.",
        +                      "enum": [
        +                        "string",
        +                        "number",
        +                        "boolean",
        +                        "filepath"
        +                      ],
        +                      "type": "string"
        +                    },
        +                    "isRequired": {
        +                      "type": "boolean"
        +                    },
        +                    "isSecret": {
        +                      "description": "Indicates whether the input is a secret value (e.g., password, token). If true, clients should handle the value securely.",
        +                      "type": "boolean"
        +                    },
        +                    "placeholder": {
        +                      "description": "A placeholder for the input to be displaying during configuration. This is used to provide examples or guidance about the expected form or content of the input.",
        +                      "type": "string"
        +                    },
        +                    "value": {
        +                      "description": "The value for the input. If this is not set, the user may be prompted to provide a value. If a value is set, it should not be configurable by end users.\n\nIdentifiers wrapped in `{curly_braces}` will be replaced with the corresponding properties from the input `variables` map. If an identifier in braces is not found in `variables`, or if `variables` is not provided, the `{curly_braces}` substring should remain unchanged.\n",
        +                      "type": "string"
        +                    }
        +                  },
        +                  "type": "object"
        +                },
        +                {
        +                  "properties": {
        +                    "variables": {
        +                      "additionalProperties": {
        +                        "$ref": "#/components/schemas/Input"
        +                      },
        +                      "description": "A map of variable names to their values. Keys in the input `value` that are wrapped in `{curly_braces}` will be replaced with the corresponding variable values.",
        +                      "properties": {},
        +                      "type": "object"
        +                    }
        +                  },
        +                  "type": "object"
        +                }
        +              ]
        +            },
        +            {
        +              "properties": {
        +                "name": {
        +                  "description": "Name of the header or environment variable.",
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "name"
        +              ],
        +              "type": "object"
        +            }
        +          ]
        +        },
        +        "type": "array"
        +      },
        +      "type": {
        +        "description": "Transport type",
        +        "enum": [
        +          "sse"
        +        ],
        +        "type": "string"
        +      },
        +      "url": {
        +        "description": "Server-Sent Events endpoint URL template. Variables in {curly_braces} are resolved based on context: In Package context, they reference argument valueHints, argument names, or environment variable names from the parent Package. In Remote context, they reference variables from the transport's 'variables' object. After variable substitution, this should produce a valid URI.",
        +        "pattern": "^https?://[^\\s]+$",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type",
        +      "url"
        +    ],
        +    "type": "object"
        +  }
        +]
  5. 2 tool updates
    • ChangedpostV01Publish1 field changed
      • changedInput schema / properties / undefinedBody / properties / packages / items / properties / transport / anyOf
        Previous value: -[
        -  {
        -    "properties": {
        -      "type": {
        -        "description": "Transport type",
        -        "enum": [
        -          "stdio"
        -        ],
        -        "type": "string"
        -      }
        -    },
        -    "required": [
        -      "type"
        -    ],
        -    "type": "object"
        -  },
        -  {
        -    "properties": {
        -      "headers": {
        -        "description": "HTTP headers to include",
        -        "items": {
        -          "allOf": [
        -            {
        -              "allOf": [
        -                {
        -                  "properties": {
        -                    "choices": {
        -                      "description": "A list of possible values for the input. If provided, the user must select one of these values.",
        -                      "items": {
        -                        "type": "string"
        -                      },
        -                      "type": "array"
        -                    },
        -                    "default": {
        -                      "description": "The default value for the input.  This should be a valid value for the input.  If you want to provide input examples or guidance, use the `placeholder` field instead.",
        -                      "type": "string"
        -                    },
        -                    "description": {
        -                      "description": "A description of the input, which clients can use to provide context to the user.",
        -                      "type": "string"
        -                    },
        -                    "format": {
        -                      "description": "Specifies the input format. Supported values include `filepath`, which should be interpreted as a file on the user's filesystem.\n\nWhen the input is converted to a string, booleans should be represented by the strings \"true\" and \"false\", and numbers should be represented as decimal values.",
        -                      "enum": [
        -                        "string",
        -                        "number",
        -                        "boolean",
        -                        "filepath"
        -                      ],
        -                      "type": "string"
        -                    },
        -                    "isRequired": {
        -                      "type": "boolean"
        -                    },
        -                    "isSecret": {
        -                      "description": "Indicates whether the input is a secret value (e.g., password, token). If true, clients should handle the value securely.",
        -                      "type": "boolean"
        -                    },
        -                    "placeholder": {
        -                      "description": "A placeholder for the input to be displaying during configuration. This is used to provide examples or guidance about the expected form or content of the input.",
        -                      "type": "string"
        -                    },
        -                    "value": {
        -                      "description": "The value for the input. If this is not set, the user may be prompted to provide a value. If a value is set, it should not be configurable by end users.\n\nIdentifiers wrapped in `{curly_braces}` will be replaced with the corresponding properties from the input `variables` map. If an identifier in braces is not found in `variables`, or if `variables` is not provided, the `{curly_braces}` substring should remain unchanged.\n",
        -                      "type": "string"
        -                    }
        -                  },
        -                  "type": "object"
        -                },
        -                {
        -                  "properties": {
        -                    "variables": {
        -                      "additionalProperties": {
        -                        "$ref": "#/components/schemas/Input"
        -                      },
        -                      "description": "A map of variable names to their values. Keys in the input `value` that are wrapped in `{curly_braces}` will be replaced with the corresponding variable values.",
        -                      "properties": {},
        -                      "type": "object"
        -                    }
        -                  },
        -                  "type": "object"
        -                }
        -              ]
        -            },
        -            {
        -              "properties": {
        -                "name": {
        -                  "description": "Name of the header or environment variable.",
        -                  "type": "string"
        -                }
        -              },
        -              "required": [
        -                "name"
        -              ],
        -              "type": "object"
        -            }
        -          ]
        -        },
        -        "type": "array"
        -      },
        -      "type": {
        -        "description": "Transport type",
        -        "enum": [
        -          "streamable-http"
        -        ],
        -        "type": "string"
        -      },
        -      "url": {
        -        "description": "URL template for the streamable-http transport. Variables in {curly_braces} are resolved based on context: In Package context, they reference argument valueHints, argument names, or environment variable names from the parent Package. In Remote context, they reference variables from the transport's 'variables' object. After variable substitution, this should produce a valid URI.",
        -        "pattern": "^https?://[^\\s]+$",
        -        "type": "string"
        -      }
        -    },
        -    "required": [
        -      "type",
        -      "url"
        -    ],
        -    "type": "object"
        -  },
        -  {
        -    "properties": {
        -      "headers": {
        -        "description": "HTTP headers to include",
        -        "items": {
        -          "allOf": [
        -            {
        -              "allOf": [
        -                {
        -                  "properties": {
        -                    "choices": {
        -                      "description": "A list of possible values for the input. If provided, the user must select one of these values.",
        -                      "items": {
        -                        "type": "string"
        -                      },
        -                      "type": "array"
        -                    },
        -                    "default": {
        -                      "description": "The default value for the input.  This should be a valid value for the input.  If you want to provide input examples or guidance, use the `placeholder` field instead.",
        -                      "type": "string"
        -                    },
        -                    "description": {
        -                      "description": "A description of the input, which clients can use to provide context to the user.",
        -                      "type": "string"
        -                    },
        -                    "format": {
        -                      "description": "Specifies the input format. Supported values include `filepath`, which should be interpreted as a file on the user's filesystem.\n\nWhen the input is converted to a string, booleans should be represented by the strings \"true\" and \"false\", and numbers should be represented as decimal values.",
        -                      "enum": [
        -                        "string",
        -                        "number",
        -                        "boolean",
        -                        "filepath"
        -                      ],
        -                      "type": "string"
        -                    },
        -                    "isRequired": {
        -                      "type": "boolean"
        -                    },
        -                    "isSecret": {
        -                      "description": "Indicates whether the input is a secret value (e.g., password, token). If true, clients should handle the value securely.",
        -                      "type": "boolean"
        -                    },
        -                    "placeholder": {
        -                      "description": "A placeholder for the input to be displaying during configuration. This is used to provide examples or guidance about the expected form or content of the input.",
        -                      "type": "string"
        -                    },
        -                    "value": {
        -                      "description": "The value for the input. If this is not set, the user may be prompted to provide a value. If a value is set, it should not be configurable by end users.\n\nIdentifiers wrapped in `{curly_braces}` will be replaced with the corresponding properties from the input `variables` map. If an identifier in braces is not found in `variables`, or if `variables` is not provided, the `{curly_braces}` substring should remain unchanged.\n",
        -                      "type": "string"
        -                    }
        -                  },
        -                  "type": "object"
        -                },
        -                {
        -                  "properties": {
        -                    "variables": {
        -                      "additionalProperties": {
        -                        "$ref": "#/components/schemas/Input"
        -                      },
        -                      "description": "A map of variable names to their values. Keys in the input `value` that are wrapped in `{curly_braces}` will be replaced with the corresponding variable values.",
        -                      "properties": {},
        -                      "type": "object"
        -                    }
        -                  },
        -                  "type": "object"
        -                }
        -              ]
        -            },
        -            {
        -              "properties": {
        -                "name": {
        -                  "description": "Name of the header or environment variable.",
        -                  "type": "string"
        -                }
        -              },
        -              "required": [
        -                "name"
        -              ],
        -              "type": "object"
        -            }
        -          ]
        -        },
        -        "type": "array"
        -      },
        -      "type": {
        -        "description": "Transport type",
        -        "enum": [
        -          "sse"
        -        ],
        -        "type": "string"
        -      },
        -      "url": {
        -        "description": "Server-Sent Events endpoint URL template. Variables in {curly_braces} are resolved based on context: In Package context, they reference argument valueHints, argument names, or environment variable names from the parent Package. In Remote context, they reference variables from the transport's 'variables' object. After variable substitution, this should produce a valid URI.",
        -        "pattern": "^https?://[^\\s]+$",
        -        "type": "string"
        -      }
        -    },
        -    "required": [
        -      "type",
        -      "url"
        -    ],
        -    "type": "object"
        -  }
        -]New value: +[
        +  {
        +    "properties": {
        +      "type": {
        +        "description": "Transport type",
        +        "enum": [
        +          "stdio"
        +        ],
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "properties": {
        +      "headers": {
        +        "description": "HTTP headers to include",
        +        "items": {
        +          "allOf": [
        +            {
        +              "allOf": [
        +                {
        +                  "properties": {
        +                    "choices": {
        +                      "description": "A list of possible values for the input. If provided, the user must select one of these values.",
        +                      "items": {
        +                        "type": "string"
        +                      },
        +                      "type": "array"
        +                    },
        +                    "default": {
        +                      "description": "The default value for the input.  This should be a valid value for the input.  If you want to provide input examples or guidance, use the `placeholder` field instead.",
        +                      "type": "string"
        +                    },
        +                    "description": {
        +                      "description": "A description of the input, which clients can use to provide context to the user.",
        +                      "type": "string"
        +                    },
        +                    "format": {
        +                      "description": "Specifies the input format. Supported values include `filepath`, which should be interpreted as a file on the user's filesystem.\n\nWhen the input is converted to a string, booleans should be represented by the strings \"true\" and \"false\", and numbers should be represented as decimal values.",
        +                      "enum": [
        +                        "string",
        +                        "number",
        +                        "boolean",
        +                        "filepath"
        +                      ],
        +                      "type": "string"
        +                    },
        +                    "isRequired": {
        +                      "type": "boolean"
        +                    },
        +                    "isSecret": {
        +                      "description": "Indicates whether the input is a secret value (e.g., password, token). If true, clients should handle the value securely.",
        +                      "type": "boolean"
        +                    },
        +                    "placeholder": {
        +                      "description": "A placeholder for the input to be displaying during configuration. This is used to provide examples or guidance about the expected form or content of the input.",
        +                      "type": "string"
        +                    },
        +                    "value": {
        +                      "description": "The value for the input. If this is not set, the user may be prompted to provide a value. If a value is set, it should not be configurable by end users.\n\nIdentifiers wrapped in `{curly_braces}` will be replaced with the corresponding properties from the input `variables` map. If an identifier in braces is not found in `variables`, or if `variables` is not provided, the `{curly_braces}` substring should remain unchanged.\n",
        +                      "type": "string"
        +                    }
        +                  },
        +                  "type": "object"
        +                },
        +                {
        +                  "properties": {
        +                    "variables": {
        +                      "additionalProperties": {
        +                        "$ref": "#/components/schemas/Input"
        +                      },
        +                      "description": "A map of variable names to their values. Keys in the input `value` that are wrapped in `{curly_braces}` will be replaced with the corresponding variable values.",
        +                      "properties": {},
        +                      "type": "object"
        +                    }
        +                  },
        +                  "type": "object"
        +                }
        +              ]
        +            },
        +            {
        +              "properties": {
        +                "name": {
        +                  "description": "Name of the header or environment variable.",
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "name"
        +              ],
        +              "type": "object"
        +            }
        +          ]
        +        },
        +        "type": "array"
        +      },
        +      "type": {
        +        "description": "Transport type",
        +        "enum": [
        +          "streamable-http"
        +        ],
        +        "type": "string"
        +      },
        +      "url": {
        +        "description": "URL template for the streamable-http transport. Must start with http://, https://, or a template variable (e.g., {baseUrl}). Variables in {curly_braces} are resolved based on context: In Package context, they reference argument valueHints, argument names, or environment variable names from the parent Package. In Remote context, they reference variables from the transport's 'variables' object. After variable substitution, this should produce a valid URI.",
        +        "pattern": "^(https?://[^\\s]+|\\{[a-zA-Z_][a-zA-Z0-9_]*\\}[^\\s]*)$",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type",
        +      "url"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "properties": {
        +      "headers": {
        +        "description": "HTTP headers to include",
        +        "items": {
        +          "allOf": [
        +            {
        +              "allOf": [
        +                {
        +                  "properties": {
        +                    "choices": {
        +                      "description": "A list of possible values for the input. If provided, the user must select one of these values.",
        +                      "items": {
        +                        "type": "string"
        +                      },
        +                      "type": "array"
        +                    },
        +                    "default": {
        +                      "description": "The default value for the input.  This should be a valid value for the input.  If you want to provide input examples or guidance, use the `placeholder` field instead.",
        +                      "type": "string"
        +                    },
        +                    "description": {
        +                      "description": "A description of the input, which clients can use to provide context to the user.",
        +                      "type": "string"
        +                    },
        +                    "format": {
        +                      "description": "Specifies the input format. Supported values include `filepath`, which should be interpreted as a file on the user's filesystem.\n\nWhen the input is converted to a string, booleans should be represented by the strings \"true\" and \"false\", and numbers should be represented as decimal values.",
        +                      "enum": [
        +                        "string",
        +                        "number",
        +                        "boolean",
        +                        "filepath"
        +                      ],
        +                      "type": "string"
        +                    },
        +                    "isRequired": {
        +                      "type": "boolean"
        +                    },
        +                    "isSecret": {
        +                      "description": "Indicates whether the input is a secret value (e.g., password, token). If true, clients should handle the value securely.",
        +                      "type": "boolean"
        +                    },
        +                    "placeholder": {
        +                      "description": "A placeholder for the input to be displaying during configuration. This is used to provide examples or guidance about the expected form or content of the input.",
        +                      "type": "string"
        +                    },
        +                    "value": {
        +                      "description": "The value for the input. If this is not set, the user may be prompted to provide a value. If a value is set, it should not be configurable by end users.\n\nIdentifiers wrapped in `{curly_braces}` will be replaced with the corresponding properties from the input `variables` map. If an identifier in braces is not found in `variables`, or if `variables` is not provided, the `{curly_braces}` substring should remain unchanged.\n",
        +                      "type": "string"
        +                    }
        +                  },
        +                  "type": "object"
        +                },
        +                {
        +                  "properties": {
        +                    "variables": {
        +                      "additionalProperties": {
        +                        "$ref": "#/components/schemas/Input"
        +                      },
        +                      "description": "A map of variable names to their values. Keys in the input `value` that are wrapped in `{curly_braces}` will be replaced with the corresponding variable values.",
        +                      "properties": {},
        +                      "type": "object"
        +                    }
        +                  },
        +                  "type": "object"
        +                }
        +              ]
        +            },
        +            {
        +              "properties": {
        +                "name": {
        +                  "description": "Name of the header or environment variable.",
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "name"
        +              ],
        +              "type": "object"
        +            }
        +          ]
        +        },
        +        "type": "array"
        +      },
        +      "type": {
        +        "description": "Transport type",
        +        "enum": [
        +          "sse"
        +        ],
        +        "type": "string"
        +      },
        +      "url": {
        +        "description": "Server-Sent Events endpoint URL template. Must start with http://, https://, or a template variable (e.g., {baseUrl}). Variables in {curly_braces} are resolved based on context: In Package context, they reference argument valueHints, argument names, or environment variable names from the parent Package. In Remote context, they reference variables from the transport's 'variables' object. After variable substitution, this should produce a valid URI.",
        +        "pattern": "^(https?://[^\\s]+|\\{[a-zA-Z_][a-zA-Z0-9_]*\\}[^\\s]*)$",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type",
        +      "url"
        +    ],
        +    "type": "object"
        +  }
        +]
    • ChangedputV01ServersServerNameVersionsVersion1 field changed
      • changedInput schema / properties / undefinedBody / properties / packages / items / properties / transport / anyOf
        Previous value: -[
        -  {
        -    "properties": {
        -      "type": {
        -        "description": "Transport type",
        -        "enum": [
        -          "stdio"
        -        ],
        -        "type": "string"
        -      }
        -    },
        -    "required": [
        -      "type"
        -    ],
        -    "type": "object"
        -  },
        -  {
        -    "properties": {
        -      "headers": {
        -        "description": "HTTP headers to include",
        -        "items": {
        -          "allOf": [
        -            {
        -              "allOf": [
        -                {
        -                  "properties": {
        -                    "choices": {
        -                      "description": "A list of possible values for the input. If provided, the user must select one of these values.",
        -                      "items": {
        -                        "type": "string"
        -                      },
        -                      "type": "array"
        -                    },
        -                    "default": {
        -                      "description": "The default value for the input.  This should be a valid value for the input.  If you want to provide input examples or guidance, use the `placeholder` field instead.",
        -                      "type": "string"
        -                    },
        -                    "description": {
        -                      "description": "A description of the input, which clients can use to provide context to the user.",
        -                      "type": "string"
        -                    },
        -                    "format": {
        -                      "description": "Specifies the input format. Supported values include `filepath`, which should be interpreted as a file on the user's filesystem.\n\nWhen the input is converted to a string, booleans should be represented by the strings \"true\" and \"false\", and numbers should be represented as decimal values.",
        -                      "enum": [
        -                        "string",
        -                        "number",
        -                        "boolean",
        -                        "filepath"
        -                      ],
        -                      "type": "string"
        -                    },
        -                    "isRequired": {
        -                      "type": "boolean"
        -                    },
        -                    "isSecret": {
        -                      "description": "Indicates whether the input is a secret value (e.g., password, token). If true, clients should handle the value securely.",
        -                      "type": "boolean"
        -                    },
        -                    "placeholder": {
        -                      "description": "A placeholder for the input to be displaying during configuration. This is used to provide examples or guidance about the expected form or content of the input.",
        -                      "type": "string"
        -                    },
        -                    "value": {
        -                      "description": "The value for the input. If this is not set, the user may be prompted to provide a value. If a value is set, it should not be configurable by end users.\n\nIdentifiers wrapped in `{curly_braces}` will be replaced with the corresponding properties from the input `variables` map. If an identifier in braces is not found in `variables`, or if `variables` is not provided, the `{curly_braces}` substring should remain unchanged.\n",
        -                      "type": "string"
        -                    }
        -                  },
        -                  "type": "object"
        -                },
        -                {
        -                  "properties": {
        -                    "variables": {
        -                      "additionalProperties": {
        -                        "$ref": "#/components/schemas/Input"
        -                      },
        -                      "description": "A map of variable names to their values. Keys in the input `value` that are wrapped in `{curly_braces}` will be replaced with the corresponding variable values.",
        -                      "properties": {},
        -                      "type": "object"
        -                    }
        -                  },
        -                  "type": "object"
        -                }
        -              ]
        -            },
        -            {
        -              "properties": {
        -                "name": {
        -                  "description": "Name of the header or environment variable.",
        -                  "type": "string"
        -                }
        -              },
        -              "required": [
        -                "name"
        -              ],
        -              "type": "object"
        -            }
        -          ]
        -        },
        -        "type": "array"
        -      },
        -      "type": {
        -        "description": "Transport type",
        -        "enum": [
        -          "streamable-http"
        -        ],
        -        "type": "string"
        -      },
        -      "url": {
        -        "description": "URL template for the streamable-http transport. Variables in {curly_braces} are resolved based on context: In Package context, they reference argument valueHints, argument names, or environment variable names from the parent Package. In Remote context, they reference variables from the transport's 'variables' object. After variable substitution, this should produce a valid URI.",
        -        "pattern": "^https?://[^\\s]+$",
        -        "type": "string"
        -      }
        -    },
        -    "required": [
        -      "type",
        -      "url"
        -    ],
        -    "type": "object"
        -  },
        -  {
        -    "properties": {
        -      "headers": {
        -        "description": "HTTP headers to include",
        -        "items": {
        -          "allOf": [
        -            {
        -              "allOf": [
        -                {
        -                  "properties": {
        -                    "choices": {
        -                      "description": "A list of possible values for the input. If provided, the user must select one of these values.",
        -                      "items": {
        -                        "type": "string"
        -                      },
        -                      "type": "array"
        -                    },
        -                    "default": {
        -                      "description": "The default value for the input.  This should be a valid value for the input.  If you want to provide input examples or guidance, use the `placeholder` field instead.",
        -                      "type": "string"
        -                    },
        -                    "description": {
        -                      "description": "A description of the input, which clients can use to provide context to the user.",
        -                      "type": "string"
        -                    },
        -                    "format": {
        -                      "description": "Specifies the input format. Supported values include `filepath`, which should be interpreted as a file on the user's filesystem.\n\nWhen the input is converted to a string, booleans should be represented by the strings \"true\" and \"false\", and numbers should be represented as decimal values.",
        -                      "enum": [
        -                        "string",
        -                        "number",
        -                        "boolean",
        -                        "filepath"
        -                      ],
        -                      "type": "string"
        -                    },
        -                    "isRequired": {
        -                      "type": "boolean"
        -                    },
        -                    "isSecret": {
        -                      "description": "Indicates whether the input is a secret value (e.g., password, token). If true, clients should handle the value securely.",
        -                      "type": "boolean"
        -                    },
        -                    "placeholder": {
        -                      "description": "A placeholder for the input to be displaying during configuration. This is used to provide examples or guidance about the expected form or content of the input.",
        -                      "type": "string"
        -                    },
        -                    "value": {
        -                      "description": "The value for the input. If this is not set, the user may be prompted to provide a value. If a value is set, it should not be configurable by end users.\n\nIdentifiers wrapped in `{curly_braces}` will be replaced with the corresponding properties from the input `variables` map. If an identifier in braces is not found in `variables`, or if `variables` is not provided, the `{curly_braces}` substring should remain unchanged.\n",
        -                      "type": "string"
        -                    }
        -                  },
        -                  "type": "object"
        -                },
        -                {
        -                  "properties": {
        -                    "variables": {
        -                      "additionalProperties": {
        -                        "$ref": "#/components/schemas/Input"
        -                      },
        -                      "description": "A map of variable names to their values. Keys in the input `value` that are wrapped in `{curly_braces}` will be replaced with the corresponding variable values.",
        -                      "properties": {},
        -                      "type": "object"
        -                    }
        -                  },
        -                  "type": "object"
        -                }
        -              ]
        -            },
        -            {
        -              "properties": {
        -                "name": {
        -                  "description": "Name of the header or environment variable.",
        -                  "type": "string"
        -                }
        -              },
        -              "required": [
        -                "name"
        -              ],
        -              "type": "object"
        -            }
        -          ]
        -        },
        -        "type": "array"
        -      },
        -      "type": {
        -        "description": "Transport type",
        -        "enum": [
        -          "sse"
        -        ],
        -        "type": "string"
        -      },
        -      "url": {
        -        "description": "Server-Sent Events endpoint URL template. Variables in {curly_braces} are resolved based on context: In Package context, they reference argument valueHints, argument names, or environment variable names from the parent Package. In Remote context, they reference variables from the transport's 'variables' object. After variable substitution, this should produce a valid URI.",
        -        "pattern": "^https?://[^\\s]+$",
        -        "type": "string"
        -      }
        -    },
        -    "required": [
        -      "type",
        -      "url"
        -    ],
        -    "type": "object"
        -  }
        -]New value: +[
        +  {
        +    "properties": {
        +      "type": {
        +        "description": "Transport type",
        +        "enum": [
        +          "stdio"
        +        ],
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "properties": {
        +      "headers": {
        +        "description": "HTTP headers to include",
        +        "items": {
        +          "allOf": [
        +            {
        +              "allOf": [
        +                {
        +                  "properties": {
        +                    "choices": {
        +                      "description": "A list of possible values for the input. If provided, the user must select one of these values.",
        +                      "items": {
        +                        "type": "string"
        +                      },
        +                      "type": "array"
        +                    },
        +                    "default": {
        +                      "description": "The default value for the input.  This should be a valid value for the input.  If you want to provide input examples or guidance, use the `placeholder` field instead.",
        +                      "type": "string"
        +                    },
        +                    "description": {
        +                      "description": "A description of the input, which clients can use to provide context to the user.",
        +                      "type": "string"
        +                    },
        +                    "format": {
        +                      "description": "Specifies the input format. Supported values include `filepath`, which should be interpreted as a file on the user's filesystem.\n\nWhen the input is converted to a string, booleans should be represented by the strings \"true\" and \"false\", and numbers should be represented as decimal values.",
        +                      "enum": [
        +                        "string",
        +                        "number",
        +                        "boolean",
        +                        "filepath"
        +                      ],
        +                      "type": "string"
        +                    },
        +                    "isRequired": {
        +                      "type": "boolean"
        +                    },
        +                    "isSecret": {
        +                      "description": "Indicates whether the input is a secret value (e.g., password, token). If true, clients should handle the value securely.",
        +                      "type": "boolean"
        +                    },
        +                    "placeholder": {
        +                      "description": "A placeholder for the input to be displaying during configuration. This is used to provide examples or guidance about the expected form or content of the input.",
        +                      "type": "string"
        +                    },
        +                    "value": {
        +                      "description": "The value for the input. If this is not set, the user may be prompted to provide a value. If a value is set, it should not be configurable by end users.\n\nIdentifiers wrapped in `{curly_braces}` will be replaced with the corresponding properties from the input `variables` map. If an identifier in braces is not found in `variables`, or if `variables` is not provided, the `{curly_braces}` substring should remain unchanged.\n",
        +                      "type": "string"
        +                    }
        +                  },
        +                  "type": "object"
        +                },
        +                {
        +                  "properties": {
        +                    "variables": {
        +                      "additionalProperties": {
        +                        "$ref": "#/components/schemas/Input"
        +                      },
        +                      "description": "A map of variable names to their values. Keys in the input `value` that are wrapped in `{curly_braces}` will be replaced with the corresponding variable values.",
        +                      "properties": {},
        +                      "type": "object"
        +                    }
        +                  },
        +                  "type": "object"
        +                }
        +              ]
        +            },
        +            {
        +              "properties": {
        +                "name": {
        +                  "description": "Name of the header or environment variable.",
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "name"
        +              ],
        +              "type": "object"
        +            }
        +          ]
        +        },
        +        "type": "array"
        +      },
        +      "type": {
        +        "description": "Transport type",
        +        "enum": [
        +          "streamable-http"
        +        ],
        +        "type": "string"
        +      },
        +      "url": {
        +        "description": "URL template for the streamable-http transport. Must start with http://, https://, or a template variable (e.g., {baseUrl}). Variables in {curly_braces} are resolved based on context: In Package context, they reference argument valueHints, argument names, or environment variable names from the parent Package. In Remote context, they reference variables from the transport's 'variables' object. After variable substitution, this should produce a valid URI.",
        +        "pattern": "^(https?://[^\\s]+|\\{[a-zA-Z_][a-zA-Z0-9_]*\\}[^\\s]*)$",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type",
        +      "url"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "properties": {
        +      "headers": {
        +        "description": "HTTP headers to include",
        +        "items": {
        +          "allOf": [
        +            {
        +              "allOf": [
        +                {
        +                  "properties": {
        +                    "choices": {
        +                      "description": "A list of possible values for the input. If provided, the user must select one of these values.",
        +                      "items": {
        +                        "type": "string"
        +                      },
        +                      "type": "array"
        +                    },
        +                    "default": {
        +                      "description": "The default value for the input.  This should be a valid value for the input.  If you want to provide input examples or guidance, use the `placeholder` field instead.",
        +                      "type": "string"
        +                    },
        +                    "description": {
        +                      "description": "A description of the input, which clients can use to provide context to the user.",
        +                      "type": "string"
        +                    },
        +                    "format": {
        +                      "description": "Specifies the input format. Supported values include `filepath`, which should be interpreted as a file on the user's filesystem.\n\nWhen the input is converted to a string, booleans should be represented by the strings \"true\" and \"false\", and numbers should be represented as decimal values.",
        +                      "enum": [
        +                        "string",
        +                        "number",
        +                        "boolean",
        +                        "filepath"
        +                      ],
        +                      "type": "string"
        +                    },
        +                    "isRequired": {
        +                      "type": "boolean"
        +                    },
        +                    "isSecret": {
        +                      "description": "Indicates whether the input is a secret value (e.g., password, token). If true, clients should handle the value securely.",
        +                      "type": "boolean"
        +                    },
        +                    "placeholder": {
        +                      "description": "A placeholder for the input to be displaying during configuration. This is used to provide examples or guidance about the expected form or content of the input.",
        +                      "type": "string"
        +                    },
        +                    "value": {
        +                      "description": "The value for the input. If this is not set, the user may be prompted to provide a value. If a value is set, it should not be configurable by end users.\n\nIdentifiers wrapped in `{curly_braces}` will be replaced with the corresponding properties from the input `variables` map. If an identifier in braces is not found in `variables`, or if `variables` is not provided, the `{curly_braces}` substring should remain unchanged.\n",
        +                      "type": "string"
        +                    }
        +                  },
        +                  "type": "object"
        +                },
        +                {
        +                  "properties": {
        +                    "variables": {
        +                      "additionalProperties": {
        +                        "$ref": "#/components/schemas/Input"
        +                      },
        +                      "description": "A map of variable names to their values. Keys in the input `value` that are wrapped in `{curly_braces}` will be replaced with the corresponding variable values.",
        +                      "properties": {},
        +                      "type": "object"
        +                    }
        +                  },
        +                  "type": "object"
        +                }
        +              ]
        +            },
        +            {
        +              "properties": {
        +                "name": {
        +                  "description": "Name of the header or environment variable.",
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "name"
        +              ],
        +              "type": "object"
        +            }
        +          ]
        +        },
        +        "type": "array"
        +      },
        +      "type": {
        +        "description": "Transport type",
        +        "enum": [
        +          "sse"
        +        ],
        +        "type": "string"
        +      },
        +      "url": {
        +        "description": "Server-Sent Events endpoint URL template. Must start with http://, https://, or a template variable (e.g., {baseUrl}). Variables in {curly_braces} are resolved based on context: In Package context, they reference argument valueHints, argument names, or environment variable names from the parent Package. In Remote context, they reference variables from the transport's 'variables' object. After variable substitution, this should produce a valid URI.",
        +        "pattern": "^(https?://[^\\s]+|\\{[a-zA-Z_][a-zA-Z0-9_]*\\}[^\\s]*)$",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type",
        +      "url"
        +    ],
        +    "type": "object"
        +  }
        +]
  6. 2 tool updates
    • ChangedpostV01Publish1 field changed
      • changedInput schema / properties / undefinedBody / properties / packages / items / properties / transport / anyOf
        Previous value: -[
        -  {
        -    "properties": {
        -      "type": {
        -        "description": "Transport type",
        -        "enum": [
        -          "stdio"
        -        ],
        -        "type": "string"
        -      }
        -    },
        -    "required": [
        -      "type"
        -    ],
        -    "type": "object"
        -  },
        -  {
        -    "properties": {
        -      "headers": {
        -        "description": "HTTP headers to include",
        -        "items": {
        -          "allOf": [
        -            {
        -              "allOf": [
        -                {
        -                  "properties": {
        -                    "choices": {
        -                      "description": "A list of possible values for the input. If provided, the user must select one of these values.",
        -                      "items": {
        -                        "type": "string"
        -                      },
        -                      "type": "array"
        -                    },
        -                    "default": {
        -                      "description": "The default value for the input.  This should be a valid value for the input.  If you want to provide input examples or guidance, use the `placeholder` field instead.",
        -                      "type": "string"
        -                    },
        -                    "description": {
        -                      "description": "A description of the input, which clients can use to provide context to the user.",
        -                      "type": "string"
        -                    },
        -                    "format": {
        -                      "description": "Specifies the input format. Supported values include `filepath`, which should be interpreted as a file on the user's filesystem.\n\nWhen the input is converted to a string, booleans should be represented by the strings \"true\" and \"false\", and numbers should be represented as decimal values.",
        -                      "enum": [
        -                        "string",
        -                        "number",
        -                        "boolean",
        -                        "filepath"
        -                      ],
        -                      "type": "string"
        -                    },
        -                    "isRequired": {
        -                      "type": "boolean"
        -                    },
        -                    "isSecret": {
        -                      "description": "Indicates whether the input is a secret value (e.g., password, token). If true, clients should handle the value securely.",
        -                      "type": "boolean"
        -                    },
        -                    "placeholder": {
        -                      "description": "A placeholder for the input to be displaying during configuration. This is used to provide examples or guidance about the expected form or content of the input.",
        -                      "type": "string"
        -                    },
        -                    "value": {
        -                      "description": "The value for the input. If this is not set, the user may be prompted to provide a value. If a value is set, it should not be configurable by end users.\n\nIdentifiers wrapped in `{curly_braces}` will be replaced with the corresponding properties from the input `variables` map. If an identifier in braces is not found in `variables`, or if `variables` is not provided, the `{curly_braces}` substring should remain unchanged.\n",
        -                      "type": "string"
        -                    }
        -                  },
        -                  "type": "object"
        -                },
        -                {
        -                  "properties": {
        -                    "variables": {
        -                      "additionalProperties": {
        -                        "$ref": "#/components/schemas/Input"
        -                      },
        -                      "description": "A map of variable names to their values. Keys in the input `value` that are wrapped in `{curly_braces}` will be replaced with the corresponding variable values.",
        -                      "properties": {},
        -                      "type": "object"
        -                    }
        -                  },
        -                  "type": "object"
        -                }
        -              ]
        -            },
        -            {
        -              "properties": {
        -                "name": {
        -                  "description": "Name of the header or environment variable.",
        -                  "type": "string"
        -                }
        -              },
        -              "required": [
        -                "name"
        -              ],
        -              "type": "object"
        -            }
        -          ]
        -        },
        -        "type": "array"
        -      },
        -      "type": {
        -        "description": "Transport type",
        -        "enum": [
        -          "streamable-http"
        -        ],
        -        "type": "string"
        -      },
        -      "url": {
        -        "description": "URL template for the streamable-http transport. Must start with http://, https://, or a template variable (e.g., {baseUrl}). Variables in {curly_braces} are resolved based on context: In Package context, they reference argument valueHints, argument names, or environment variable names from the parent Package. In Remote context, they reference variables from the transport's 'variables' object. After variable substitution, this should produce a valid URI.",
        -        "pattern": "^(https?://[^\\s]+|\\{[a-zA-Z_][a-zA-Z0-9_]*\\}[^\\s]*)$",
        -        "type": "string"
        -      }
        -    },
        -    "required": [
        -      "type",
        -      "url"
        -    ],
        -    "type": "object"
        -  },
        -  {
        -    "properties": {
        -      "headers": {
        -        "description": "HTTP headers to include",
        -        "items": {
        -          "allOf": [
        -            {
        -              "allOf": [
        -                {
        -                  "properties": {
        -                    "choices": {
        -                      "description": "A list of possible values for the input. If provided, the user must select one of these values.",
        -                      "items": {
        -                        "type": "string"
        -                      },
        -                      "type": "array"
        -                    },
        -                    "default": {
        -                      "description": "The default value for the input.  This should be a valid value for the input.  If you want to provide input examples or guidance, use the `placeholder` field instead.",
        -                      "type": "string"
        -                    },
        -                    "description": {
        -                      "description": "A description of the input, which clients can use to provide context to the user.",
        -                      "type": "string"
        -                    },
        -                    "format": {
        -                      "description": "Specifies the input format. Supported values include `filepath`, which should be interpreted as a file on the user's filesystem.\n\nWhen the input is converted to a string, booleans should be represented by the strings \"true\" and \"false\", and numbers should be represented as decimal values.",
        -                      "enum": [
        -                        "string",
        -                        "number",
        -                        "boolean",
        -                        "filepath"
        -                      ],
        -                      "type": "string"
        -                    },
        -                    "isRequired": {
        -                      "type": "boolean"
        -                    },
        -                    "isSecret": {
        -                      "description": "Indicates whether the input is a secret value (e.g., password, token). If true, clients should handle the value securely.",
        -                      "type": "boolean"
        -                    },
        -                    "placeholder": {
        -                      "description": "A placeholder for the input to be displaying during configuration. This is used to provide examples or guidance about the expected form or content of the input.",
        -                      "type": "string"
        -                    },
        -                    "value": {
        -                      "description": "The value for the input. If this is not set, the user may be prompted to provide a value. If a value is set, it should not be configurable by end users.\n\nIdentifiers wrapped in `{curly_braces}` will be replaced with the corresponding properties from the input `variables` map. If an identifier in braces is not found in `variables`, or if `variables` is not provided, the `{curly_braces}` substring should remain unchanged.\n",
        -                      "type": "string"
        -                    }
        -                  },
        -                  "type": "object"
        -                },
        -                {
        -                  "properties": {
        -                    "variables": {
        -                      "additionalProperties": {
        -                        "$ref": "#/components/schemas/Input"
        -                      },
        -                      "description": "A map of variable names to their values. Keys in the input `value` that are wrapped in `{curly_braces}` will be replaced with the corresponding variable values.",
        -                      "properties": {},
        -                      "type": "object"
        -                    }
        -                  },
        -                  "type": "object"
        -                }
        -              ]
        -            },
        -            {
        -              "properties": {
        -                "name": {
        -                  "description": "Name of the header or environment variable.",
        -                  "type": "string"
        -                }
        -              },
        -              "required": [
        -                "name"
        -              ],
        -              "type": "object"
        -            }
        -          ]
        -        },
        -        "type": "array"
        -      },
        -      "type": {
        -        "description": "Transport type",
        -        "enum": [
        -          "sse"
        -        ],
        -        "type": "string"
        -      },
        -      "url": {
        -        "description": "Server-Sent Events endpoint URL template. Must start with http://, https://, or a template variable (e.g., {baseUrl}). Variables in {curly_braces} are resolved based on context: In Package context, they reference argument valueHints, argument names, or environment variable names from the parent Package. In Remote context, they reference variables from the transport's 'variables' object. After variable substitution, this should produce a valid URI.",
        -        "pattern": "^(https?://[^\\s]+|\\{[a-zA-Z_][a-zA-Z0-9_]*\\}[^\\s]*)$",
        -        "type": "string"
        -      }
        -    },
        -    "required": [
        -      "type",
        -      "url"
        -    ],
        -    "type": "object"
        -  }
        -]New value: +[
        +  {
        +    "properties": {
        +      "type": {
        +        "description": "Transport type",
        +        "enum": [
        +          "stdio"
        +        ],
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "properties": {
        +      "headers": {
        +        "description": "HTTP headers to include",
        +        "items": {
        +          "allOf": [
        +            {
        +              "allOf": [
        +                {
        +                  "properties": {
        +                    "choices": {
        +                      "description": "A list of possible values for the input. If provided, the user must select one of these values.",
        +                      "items": {
        +                        "type": "string"
        +                      },
        +                      "type": "array"
        +                    },
        +                    "default": {
        +                      "description": "The default value for the input.  This should be a valid value for the input.  If you want to provide input examples or guidance, use the `placeholder` field instead.",
        +                      "type": "string"
        +                    },
        +                    "description": {
        +                      "description": "A description of the input, which clients can use to provide context to the user.",
        +                      "type": "string"
        +                    },
        +                    "format": {
        +                      "description": "Specifies the input format. Supported values include `filepath`, which should be interpreted as a file on the user's filesystem.\n\nWhen the input is converted to a string, booleans should be represented by the strings \"true\" and \"false\", and numbers should be represented as decimal values.",
        +                      "enum": [
        +                        "string",
        +                        "number",
        +                        "boolean",
        +                        "filepath"
        +                      ],
        +                      "type": "string"
        +                    },
        +                    "isRequired": {
        +                      "type": "boolean"
        +                    },
        +                    "isSecret": {
        +                      "description": "Indicates whether the input is a secret value (e.g., password, token). If true, clients should handle the value securely.",
        +                      "type": "boolean"
        +                    },
        +                    "placeholder": {
        +                      "description": "A placeholder for the input to be displaying during configuration. This is used to provide examples or guidance about the expected form or content of the input.",
        +                      "type": "string"
        +                    },
        +                    "value": {
        +                      "description": "The value for the input. If this is not set, the user may be prompted to provide a value. If a value is set, it should not be configurable by end users.\n\nIdentifiers wrapped in `{curly_braces}` will be replaced with the corresponding properties from the input `variables` map. If an identifier in braces is not found in `variables`, or if `variables` is not provided, the `{curly_braces}` substring should remain unchanged.\n",
        +                      "type": "string"
        +                    }
        +                  },
        +                  "type": "object"
        +                },
        +                {
        +                  "properties": {
        +                    "variables": {
        +                      "additionalProperties": {
        +                        "$ref": "#/components/schemas/Input"
        +                      },
        +                      "description": "A map of variable names to their values. Keys in the input `value` that are wrapped in `{curly_braces}` will be replaced with the corresponding variable values.",
        +                      "properties": {},
        +                      "type": "object"
        +                    }
        +                  },
        +                  "type": "object"
        +                }
        +              ]
        +            },
        +            {
        +              "properties": {
        +                "name": {
        +                  "description": "Name of the header or environment variable.",
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "name"
        +              ],
        +              "type": "object"
        +            }
        +          ]
        +        },
        +        "type": "array"
        +      },
        +      "type": {
        +        "description": "Transport type",
        +        "enum": [
        +          "streamable-http"
        +        ],
        +        "type": "string"
        +      },
        +      "url": {
        +        "description": "URL template for the streamable-http transport. Variables in {curly_braces} are resolved based on context: In Package context, they reference argument valueHints, argument names, or environment variable names from the parent Package. In Remote context, they reference variables from the transport's 'variables' object. After variable substitution, this should produce a valid URI.",
        +        "pattern": "^https?://[^\\s]+$",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type",
        +      "url"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "properties": {
        +      "headers": {
        +        "description": "HTTP headers to include",
        +        "items": {
        +          "allOf": [
        +            {
        +              "allOf": [
        +                {
        +                  "properties": {
        +                    "choices": {
        +                      "description": "A list of possible values for the input. If provided, the user must select one of these values.",
        +                      "items": {
        +                        "type": "string"
        +                      },
        +                      "type": "array"
        +                    },
        +                    "default": {
        +                      "description": "The default value for the input.  This should be a valid value for the input.  If you want to provide input examples or guidance, use the `placeholder` field instead.",
        +                      "type": "string"
        +                    },
        +                    "description": {
        +                      "description": "A description of the input, which clients can use to provide context to the user.",
        +                      "type": "string"
        +                    },
        +                    "format": {
        +                      "description": "Specifies the input format. Supported values include `filepath`, which should be interpreted as a file on the user's filesystem.\n\nWhen the input is converted to a string, booleans should be represented by the strings \"true\" and \"false\", and numbers should be represented as decimal values.",
        +                      "enum": [
        +                        "string",
        +                        "number",
        +                        "boolean",
        +                        "filepath"
        +                      ],
        +                      "type": "string"
        +                    },
        +                    "isRequired": {
        +                      "type": "boolean"
        +                    },
        +                    "isSecret": {
        +                      "description": "Indicates whether the input is a secret value (e.g., password, token). If true, clients should handle the value securely.",
        +                      "type": "boolean"
        +                    },
        +                    "placeholder": {
        +                      "description": "A placeholder for the input to be displaying during configuration. This is used to provide examples or guidance about the expected form or content of the input.",
        +                      "type": "string"
        +                    },
        +                    "value": {
        +                      "description": "The value for the input. If this is not set, the user may be prompted to provide a value. If a value is set, it should not be configurable by end users.\n\nIdentifiers wrapped in `{curly_braces}` will be replaced with the corresponding properties from the input `variables` map. If an identifier in braces is not found in `variables`, or if `variables` is not provided, the `{curly_braces}` substring should remain unchanged.\n",
        +                      "type": "string"
        +                    }
        +                  },
        +                  "type": "object"
        +                },
        +                {
        +                  "properties": {
        +                    "variables": {
        +                      "additionalProperties": {
        +                        "$ref": "#/components/schemas/Input"
        +                      },
        +                      "description": "A map of variable names to their values. Keys in the input `value` that are wrapped in `{curly_braces}` will be replaced with the corresponding variable values.",
        +                      "properties": {},
        +                      "type": "object"
        +                    }
        +                  },
        +                  "type": "object"
        +                }
        +              ]
        +            },
        +            {
        +              "properties": {
        +                "name": {
        +                  "description": "Name of the header or environment variable.",
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "name"
        +              ],
        +              "type": "object"
        +            }
        +          ]
        +        },
        +        "type": "array"
        +      },
        +      "type": {
        +        "description": "Transport type",
        +        "enum": [
        +          "sse"
        +        ],
        +        "type": "string"
        +      },
        +      "url": {
        +        "description": "Server-Sent Events endpoint URL template. Variables in {curly_braces} are resolved based on context: In Package context, they reference argument valueHints, argument names, or environment variable names from the parent Package. In Remote context, they reference variables from the transport's 'variables' object. After variable substitution, this should produce a valid URI.",
        +        "pattern": "^https?://[^\\s]+$",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type",
        +      "url"
        +    ],
        +    "type": "object"
        +  }
        +]
    • ChangedputV01ServersServerNameVersionsVersion1 field changed
      • changedInput schema / properties / undefinedBody / properties / packages / items / properties / transport / anyOf
        Previous value: -[
        -  {
        -    "properties": {
        -      "type": {
        -        "description": "Transport type",
        -        "enum": [
        -          "stdio"
        -        ],
        -        "type": "string"
        -      }
        -    },
        -    "required": [
        -      "type"
        -    ],
        -    "type": "object"
        -  },
        -  {
        -    "properties": {
        -      "headers": {
        -        "description": "HTTP headers to include",
        -        "items": {
        -          "allOf": [
        -            {
        -              "allOf": [
        -                {
        -                  "properties": {
        -                    "choices": {
        -                      "description": "A list of possible values for the input. If provided, the user must select one of these values.",
        -                      "items": {
        -                        "type": "string"
        -                      },
        -                      "type": "array"
        -                    },
        -                    "default": {
        -                      "description": "The default value for the input.  This should be a valid value for the input.  If you want to provide input examples or guidance, use the `placeholder` field instead.",
        -                      "type": "string"
        -                    },
        -                    "description": {
        -                      "description": "A description of the input, which clients can use to provide context to the user.",
        -                      "type": "string"
        -                    },
        -                    "format": {
        -                      "description": "Specifies the input format. Supported values include `filepath`, which should be interpreted as a file on the user's filesystem.\n\nWhen the input is converted to a string, booleans should be represented by the strings \"true\" and \"false\", and numbers should be represented as decimal values.",
        -                      "enum": [
        -                        "string",
        -                        "number",
        -                        "boolean",
        -                        "filepath"
        -                      ],
        -                      "type": "string"
        -                    },
        -                    "isRequired": {
        -                      "type": "boolean"
        -                    },
        -                    "isSecret": {
        -                      "description": "Indicates whether the input is a secret value (e.g., password, token). If true, clients should handle the value securely.",
        -                      "type": "boolean"
        -                    },
        -                    "placeholder": {
        -                      "description": "A placeholder for the input to be displaying during configuration. This is used to provide examples or guidance about the expected form or content of the input.",
        -                      "type": "string"
        -                    },
        -                    "value": {
        -                      "description": "The value for the input. If this is not set, the user may be prompted to provide a value. If a value is set, it should not be configurable by end users.\n\nIdentifiers wrapped in `{curly_braces}` will be replaced with the corresponding properties from the input `variables` map. If an identifier in braces is not found in `variables`, or if `variables` is not provided, the `{curly_braces}` substring should remain unchanged.\n",
        -                      "type": "string"
        -                    }
        -                  },
        -                  "type": "object"
        -                },
        -                {
        -                  "properties": {
        -                    "variables": {
        -                      "additionalProperties": {
        -                        "$ref": "#/components/schemas/Input"
        -                      },
        -                      "description": "A map of variable names to their values. Keys in the input `value` that are wrapped in `{curly_braces}` will be replaced with the corresponding variable values.",
        -                      "properties": {},
        -                      "type": "object"
        -                    }
        -                  },
        -                  "type": "object"
        -                }
        -              ]
        -            },
        -            {
        -              "properties": {
        -                "name": {
        -                  "description": "Name of the header or environment variable.",
        -                  "type": "string"
        -                }
        -              },
        -              "required": [
        -                "name"
        -              ],
        -              "type": "object"
        -            }
        -          ]
        -        },
        -        "type": "array"
        -      },
        -      "type": {
        -        "description": "Transport type",
        -        "enum": [
        -          "streamable-http"
        -        ],
        -        "type": "string"
        -      },
        -      "url": {
        -        "description": "URL template for the streamable-http transport. Must start with http://, https://, or a template variable (e.g., {baseUrl}). Variables in {curly_braces} are resolved based on context: In Package context, they reference argument valueHints, argument names, or environment variable names from the parent Package. In Remote context, they reference variables from the transport's 'variables' object. After variable substitution, this should produce a valid URI.",
        -        "pattern": "^(https?://[^\\s]+|\\{[a-zA-Z_][a-zA-Z0-9_]*\\}[^\\s]*)$",
        -        "type": "string"
        -      }
        -    },
        -    "required": [
        -      "type",
        -      "url"
        -    ],
        -    "type": "object"
        -  },
        -  {
        -    "properties": {
        -      "headers": {
        -        "description": "HTTP headers to include",
        -        "items": {
        -          "allOf": [
        -            {
        -              "allOf": [
        -                {
        -                  "properties": {
        -                    "choices": {
        -                      "description": "A list of possible values for the input. If provided, the user must select one of these values.",
        -                      "items": {
        -                        "type": "string"
        -                      },
        -                      "type": "array"
        -                    },
        -                    "default": {
        -                      "description": "The default value for the input.  This should be a valid value for the input.  If you want to provide input examples or guidance, use the `placeholder` field instead.",
        -                      "type": "string"
        -                    },
        -                    "description": {
        -                      "description": "A description of the input, which clients can use to provide context to the user.",
        -                      "type": "string"
        -                    },
        -                    "format": {
        -                      "description": "Specifies the input format. Supported values include `filepath`, which should be interpreted as a file on the user's filesystem.\n\nWhen the input is converted to a string, booleans should be represented by the strings \"true\" and \"false\", and numbers should be represented as decimal values.",
        -                      "enum": [
        -                        "string",
        -                        "number",
        -                        "boolean",
        -                        "filepath"
        -                      ],
        -                      "type": "string"
        -                    },
        -                    "isRequired": {
        -                      "type": "boolean"
        -                    },
        -                    "isSecret": {
        -                      "description": "Indicates whether the input is a secret value (e.g., password, token). If true, clients should handle the value securely.",
        -                      "type": "boolean"
        -                    },
        -                    "placeholder": {
        -                      "description": "A placeholder for the input to be displaying during configuration. This is used to provide examples or guidance about the expected form or content of the input.",
        -                      "type": "string"
        -                    },
        -                    "value": {
        -                      "description": "The value for the input. If this is not set, the user may be prompted to provide a value. If a value is set, it should not be configurable by end users.\n\nIdentifiers wrapped in `{curly_braces}` will be replaced with the corresponding properties from the input `variables` map. If an identifier in braces is not found in `variables`, or if `variables` is not provided, the `{curly_braces}` substring should remain unchanged.\n",
        -                      "type": "string"
        -                    }
        -                  },
        -                  "type": "object"
        -                },
        -                {
        -                  "properties": {
        -                    "variables": {
        -                      "additionalProperties": {
        -                        "$ref": "#/components/schemas/Input"
        -                      },
        -                      "description": "A map of variable names to their values. Keys in the input `value` that are wrapped in `{curly_braces}` will be replaced with the corresponding variable values.",
        -                      "properties": {},
        -                      "type": "object"
        -                    }
        -                  },
        -                  "type": "object"
        -                }
        -              ]
        -            },
        -            {
        -              "properties": {
        -                "name": {
        -                  "description": "Name of the header or environment variable.",
        -                  "type": "string"
        -                }
        -              },
        -              "required": [
        -                "name"
        -              ],
        -              "type": "object"
        -            }
        -          ]
        -        },
        -        "type": "array"
        -      },
        -      "type": {
        -        "description": "Transport type",
        -        "enum": [
        -          "sse"
        -        ],
        -        "type": "string"
        -      },
        -      "url": {
        -        "description": "Server-Sent Events endpoint URL template. Must start with http://, https://, or a template variable (e.g., {baseUrl}). Variables in {curly_braces} are resolved based on context: In Package context, they reference argument valueHints, argument names, or environment variable names from the parent Package. In Remote context, they reference variables from the transport's 'variables' object. After variable substitution, this should produce a valid URI.",
        -        "pattern": "^(https?://[^\\s]+|\\{[a-zA-Z_][a-zA-Z0-9_]*\\}[^\\s]*)$",
        -        "type": "string"
        -      }
        -    },
        -    "required": [
        -      "type",
        -      "url"
        -    ],
        -    "type": "object"
        -  }
        -]New value: +[
        +  {
        +    "properties": {
        +      "type": {
        +        "description": "Transport type",
        +        "enum": [
        +          "stdio"
        +        ],
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "properties": {
        +      "headers": {
        +        "description": "HTTP headers to include",
        +        "items": {
        +          "allOf": [
        +            {
        +              "allOf": [
        +                {
        +                  "properties": {
        +                    "choices": {
        +                      "description": "A list of possible values for the input. If provided, the user must select one of these values.",
        +                      "items": {
        +                        "type": "string"
        +                      },
        +                      "type": "array"
        +                    },
        +                    "default": {
        +                      "description": "The default value for the input.  This should be a valid value for the input.  If you want to provide input examples or guidance, use the `placeholder` field instead.",
        +                      "type": "string"
        +                    },
        +                    "description": {
        +                      "description": "A description of the input, which clients can use to provide context to the user.",
        +                      "type": "string"
        +                    },
        +                    "format": {
        +                      "description": "Specifies the input format. Supported values include `filepath`, which should be interpreted as a file on the user's filesystem.\n\nWhen the input is converted to a string, booleans should be represented by the strings \"true\" and \"false\", and numbers should be represented as decimal values.",
        +                      "enum": [
        +                        "string",
        +                        "number",
        +                        "boolean",
        +                        "filepath"
        +                      ],
        +                      "type": "string"
        +                    },
        +                    "isRequired": {
        +                      "type": "boolean"
        +                    },
        +                    "isSecret": {
        +                      "description": "Indicates whether the input is a secret value (e.g., password, token). If true, clients should handle the value securely.",
        +                      "type": "boolean"
        +                    },
        +                    "placeholder": {
        +                      "description": "A placeholder for the input to be displaying during configuration. This is used to provide examples or guidance about the expected form or content of the input.",
        +                      "type": "string"
        +                    },
        +                    "value": {
        +                      "description": "The value for the input. If this is not set, the user may be prompted to provide a value. If a value is set, it should not be configurable by end users.\n\nIdentifiers wrapped in `{curly_braces}` will be replaced with the corresponding properties from the input `variables` map. If an identifier in braces is not found in `variables`, or if `variables` is not provided, the `{curly_braces}` substring should remain unchanged.\n",
        +                      "type": "string"
        +                    }
        +                  },
        +                  "type": "object"
        +                },
        +                {
        +                  "properties": {
        +                    "variables": {
        +                      "additionalProperties": {
        +                        "$ref": "#/components/schemas/Input"
        +                      },
        +                      "description": "A map of variable names to their values. Keys in the input `value` that are wrapped in `{curly_braces}` will be replaced with the corresponding variable values.",
        +                      "properties": {},
        +                      "type": "object"
        +                    }
        +                  },
        +                  "type": "object"
        +                }
        +              ]
        +            },
        +            {
        +              "properties": {
        +                "name": {
        +                  "description": "Name of the header or environment variable.",
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "name"
        +              ],
        +              "type": "object"
        +            }
        +          ]
        +        },
        +        "type": "array"
        +      },
        +      "type": {
        +        "description": "Transport type",
        +        "enum": [
        +          "streamable-http"
        +        ],
        +        "type": "string"
        +      },
        +      "url": {
        +        "description": "URL template for the streamable-http transport. Variables in {curly_braces} are resolved based on context: In Package context, they reference argument valueHints, argument names, or environment variable names from the parent Package. In Remote context, they reference variables from the transport's 'variables' object. After variable substitution, this should produce a valid URI.",
        +        "pattern": "^https?://[^\\s]+$",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type",
        +      "url"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "properties": {
        +      "headers": {
        +        "description": "HTTP headers to include",
        +        "items": {
        +          "allOf": [
        +            {
        +              "allOf": [
        +                {
        +                  "properties": {
        +                    "choices": {
        +                      "description": "A list of possible values for the input. If provided, the user must select one of these values.",
        +                      "items": {
        +                        "type": "string"
        +                      },
        +                      "type": "array"
        +                    },
        +                    "default": {
        +                      "description": "The default value for the input.  This should be a valid value for the input.  If you want to provide input examples or guidance, use the `placeholder` field instead.",
        +                      "type": "string"
        +                    },
        +                    "description": {
        +                      "description": "A description of the input, which clients can use to provide context to the user.",
        +                      "type": "string"
        +                    },
        +                    "format": {
        +                      "description": "Specifies the input format. Supported values include `filepath`, which should be interpreted as a file on the user's filesystem.\n\nWhen the input is converted to a string, booleans should be represented by the strings \"true\" and \"false\", and numbers should be represented as decimal values.",
        +                      "enum": [
        +                        "string",
        +                        "number",
        +                        "boolean",
        +                        "filepath"
        +                      ],
        +                      "type": "string"
        +                    },
        +                    "isRequired": {
        +                      "type": "boolean"
        +                    },
        +                    "isSecret": {
        +                      "description": "Indicates whether the input is a secret value (e.g., password, token). If true, clients should handle the value securely.",
        +                      "type": "boolean"
        +                    },
        +                    "placeholder": {
        +                      "description": "A placeholder for the input to be displaying during configuration. This is used to provide examples or guidance about the expected form or content of the input.",
        +                      "type": "string"
        +                    },
        +                    "value": {
        +                      "description": "The value for the input. If this is not set, the user may be prompted to provide a value. If a value is set, it should not be configurable by end users.\n\nIdentifiers wrapped in `{curly_braces}` will be replaced with the corresponding properties from the input `variables` map. If an identifier in braces is not found in `variables`, or if `variables` is not provided, the `{curly_braces}` substring should remain unchanged.\n",
        +                      "type": "string"
        +                    }
        +                  },
        +                  "type": "object"
        +                },
        +                {
        +                  "properties": {
        +                    "variables": {
        +                      "additionalProperties": {
        +                        "$ref": "#/components/schemas/Input"
        +                      },
        +                      "description": "A map of variable names to their values. Keys in the input `value` that are wrapped in `{curly_braces}` will be replaced with the corresponding variable values.",
        +                      "properties": {},
        +                      "type": "object"
        +                    }
        +                  },
        +                  "type": "object"
        +                }
        +              ]
        +            },
        +            {
        +              "properties": {
        +                "name": {
        +                  "description": "Name of the header or environment variable.",
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "name"
        +              ],
        +              "type": "object"
        +            }
        +          ]
        +        },
        +        "type": "array"
        +      },
        +      "type": {
        +        "description": "Transport type",
        +        "enum": [
        +          "sse"
        +        ],
        +        "type": "string"
        +      },
        +      "url": {
        +        "description": "Server-Sent Events endpoint URL template. Variables in {curly_braces} are resolved based on context: In Package context, they reference argument valueHints, argument names, or environment variable names from the parent Package. In Remote context, they reference variables from the transport's 'variables' object. After variable substitution, this should produce a valid URI.",
        +        "pattern": "^https?://[^\\s]+$",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type",
        +      "url"
        +    ],
        +    "type": "object"
        +  }
        +]
  7. 2 tool updates
    • ChangedpostV01Publish1 field changed
      • changedInput schema / properties / undefinedBody / properties / packages / items / properties / transport / anyOf
        Previous value: -[
        -  {
        -    "properties": {
        -      "type": {
        -        "description": "Transport type",
        -        "enum": [
        -          "stdio"
        -        ],
        -        "type": "string"
        -      }
        -    },
        -    "required": [
        -      "type"
        -    ],
        -    "type": "object"
        -  },
        -  {
        -    "properties": {
        -      "headers": {
        -        "description": "HTTP headers to include",
        -        "items": {
        -          "allOf": [
        -            {
        -              "allOf": [
        -                {
        -                  "properties": {
        -                    "choices": {
        -                      "description": "A list of possible values for the input. If provided, the user must select one of these values.",
        -                      "items": {
        -                        "type": "string"
        -                      },
        -                      "type": "array"
        -                    },
        -                    "default": {
        -                      "description": "The default value for the input.  This should be a valid value for the input.  If you want to provide input examples or guidance, use the `placeholder` field instead.",
        -                      "type": "string"
        -                    },
        -                    "description": {
        -                      "description": "A description of the input, which clients can use to provide context to the user.",
        -                      "type": "string"
        -                    },
        -                    "format": {
        -                      "description": "Specifies the input format. Supported values include `filepath`, which should be interpreted as a file on the user's filesystem.\n\nWhen the input is converted to a string, booleans should be represented by the strings \"true\" and \"false\", and numbers should be represented as decimal values.",
        -                      "enum": [
        -                        "string",
        -                        "number",
        -                        "boolean",
        -                        "filepath"
        -                      ],
        -                      "type": "string"
        -                    },
        -                    "isRequired": {
        -                      "type": "boolean"
        -                    },
        -                    "isSecret": {
        -                      "description": "Indicates whether the input is a secret value (e.g., password, token). If true, clients should handle the value securely.",
        -                      "type": "boolean"
        -                    },
        -                    "placeholder": {
        -                      "description": "A placeholder for the input to be displaying during configuration. This is used to provide examples or guidance about the expected form or content of the input.",
        -                      "type": "string"
        -                    },
        -                    "value": {
        -                      "description": "The value for the input. If this is not set, the user may be prompted to provide a value. If a value is set, it should not be configurable by end users.\n\nIdentifiers wrapped in `{curly_braces}` will be replaced with the corresponding properties from the input `variables` map. If an identifier in braces is not found in `variables`, or if `variables` is not provided, the `{curly_braces}` substring should remain unchanged.\n",
        -                      "type": "string"
        -                    }
        -                  },
        -                  "type": "object"
        -                },
        -                {
        -                  "properties": {
        -                    "variables": {
        -                      "additionalProperties": {
        -                        "$ref": "#/components/schemas/Input"
        -                      },
        -                      "description": "A map of variable names to their values. Keys in the input `value` that are wrapped in `{curly_braces}` will be replaced with the corresponding variable values.",
        -                      "properties": {},
        -                      "type": "object"
        -                    }
        -                  },
        -                  "type": "object"
        -                }
        -              ]
        -            },
        -            {
        -              "properties": {
        -                "name": {
        -                  "description": "Name of the header or environment variable.",
        -                  "type": "string"
        -                }
        -              },
        -              "required": [
        -                "name"
        -              ],
        -              "type": "object"
        -            }
        -          ]
        -        },
        -        "type": "array"
        -      },
        -      "type": {
        -        "description": "Transport type",
        -        "enum": [
        -          "streamable-http"
        -        ],
        -        "type": "string"
        -      },
        -      "url": {
        -        "description": "URL template for the streamable-http transport. Variables in {curly_braces} are resolved based on context: In Package context, they reference argument valueHints, argument names, or environment variable names from the parent Package. In Remote context, they reference variables from the transport's 'variables' object. After variable substitution, this should produce a valid URI.",
        -        "pattern": "^https?://[^\\s]+$",
        -        "type": "string"
        -      }
        -    },
        -    "required": [
        -      "type",
        -      "url"
        -    ],
        -    "type": "object"
        -  },
        -  {
        -    "properties": {
        -      "headers": {
        -        "description": "HTTP headers to include",
        -        "items": {
        -          "allOf": [
        -            {
        -              "allOf": [
        -                {
        -                  "properties": {
        -                    "choices": {
        -                      "description": "A list of possible values for the input. If provided, the user must select one of these values.",
        -                      "items": {
        -                        "type": "string"
        -                      },
        -                      "type": "array"
        -                    },
        -                    "default": {
        -                      "description": "The default value for the input.  This should be a valid value for the input.  If you want to provide input examples or guidance, use the `placeholder` field instead.",
        -                      "type": "string"
        -                    },
        -                    "description": {
        -                      "description": "A description of the input, which clients can use to provide context to the user.",
        -                      "type": "string"
        -                    },
        -                    "format": {
        -                      "description": "Specifies the input format. Supported values include `filepath`, which should be interpreted as a file on the user's filesystem.\n\nWhen the input is converted to a string, booleans should be represented by the strings \"true\" and \"false\", and numbers should be represented as decimal values.",
        -                      "enum": [
        -                        "string",
        -                        "number",
        -                        "boolean",
        -                        "filepath"
        -                      ],
        -                      "type": "string"
        -                    },
        -                    "isRequired": {
        -                      "type": "boolean"
        -                    },
        -                    "isSecret": {
        -                      "description": "Indicates whether the input is a secret value (e.g., password, token). If true, clients should handle the value securely.",
        -                      "type": "boolean"
        -                    },
        -                    "placeholder": {
        -                      "description": "A placeholder for the input to be displaying during configuration. This is used to provide examples or guidance about the expected form or content of the input.",
        -                      "type": "string"
        -                    },
        -                    "value": {
        -                      "description": "The value for the input. If this is not set, the user may be prompted to provide a value. If a value is set, it should not be configurable by end users.\n\nIdentifiers wrapped in `{curly_braces}` will be replaced with the corresponding properties from the input `variables` map. If an identifier in braces is not found in `variables`, or if `variables` is not provided, the `{curly_braces}` substring should remain unchanged.\n",
        -                      "type": "string"
        -                    }
        -                  },
        -                  "type": "object"
        -                },
        -                {
        -                  "properties": {
        -                    "variables": {
        -                      "additionalProperties": {
        -                        "$ref": "#/components/schemas/Input"
        -                      },
        -                      "description": "A map of variable names to their values. Keys in the input `value` that are wrapped in `{curly_braces}` will be replaced with the corresponding variable values.",
        -                      "properties": {},
        -                      "type": "object"
        -                    }
        -                  },
        -                  "type": "object"
        -                }
        -              ]
        -            },
        -            {
        -              "properties": {
        -                "name": {
        -                  "description": "Name of the header or environment variable.",
        -                  "type": "string"
        -                }
        -              },
        -              "required": [
        -                "name"
        -              ],
        -              "type": "object"
        -            }
        -          ]
        -        },
        -        "type": "array"
        -      },
        -      "type": {
        -        "description": "Transport type",
        -        "enum": [
        -          "sse"
        -        ],
        -        "type": "string"
        -      },
        -      "url": {
        -        "description": "Server-Sent Events endpoint URL template. Variables in {curly_braces} are resolved based on context: In Package context, they reference argument valueHints, argument names, or environment variable names from the parent Package. In Remote context, they reference variables from the transport's 'variables' object. After variable substitution, this should produce a valid URI.",
        -        "pattern": "^https?://[^\\s]+$",
        -        "type": "string"
        -      }
        -    },
        -    "required": [
        -      "type",
        -      "url"
        -    ],
        -    "type": "object"
        -  }
        -]New value: +[
        +  {
        +    "properties": {
        +      "type": {
        +        "description": "Transport type",
        +        "enum": [
        +          "stdio"
        +        ],
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "properties": {
        +      "headers": {
        +        "description": "HTTP headers to include",
        +        "items": {
        +          "allOf": [
        +            {
        +              "allOf": [
        +                {
        +                  "properties": {
        +                    "choices": {
        +                      "description": "A list of possible values for the input. If provided, the user must select one of these values.",
        +                      "items": {
        +                        "type": "string"
        +                      },
        +                      "type": "array"
        +                    },
        +                    "default": {
        +                      "description": "The default value for the input.  This should be a valid value for the input.  If you want to provide input examples or guidance, use the `placeholder` field instead.",
        +                      "type": "string"
        +                    },
        +                    "description": {
        +                      "description": "A description of the input, which clients can use to provide context to the user.",
        +                      "type": "string"
        +                    },
        +                    "format": {
        +                      "description": "Specifies the input format. Supported values include `filepath`, which should be interpreted as a file on the user's filesystem.\n\nWhen the input is converted to a string, booleans should be represented by the strings \"true\" and \"false\", and numbers should be represented as decimal values.",
        +                      "enum": [
        +                        "string",
        +                        "number",
        +                        "boolean",
        +                        "filepath"
        +                      ],
        +                      "type": "string"
        +                    },
        +                    "isRequired": {
        +                      "type": "boolean"
        +                    },
        +                    "isSecret": {
        +                      "description": "Indicates whether the input is a secret value (e.g., password, token). If true, clients should handle the value securely.",
        +                      "type": "boolean"
        +                    },
        +                    "placeholder": {
        +                      "description": "A placeholder for the input to be displaying during configuration. This is used to provide examples or guidance about the expected form or content of the input.",
        +                      "type": "string"
        +                    },
        +                    "value": {
        +                      "description": "The value for the input. If this is not set, the user may be prompted to provide a value. If a value is set, it should not be configurable by end users.\n\nIdentifiers wrapped in `{curly_braces}` will be replaced with the corresponding properties from the input `variables` map. If an identifier in braces is not found in `variables`, or if `variables` is not provided, the `{curly_braces}` substring should remain unchanged.\n",
        +                      "type": "string"
        +                    }
        +                  },
        +                  "type": "object"
        +                },
        +                {
        +                  "properties": {
        +                    "variables": {
        +                      "additionalProperties": {
        +                        "$ref": "#/components/schemas/Input"
        +                      },
        +                      "description": "A map of variable names to their values. Keys in the input `value` that are wrapped in `{curly_braces}` will be replaced with the corresponding variable values.",
        +                      "properties": {},
        +                      "type": "object"
        +                    }
        +                  },
        +                  "type": "object"
        +                }
        +              ]
        +            },
        +            {
        +              "properties": {
        +                "name": {
        +                  "description": "Name of the header or environment variable.",
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "name"
        +              ],
        +              "type": "object"
        +            }
        +          ]
        +        },
        +        "type": "array"
        +      },
        +      "type": {
        +        "description": "Transport type",
        +        "enum": [
        +          "streamable-http"
        +        ],
        +        "type": "string"
        +      },
        +      "url": {
        +        "description": "URL template for the streamable-http transport. Must start with http://, https://, or a template variable (e.g., {baseUrl}). Variables in {curly_braces} are resolved based on context: In Package context, they reference argument valueHints, argument names, or environment variable names from the parent Package. In Remote context, they reference variables from the transport's 'variables' object. After variable substitution, this should produce a valid URI.",
        +        "pattern": "^(https?://[^\\s]+|\\{[a-zA-Z_][a-zA-Z0-9_]*\\}[^\\s]*)$",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type",
        +      "url"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "properties": {
        +      "headers": {
        +        "description": "HTTP headers to include",
        +        "items": {
        +          "allOf": [
        +            {
        +              "allOf": [
        +                {
        +                  "properties": {
        +                    "choices": {
        +                      "description": "A list of possible values for the input. If provided, the user must select one of these values.",
        +                      "items": {
        +                        "type": "string"
        +                      },
        +                      "type": "array"
        +                    },
        +                    "default": {
        +                      "description": "The default value for the input.  This should be a valid value for the input.  If you want to provide input examples or guidance, use the `placeholder` field instead.",
        +                      "type": "string"
        +                    },
        +                    "description": {
        +                      "description": "A description of the input, which clients can use to provide context to the user.",
        +                      "type": "string"
        +                    },
        +                    "format": {
        +                      "description": "Specifies the input format. Supported values include `filepath`, which should be interpreted as a file on the user's filesystem.\n\nWhen the input is converted to a string, booleans should be represented by the strings \"true\" and \"false\", and numbers should be represented as decimal values.",
        +                      "enum": [
        +                        "string",
        +                        "number",
        +                        "boolean",
        +                        "filepath"
        +                      ],
        +                      "type": "string"
        +                    },
        +                    "isRequired": {
        +                      "type": "boolean"
        +                    },
        +                    "isSecret": {
        +                      "description": "Indicates whether the input is a secret value (e.g., password, token). If true, clients should handle the value securely.",
        +                      "type": "boolean"
        +                    },
        +                    "placeholder": {
        +                      "description": "A placeholder for the input to be displaying during configuration. This is used to provide examples or guidance about the expected form or content of the input.",
        +                      "type": "string"
        +                    },
        +                    "value": {
        +                      "description": "The value for the input. If this is not set, the user may be prompted to provide a value. If a value is set, it should not be configurable by end users.\n\nIdentifiers wrapped in `{curly_braces}` will be replaced with the corresponding properties from the input `variables` map. If an identifier in braces is not found in `variables`, or if `variables` is not provided, the `{curly_braces}` substring should remain unchanged.\n",
        +                      "type": "string"
        +                    }
        +                  },
        +                  "type": "object"
        +                },
        +                {
        +                  "properties": {
        +                    "variables": {
        +                      "additionalProperties": {
        +                        "$ref": "#/components/schemas/Input"
        +                      },
        +                      "description": "A map of variable names to their values. Keys in the input `value` that are wrapped in `{curly_braces}` will be replaced with the corresponding variable values.",
        +                      "properties": {},
        +                      "type": "object"
        +                    }
        +                  },
        +                  "type": "object"
        +                }
        +              ]
        +            },
        +            {
        +              "properties": {
        +                "name": {
        +                  "description": "Name of the header or environment variable.",
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "name"
        +              ],
        +              "type": "object"
        +            }
        +          ]
        +        },
        +        "type": "array"
        +      },
        +      "type": {
        +        "description": "Transport type",
        +        "enum": [
        +          "sse"
        +        ],
        +        "type": "string"
        +      },
        +      "url": {
        +        "description": "Server-Sent Events endpoint URL template. Must start with http://, https://, or a template variable (e.g., {baseUrl}). Variables in {curly_braces} are resolved based on context: In Package context, they reference argument valueHints, argument names, or environment variable names from the parent Package. In Remote context, they reference variables from the transport's 'variables' object. After variable substitution, this should produce a valid URI.",
        +        "pattern": "^(https?://[^\\s]+|\\{[a-zA-Z_][a-zA-Z0-9_]*\\}[^\\s]*)$",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type",
        +      "url"
        +    ],
        +    "type": "object"
        +  }
        +]
    • ChangedputV01ServersServerNameVersionsVersion1 field changed
      • changedInput schema / properties / undefinedBody / properties / packages / items / properties / transport / anyOf
        Previous value: -[
        -  {
        -    "properties": {
        -      "type": {
        -        "description": "Transport type",
        -        "enum": [
        -          "stdio"
        -        ],
        -        "type": "string"
        -      }
        -    },
        -    "required": [
        -      "type"
        -    ],
        -    "type": "object"
        -  },
        -  {
        -    "properties": {
        -      "headers": {
        -        "description": "HTTP headers to include",
        -        "items": {
        -          "allOf": [
        -            {
        -              "allOf": [
        -                {
        -                  "properties": {
        -                    "choices": {
        -                      "description": "A list of possible values for the input. If provided, the user must select one of these values.",
        -                      "items": {
        -                        "type": "string"
        -                      },
        -                      "type": "array"
        -                    },
        -                    "default": {
        -                      "description": "The default value for the input.  This should be a valid value for the input.  If you want to provide input examples or guidance, use the `placeholder` field instead.",
        -                      "type": "string"
        -                    },
        -                    "description": {
        -                      "description": "A description of the input, which clients can use to provide context to the user.",
        -                      "type": "string"
        -                    },
        -                    "format": {
        -                      "description": "Specifies the input format. Supported values include `filepath`, which should be interpreted as a file on the user's filesystem.\n\nWhen the input is converted to a string, booleans should be represented by the strings \"true\" and \"false\", and numbers should be represented as decimal values.",
        -                      "enum": [
        -                        "string",
        -                        "number",
        -                        "boolean",
        -                        "filepath"
        -                      ],
        -                      "type": "string"
        -                    },
        -                    "isRequired": {
        -                      "type": "boolean"
        -                    },
        -                    "isSecret": {
        -                      "description": "Indicates whether the input is a secret value (e.g., password, token). If true, clients should handle the value securely.",
        -                      "type": "boolean"
        -                    },
        -                    "placeholder": {
        -                      "description": "A placeholder for the input to be displaying during configuration. This is used to provide examples or guidance about the expected form or content of the input.",
        -                      "type": "string"
        -                    },
        -                    "value": {
        -                      "description": "The value for the input. If this is not set, the user may be prompted to provide a value. If a value is set, it should not be configurable by end users.\n\nIdentifiers wrapped in `{curly_braces}` will be replaced with the corresponding properties from the input `variables` map. If an identifier in braces is not found in `variables`, or if `variables` is not provided, the `{curly_braces}` substring should remain unchanged.\n",
        -                      "type": "string"
        -                    }
        -                  },
        -                  "type": "object"
        -                },
        -                {
        -                  "properties": {
        -                    "variables": {
        -                      "additionalProperties": {
        -                        "$ref": "#/components/schemas/Input"
        -                      },
        -                      "description": "A map of variable names to their values. Keys in the input `value` that are wrapped in `{curly_braces}` will be replaced with the corresponding variable values.",
        -                      "properties": {},
        -                      "type": "object"
        -                    }
        -                  },
        -                  "type": "object"
        -                }
        -              ]
        -            },
        -            {
        -              "properties": {
        -                "name": {
        -                  "description": "Name of the header or environment variable.",
        -                  "type": "string"
        -                }
        -              },
        -              "required": [
        -                "name"
        -              ],
        -              "type": "object"
        -            }
        -          ]
        -        },
        -        "type": "array"
        -      },
        -      "type": {
        -        "description": "Transport type",
        -        "enum": [
        -          "streamable-http"
        -        ],
        -        "type": "string"
        -      },
        -      "url": {
        -        "description": "URL template for the streamable-http transport. Variables in {curly_braces} are resolved based on context: In Package context, they reference argument valueHints, argument names, or environment variable names from the parent Package. In Remote context, they reference variables from the transport's 'variables' object. After variable substitution, this should produce a valid URI.",
        -        "pattern": "^https?://[^\\s]+$",
        -        "type": "string"
        -      }
        -    },
        -    "required": [
        -      "type",
        -      "url"
        -    ],
        -    "type": "object"
        -  },
        -  {
        -    "properties": {
        -      "headers": {
        -        "description": "HTTP headers to include",
        -        "items": {
        -          "allOf": [
        -            {
        -              "allOf": [
        -                {
        -                  "properties": {
        -                    "choices": {
        -                      "description": "A list of possible values for the input. If provided, the user must select one of these values.",
        -                      "items": {
        -                        "type": "string"
        -                      },
        -                      "type": "array"
        -                    },
        -                    "default": {
        -                      "description": "The default value for the input.  This should be a valid value for the input.  If you want to provide input examples or guidance, use the `placeholder` field instead.",
        -                      "type": "string"
        -                    },
        -                    "description": {
        -                      "description": "A description of the input, which clients can use to provide context to the user.",
        -                      "type": "string"
        -                    },
        -                    "format": {
        -                      "description": "Specifies the input format. Supported values include `filepath`, which should be interpreted as a file on the user's filesystem.\n\nWhen the input is converted to a string, booleans should be represented by the strings \"true\" and \"false\", and numbers should be represented as decimal values.",
        -                      "enum": [
        -                        "string",
        -                        "number",
        -                        "boolean",
        -                        "filepath"
        -                      ],
        -                      "type": "string"
        -                    },
        -                    "isRequired": {
        -                      "type": "boolean"
        -                    },
        -                    "isSecret": {
        -                      "description": "Indicates whether the input is a secret value (e.g., password, token). If true, clients should handle the value securely.",
        -                      "type": "boolean"
        -                    },
        -                    "placeholder": {
        -                      "description": "A placeholder for the input to be displaying during configuration. This is used to provide examples or guidance about the expected form or content of the input.",
        -                      "type": "string"
        -                    },
        -                    "value": {
        -                      "description": "The value for the input. If this is not set, the user may be prompted to provide a value. If a value is set, it should not be configurable by end users.\n\nIdentifiers wrapped in `{curly_braces}` will be replaced with the corresponding properties from the input `variables` map. If an identifier in braces is not found in `variables`, or if `variables` is not provided, the `{curly_braces}` substring should remain unchanged.\n",
        -                      "type": "string"
        -                    }
        -                  },
        -                  "type": "object"
        -                },
        -                {
        -                  "properties": {
        -                    "variables": {
        -                      "additionalProperties": {
        -                        "$ref": "#/components/schemas/Input"
        -                      },
        -                      "description": "A map of variable names to their values. Keys in the input `value` that are wrapped in `{curly_braces}` will be replaced with the corresponding variable values.",
        -                      "properties": {},
        -                      "type": "object"
        -                    }
        -                  },
        -                  "type": "object"
        -                }
        -              ]
        -            },
        -            {
        -              "properties": {
        -                "name": {
        -                  "description": "Name of the header or environment variable.",
        -                  "type": "string"
        -                }
        -              },
        -              "required": [
        -                "name"
        -              ],
        -              "type": "object"
        -            }
        -          ]
        -        },
        -        "type": "array"
        -      },
        -      "type": {
        -        "description": "Transport type",
        -        "enum": [
        -          "sse"
        -        ],
        -        "type": "string"
        -      },
        -      "url": {
        -        "description": "Server-Sent Events endpoint URL template. Variables in {curly_braces} are resolved based on context: In Package context, they reference argument valueHints, argument names, or environment variable names from the parent Package. In Remote context, they reference variables from the transport's 'variables' object. After variable substitution, this should produce a valid URI.",
        -        "pattern": "^https?://[^\\s]+$",
        -        "type": "string"
        -      }
        -    },
        -    "required": [
        -      "type",
        -      "url"
        -    ],
        -    "type": "object"
        -  }
        -]New value: +[
        +  {
        +    "properties": {
        +      "type": {
        +        "description": "Transport type",
        +        "enum": [
        +          "stdio"
        +        ],
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "properties": {
        +      "headers": {
        +        "description": "HTTP headers to include",
        +        "items": {
        +          "allOf": [
        +            {
        +              "allOf": [
        +                {
        +                  "properties": {
        +                    "choices": {
        +                      "description": "A list of possible values for the input. If provided, the user must select one of these values.",
        +                      "items": {
        +                        "type": "string"
        +                      },
        +                      "type": "array"
        +                    },
        +                    "default": {
        +                      "description": "The default value for the input.  This should be a valid value for the input.  If you want to provide input examples or guidance, use the `placeholder` field instead.",
        +                      "type": "string"
        +                    },
        +                    "description": {
        +                      "description": "A description of the input, which clients can use to provide context to the user.",
        +                      "type": "string"
        +                    },
        +                    "format": {
        +                      "description": "Specifies the input format. Supported values include `filepath`, which should be interpreted as a file on the user's filesystem.\n\nWhen the input is converted to a string, booleans should be represented by the strings \"true\" and \"false\", and numbers should be represented as decimal values.",
        +                      "enum": [
        +                        "string",
        +                        "number",
        +                        "boolean",
        +                        "filepath"
        +                      ],
        +                      "type": "string"
        +                    },
        +                    "isRequired": {
        +                      "type": "boolean"
        +                    },
        +                    "isSecret": {
        +                      "description": "Indicates whether the input is a secret value (e.g., password, token). If true, clients should handle the value securely.",
        +                      "type": "boolean"
        +                    },
        +                    "placeholder": {
        +                      "description": "A placeholder for the input to be displaying during configuration. This is used to provide examples or guidance about the expected form or content of the input.",
        +                      "type": "string"
        +                    },
        +                    "value": {
        +                      "description": "The value for the input. If this is not set, the user may be prompted to provide a value. If a value is set, it should not be configurable by end users.\n\nIdentifiers wrapped in `{curly_braces}` will be replaced with the corresponding properties from the input `variables` map. If an identifier in braces is not found in `variables`, or if `variables` is not provided, the `{curly_braces}` substring should remain unchanged.\n",
        +                      "type": "string"
        +                    }
        +                  },
        +                  "type": "object"
        +                },
        +                {
        +                  "properties": {
        +                    "variables": {
        +                      "additionalProperties": {
        +                        "$ref": "#/components/schemas/Input"
        +                      },
        +                      "description": "A map of variable names to their values. Keys in the input `value` that are wrapped in `{curly_braces}` will be replaced with the corresponding variable values.",
        +                      "properties": {},
        +                      "type": "object"
        +                    }
        +                  },
        +                  "type": "object"
        +                }
        +              ]
        +            },
        +            {
        +              "properties": {
        +                "name": {
        +                  "description": "Name of the header or environment variable.",
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "name"
        +              ],
        +              "type": "object"
        +            }
        +          ]
        +        },
        +        "type": "array"
        +      },
        +      "type": {
        +        "description": "Transport type",
        +        "enum": [
        +          "streamable-http"
        +        ],
        +        "type": "string"
        +      },
        +      "url": {
        +        "description": "URL template for the streamable-http transport. Must start with http://, https://, or a template variable (e.g., {baseUrl}). Variables in {curly_braces} are resolved based on context: In Package context, they reference argument valueHints, argument names, or environment variable names from the parent Package. In Remote context, they reference variables from the transport's 'variables' object. After variable substitution, this should produce a valid URI.",
        +        "pattern": "^(https?://[^\\s]+|\\{[a-zA-Z_][a-zA-Z0-9_]*\\}[^\\s]*)$",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type",
        +      "url"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "properties": {
        +      "headers": {
        +        "description": "HTTP headers to include",
        +        "items": {
        +          "allOf": [
        +            {
        +              "allOf": [
        +                {
        +                  "properties": {
        +                    "choices": {
        +                      "description": "A list of possible values for the input. If provided, the user must select one of these values.",
        +                      "items": {
        +                        "type": "string"
        +                      },
        +                      "type": "array"
        +                    },
        +                    "default": {
        +                      "description": "The default value for the input.  This should be a valid value for the input.  If you want to provide input examples or guidance, use the `placeholder` field instead.",
        +                      "type": "string"
        +                    },
        +                    "description": {
        +                      "description": "A description of the input, which clients can use to provide context to the user.",
        +                      "type": "string"
        +                    },
        +                    "format": {
        +                      "description": "Specifies the input format. Supported values include `filepath`, which should be interpreted as a file on the user's filesystem.\n\nWhen the input is converted to a string, booleans should be represented by the strings \"true\" and \"false\", and numbers should be represented as decimal values.",
        +                      "enum": [
        +                        "string",
        +                        "number",
        +                        "boolean",
        +                        "filepath"
        +                      ],
        +                      "type": "string"
        +                    },
        +                    "isRequired": {
        +                      "type": "boolean"
        +                    },
        +                    "isSecret": {
        +                      "description": "Indicates whether the input is a secret value (e.g., password, token). If true, clients should handle the value securely.",
        +                      "type": "boolean"
        +                    },
        +                    "placeholder": {
        +                      "description": "A placeholder for the input to be displaying during configuration. This is used to provide examples or guidance about the expected form or content of the input.",
        +                      "type": "string"
        +                    },
        +                    "value": {
        +                      "description": "The value for the input. If this is not set, the user may be prompted to provide a value. If a value is set, it should not be configurable by end users.\n\nIdentifiers wrapped in `{curly_braces}` will be replaced with the corresponding properties from the input `variables` map. If an identifier in braces is not found in `variables`, or if `variables` is not provided, the `{curly_braces}` substring should remain unchanged.\n",
        +                      "type": "string"
        +                    }
        +                  },
        +                  "type": "object"
        +                },
        +                {
        +                  "properties": {
        +                    "variables": {
        +                      "additionalProperties": {
        +                        "$ref": "#/components/schemas/Input"
        +                      },
        +                      "description": "A map of variable names to their values. Keys in the input `value` that are wrapped in `{curly_braces}` will be replaced with the corresponding variable values.",
        +                      "properties": {},
        +                      "type": "object"
        +                    }
        +                  },
        +                  "type": "object"
        +                }
        +              ]
        +            },
        +            {
        +              "properties": {
        +                "name": {
        +                  "description": "Name of the header or environment variable.",
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "name"
        +              ],
        +              "type": "object"
        +            }
        +          ]
        +        },
        +        "type": "array"
        +      },
        +      "type": {
        +        "description": "Transport type",
        +        "enum": [
        +          "sse"
        +        ],
        +        "type": "string"
        +      },
        +      "url": {
        +        "description": "Server-Sent Events endpoint URL template. Must start with http://, https://, or a template variable (e.g., {baseUrl}). Variables in {curly_braces} are resolved based on context: In Package context, they reference argument valueHints, argument names, or environment variable names from the parent Package. In Remote context, they reference variables from the transport's 'variables' object. After variable substitution, this should produce a valid URI.",
        +        "pattern": "^(https?://[^\\s]+|\\{[a-zA-Z_][a-zA-Z0-9_]*\\}[^\\s]*)$",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type",
        +      "url"
        +    ],
        +    "type": "object"
        +  }
        +]
  8. 2 tool updates
    • ChangedpostV01Publish1 field changed
      • changedInput schema / properties / undefinedBody / properties / packages / items / properties / transport / anyOf
        Previous value: -[
        -  {
        -    "properties": {
        -      "type": {
        -        "description": "Transport type",
        -        "enum": [
        -          "stdio"
        -        ],
        -        "type": "string"
        -      }
        -    },
        -    "required": [
        -      "type"
        -    ],
        -    "type": "object"
        -  },
        -  {
        -    "properties": {
        -      "headers": {
        -        "description": "HTTP headers to include",
        -        "items": {
        -          "allOf": [
        -            {
        -              "allOf": [
        -                {
        -                  "properties": {
        -                    "choices": {
        -                      "description": "A list of possible values for the input. If provided, the user must select one of these values.",
        -                      "items": {
        -                        "type": "string"
        -                      },
        -                      "type": "array"
        -                    },
        -                    "default": {
        -                      "description": "The default value for the input.  This should be a valid value for the input.  If you want to provide input examples or guidance, use the `placeholder` field instead.",
        -                      "type": "string"
        -                    },
        -                    "description": {
        -                      "description": "A description of the input, which clients can use to provide context to the user.",
        -                      "type": "string"
        -                    },
        -                    "format": {
        -                      "description": "Specifies the input format. Supported values include `filepath`, which should be interpreted as a file on the user's filesystem.\n\nWhen the input is converted to a string, booleans should be represented by the strings \"true\" and \"false\", and numbers should be represented as decimal values.",
        -                      "enum": [
        -                        "string",
        -                        "number",
        -                        "boolean",
        -                        "filepath"
        -                      ],
        -                      "type": "string"
        -                    },
        -                    "isRequired": {
        -                      "type": "boolean"
        -                    },
        -                    "isSecret": {
        -                      "description": "Indicates whether the input is a secret value (e.g., password, token). If true, clients should handle the value securely.",
        -                      "type": "boolean"
        -                    },
        -                    "placeholder": {
        -                      "description": "A placeholder for the input to be displaying during configuration. This is used to provide examples or guidance about the expected form or content of the input.",
        -                      "type": "string"
        -                    },
        -                    "value": {
        -                      "description": "The value for the input. If this is not set, the user may be prompted to provide a value. If a value is set, it should not be configurable by end users.\n\nIdentifiers wrapped in `{curly_braces}` will be replaced with the corresponding properties from the input `variables` map. If an identifier in braces is not found in `variables`, or if `variables` is not provided, the `{curly_braces}` substring should remain unchanged.\n",
        -                      "type": "string"
        -                    }
        -                  },
        -                  "type": "object"
        -                },
        -                {
        -                  "properties": {
        -                    "variables": {
        -                      "additionalProperties": {
        -                        "$ref": "#/components/schemas/Input"
        -                      },
        -                      "description": "A map of variable names to their values. Keys in the input `value` that are wrapped in `{curly_braces}` will be replaced with the corresponding variable values.",
        -                      "properties": {},
        -                      "type": "object"
        -                    }
        -                  },
        -                  "type": "object"
        -                }
        -              ]
        -            },
        -            {
        -              "properties": {
        -                "name": {
        -                  "description": "Name of the header or environment variable.",
        -                  "type": "string"
        -                }
        -              },
        -              "required": [
        -                "name"
        -              ],
        -              "type": "object"
        -            }
        -          ]
        -        },
        -        "type": "array"
        -      },
        -      "type": {
        -        "description": "Transport type",
        -        "enum": [
        -          "streamable-http"
        -        ],
        -        "type": "string"
        -      },
        -      "url": {
        -        "description": "URL template for the streamable-http transport. Must start with http://, https://, or a template variable (e.g., {baseUrl}). Variables in {curly_braces} are resolved based on context: In Package context, they reference argument valueHints, argument names, or environment variable names from the parent Package. In Remote context, they reference variables from the transport's 'variables' object. After variable substitution, this should produce a valid URI.",
        -        "pattern": "^(https?://[^\\s]+|\\{[a-zA-Z_][a-zA-Z0-9_]*\\}[^\\s]*)$",
        -        "type": "string"
        -      }
        -    },
        -    "required": [
        -      "type",
        -      "url"
        -    ],
        -    "type": "object"
        -  },
        -  {
        -    "properties": {
        -      "headers": {
        -        "description": "HTTP headers to include",
        -        "items": {
        -          "allOf": [
        -            {
        -              "allOf": [
        -                {
        -                  "properties": {
        -                    "choices": {
        -                      "description": "A list of possible values for the input. If provided, the user must select one of these values.",
        -                      "items": {
        -                        "type": "string"
        -                      },
        -                      "type": "array"
        -                    },
        -                    "default": {
        -                      "description": "The default value for the input.  This should be a valid value for the input.  If you want to provide input examples or guidance, use the `placeholder` field instead.",
        -                      "type": "string"
        -                    },
        -                    "description": {
        -                      "description": "A description of the input, which clients can use to provide context to the user.",
        -                      "type": "string"
        -                    },
        -                    "format": {
        -                      "description": "Specifies the input format. Supported values include `filepath`, which should be interpreted as a file on the user's filesystem.\n\nWhen the input is converted to a string, booleans should be represented by the strings \"true\" and \"false\", and numbers should be represented as decimal values.",
        -                      "enum": [
        -                        "string",
        -                        "number",
        -                        "boolean",
        -                        "filepath"
        -                      ],
        -                      "type": "string"
        -                    },
        -                    "isRequired": {
        -                      "type": "boolean"
        -                    },
        -                    "isSecret": {
        -                      "description": "Indicates whether the input is a secret value (e.g., password, token). If true, clients should handle the value securely.",
        -                      "type": "boolean"
        -                    },
        -                    "placeholder": {
        -                      "description": "A placeholder for the input to be displaying during configuration. This is used to provide examples or guidance about the expected form or content of the input.",
        -                      "type": "string"
        -                    },
        -                    "value": {
        -                      "description": "The value for the input. If this is not set, the user may be prompted to provide a value. If a value is set, it should not be configurable by end users.\n\nIdentifiers wrapped in `{curly_braces}` will be replaced with the corresponding properties from the input `variables` map. If an identifier in braces is not found in `variables`, or if `variables` is not provided, the `{curly_braces}` substring should remain unchanged.\n",
        -                      "type": "string"
        -                    }
        -                  },
        -                  "type": "object"
        -                },
        -                {
        -                  "properties": {
        -                    "variables": {
        -                      "additionalProperties": {
        -                        "$ref": "#/components/schemas/Input"
        -                      },
        -                      "description": "A map of variable names to their values. Keys in the input `value` that are wrapped in `{curly_braces}` will be replaced with the corresponding variable values.",
        -                      "properties": {},
        -                      "type": "object"
        -                    }
        -                  },
        -                  "type": "object"
        -                }
        -              ]
        -            },
        -            {
        -              "properties": {
        -                "name": {
        -                  "description": "Name of the header or environment variable.",
        -                  "type": "string"
        -                }
        -              },
        -              "required": [
        -                "name"
        -              ],
        -              "type": "object"
        -            }
        -          ]
        -        },
        -        "type": "array"
        -      },
        -      "type": {
        -        "description": "Transport type",
        -        "enum": [
        -          "sse"
        -        ],
        -        "type": "string"
        -      },
        -      "url": {
        -        "description": "Server-Sent Events endpoint URL template. Must start with http://, https://, or a template variable (e.g., {baseUrl}). Variables in {curly_braces} are resolved based on context: In Package context, they reference argument valueHints, argument names, or environment variable names from the parent Package. In Remote context, they reference variables from the transport's 'variables' object. After variable substitution, this should produce a valid URI.",
        -        "pattern": "^(https?://[^\\s]+|\\{[a-zA-Z_][a-zA-Z0-9_]*\\}[^\\s]*)$",
        -        "type": "string"
        -      }
        -    },
        -    "required": [
        -      "type",
        -      "url"
        -    ],
        -    "type": "object"
        -  }
        -]New value: +[
        +  {
        +    "properties": {
        +      "type": {
        +        "description": "Transport type",
        +        "enum": [
        +          "stdio"
        +        ],
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "properties": {
        +      "headers": {
        +        "description": "HTTP headers to include",
        +        "items": {
        +          "allOf": [
        +            {
        +              "allOf": [
        +                {
        +                  "properties": {
        +                    "choices": {
        +                      "description": "A list of possible values for the input. If provided, the user must select one of these values.",
        +                      "items": {
        +                        "type": "string"
        +                      },
        +                      "type": "array"
        +                    },
        +                    "default": {
        +                      "description": "The default value for the input.  This should be a valid value for the input.  If you want to provide input examples or guidance, use the `placeholder` field instead.",
        +                      "type": "string"
        +                    },
        +                    "description": {
        +                      "description": "A description of the input, which clients can use to provide context to the user.",
        +                      "type": "string"
        +                    },
        +                    "format": {
        +                      "description": "Specifies the input format. Supported values include `filepath`, which should be interpreted as a file on the user's filesystem.\n\nWhen the input is converted to a string, booleans should be represented by the strings \"true\" and \"false\", and numbers should be represented as decimal values.",
        +                      "enum": [
        +                        "string",
        +                        "number",
        +                        "boolean",
        +                        "filepath"
        +                      ],
        +                      "type": "string"
        +                    },
        +                    "isRequired": {
        +                      "type": "boolean"
        +                    },
        +                    "isSecret": {
        +                      "description": "Indicates whether the input is a secret value (e.g., password, token). If true, clients should handle the value securely.",
        +                      "type": "boolean"
        +                    },
        +                    "placeholder": {
        +                      "description": "A placeholder for the input to be displaying during configuration. This is used to provide examples or guidance about the expected form or content of the input.",
        +                      "type": "string"
        +                    },
        +                    "value": {
        +                      "description": "The value for the input. If this is not set, the user may be prompted to provide a value. If a value is set, it should not be configurable by end users.\n\nIdentifiers wrapped in `{curly_braces}` will be replaced with the corresponding properties from the input `variables` map. If an identifier in braces is not found in `variables`, or if `variables` is not provided, the `{curly_braces}` substring should remain unchanged.\n",
        +                      "type": "string"
        +                    }
        +                  },
        +                  "type": "object"
        +                },
        +                {
        +                  "properties": {
        +                    "variables": {
        +                      "additionalProperties": {
        +                        "$ref": "#/components/schemas/Input"
        +                      },
        +                      "description": "A map of variable names to their values. Keys in the input `value` that are wrapped in `{curly_braces}` will be replaced with the corresponding variable values.",
        +                      "properties": {},
        +                      "type": "object"
        +                    }
        +                  },
        +                  "type": "object"
        +                }
        +              ]
        +            },
        +            {
        +              "properties": {
        +                "name": {
        +                  "description": "Name of the header or environment variable.",
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "name"
        +              ],
        +              "type": "object"
        +            }
        +          ]
        +        },
        +        "type": "array"
        +      },
        +      "type": {
        +        "description": "Transport type",
        +        "enum": [
        +          "streamable-http"
        +        ],
        +        "type": "string"
        +      },
        +      "url": {
        +        "description": "URL template for the streamable-http transport. Variables in {curly_braces} are resolved based on context: In Package context, they reference argument valueHints, argument names, or environment variable names from the parent Package. In Remote context, they reference variables from the transport's 'variables' object. After variable substitution, this should produce a valid URI.",
        +        "pattern": "^https?://[^\\s]+$",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type",
        +      "url"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "properties": {
        +      "headers": {
        +        "description": "HTTP headers to include",
        +        "items": {
        +          "allOf": [
        +            {
        +              "allOf": [
        +                {
        +                  "properties": {
        +                    "choices": {
        +                      "description": "A list of possible values for the input. If provided, the user must select one of these values.",
        +                      "items": {
        +                        "type": "string"
        +                      },
        +                      "type": "array"
        +                    },
        +                    "default": {
        +                      "description": "The default value for the input.  This should be a valid value for the input.  If you want to provide input examples or guidance, use the `placeholder` field instead.",
        +                      "type": "string"
        +                    },
        +                    "description": {
        +                      "description": "A description of the input, which clients can use to provide context to the user.",
        +                      "type": "string"
        +                    },
        +                    "format": {
        +                      "description": "Specifies the input format. Supported values include `filepath`, which should be interpreted as a file on the user's filesystem.\n\nWhen the input is converted to a string, booleans should be represented by the strings \"true\" and \"false\", and numbers should be represented as decimal values.",
        +                      "enum": [
        +                        "string",
        +                        "number",
        +                        "boolean",
        +                        "filepath"
        +                      ],
        +                      "type": "string"
        +                    },
        +                    "isRequired": {
        +                      "type": "boolean"
        +                    },
        +                    "isSecret": {
        +                      "description": "Indicates whether the input is a secret value (e.g., password, token). If true, clients should handle the value securely.",
        +                      "type": "boolean"
        +                    },
        +                    "placeholder": {
        +                      "description": "A placeholder for the input to be displaying during configuration. This is used to provide examples or guidance about the expected form or content of the input.",
        +                      "type": "string"
        +                    },
        +                    "value": {
        +                      "description": "The value for the input. If this is not set, the user may be prompted to provide a value. If a value is set, it should not be configurable by end users.\n\nIdentifiers wrapped in `{curly_braces}` will be replaced with the corresponding properties from the input `variables` map. If an identifier in braces is not found in `variables`, or if `variables` is not provided, the `{curly_braces}` substring should remain unchanged.\n",
        +                      "type": "string"
        +                    }
        +                  },
        +                  "type": "object"
        +                },
        +                {
        +                  "properties": {
        +                    "variables": {
        +                      "additionalProperties": {
        +                        "$ref": "#/components/schemas/Input"
        +                      },
        +                      "description": "A map of variable names to their values. Keys in the input `value` that are wrapped in `{curly_braces}` will be replaced with the corresponding variable values.",
        +                      "properties": {},
        +                      "type": "object"
        +                    }
        +                  },
        +                  "type": "object"
        +                }
        +              ]
        +            },
        +            {
        +              "properties": {
        +                "name": {
        +                  "description": "Name of the header or environment variable.",
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "name"
        +              ],
        +              "type": "object"
        +            }
        +          ]
        +        },
        +        "type": "array"
        +      },
        +      "type": {
        +        "description": "Transport type",
        +        "enum": [
        +          "sse"
        +        ],
        +        "type": "string"
        +      },
        +      "url": {
        +        "description": "Server-Sent Events endpoint URL template. Variables in {curly_braces} are resolved based on context: In Package context, they reference argument valueHints, argument names, or environment variable names from the parent Package. In Remote context, they reference variables from the transport's 'variables' object. After variable substitution, this should produce a valid URI.",
        +        "pattern": "^https?://[^\\s]+$",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type",
        +      "url"
        +    ],
        +    "type": "object"
        +  }
        +]
    • ChangedputV01ServersServerNameVersionsVersion1 field changed
      • changedInput schema / properties / undefinedBody / properties / packages / items / properties / transport / anyOf
        Previous value: -[
        -  {
        -    "properties": {
        -      "type": {
        -        "description": "Transport type",
        -        "enum": [
        -          "stdio"
        -        ],
        -        "type": "string"
        -      }
        -    },
        -    "required": [
        -      "type"
        -    ],
        -    "type": "object"
        -  },
        -  {
        -    "properties": {
        -      "headers": {
        -        "description": "HTTP headers to include",
        -        "items": {
        -          "allOf": [
        -            {
        -              "allOf": [
        -                {
        -                  "properties": {
        -                    "choices": {
        -                      "description": "A list of possible values for the input. If provided, the user must select one of these values.",
        -                      "items": {
        -                        "type": "string"
        -                      },
        -                      "type": "array"
        -                    },
        -                    "default": {
        -                      "description": "The default value for the input.  This should be a valid value for the input.  If you want to provide input examples or guidance, use the `placeholder` field instead.",
        -                      "type": "string"
        -                    },
        -                    "description": {
        -                      "description": "A description of the input, which clients can use to provide context to the user.",
        -                      "type": "string"
        -                    },
        -                    "format": {
        -                      "description": "Specifies the input format. Supported values include `filepath`, which should be interpreted as a file on the user's filesystem.\n\nWhen the input is converted to a string, booleans should be represented by the strings \"true\" and \"false\", and numbers should be represented as decimal values.",
        -                      "enum": [
        -                        "string",
        -                        "number",
        -                        "boolean",
        -                        "filepath"
        -                      ],
        -                      "type": "string"
        -                    },
        -                    "isRequired": {
        -                      "type": "boolean"
        -                    },
        -                    "isSecret": {
        -                      "description": "Indicates whether the input is a secret value (e.g., password, token). If true, clients should handle the value securely.",
        -                      "type": "boolean"
        -                    },
        -                    "placeholder": {
        -                      "description": "A placeholder for the input to be displaying during configuration. This is used to provide examples or guidance about the expected form or content of the input.",
        -                      "type": "string"
        -                    },
        -                    "value": {
        -                      "description": "The value for the input. If this is not set, the user may be prompted to provide a value. If a value is set, it should not be configurable by end users.\n\nIdentifiers wrapped in `{curly_braces}` will be replaced with the corresponding properties from the input `variables` map. If an identifier in braces is not found in `variables`, or if `variables` is not provided, the `{curly_braces}` substring should remain unchanged.\n",
        -                      "type": "string"
        -                    }
        -                  },
        -                  "type": "object"
        -                },
        -                {
        -                  "properties": {
        -                    "variables": {
        -                      "additionalProperties": {
        -                        "$ref": "#/components/schemas/Input"
        -                      },
        -                      "description": "A map of variable names to their values. Keys in the input `value` that are wrapped in `{curly_braces}` will be replaced with the corresponding variable values.",
        -                      "properties": {},
        -                      "type": "object"
        -                    }
        -                  },
        -                  "type": "object"
        -                }
        -              ]
        -            },
        -            {
        -              "properties": {
        -                "name": {
        -                  "description": "Name of the header or environment variable.",
        -                  "type": "string"
        -                }
        -              },
        -              "required": [
        -                "name"
        -              ],
        -              "type": "object"
        -            }
        -          ]
        -        },
        -        "type": "array"
        -      },
        -      "type": {
        -        "description": "Transport type",
        -        "enum": [
        -          "streamable-http"
        -        ],
        -        "type": "string"
        -      },
        -      "url": {
        -        "description": "URL template for the streamable-http transport. Must start with http://, https://, or a template variable (e.g., {baseUrl}). Variables in {curly_braces} are resolved based on context: In Package context, they reference argument valueHints, argument names, or environment variable names from the parent Package. In Remote context, they reference variables from the transport's 'variables' object. After variable substitution, this should produce a valid URI.",
        -        "pattern": "^(https?://[^\\s]+|\\{[a-zA-Z_][a-zA-Z0-9_]*\\}[^\\s]*)$",
        -        "type": "string"
        -      }
        -    },
        -    "required": [
        -      "type",
        -      "url"
        -    ],
        -    "type": "object"
        -  },
        -  {
        -    "properties": {
        -      "headers": {
        -        "description": "HTTP headers to include",
        -        "items": {
        -          "allOf": [
        -            {
        -              "allOf": [
        -                {
        -                  "properties": {
        -                    "choices": {
        -                      "description": "A list of possible values for the input. If provided, the user must select one of these values.",
        -                      "items": {
        -                        "type": "string"
        -                      },
        -                      "type": "array"
        -                    },
        -                    "default": {
        -                      "description": "The default value for the input.  This should be a valid value for the input.  If you want to provide input examples or guidance, use the `placeholder` field instead.",
        -                      "type": "string"
        -                    },
        -                    "description": {
        -                      "description": "A description of the input, which clients can use to provide context to the user.",
        -                      "type": "string"
        -                    },
        -                    "format": {
        -                      "description": "Specifies the input format. Supported values include `filepath`, which should be interpreted as a file on the user's filesystem.\n\nWhen the input is converted to a string, booleans should be represented by the strings \"true\" and \"false\", and numbers should be represented as decimal values.",
        -                      "enum": [
        -                        "string",
        -                        "number",
        -                        "boolean",
        -                        "filepath"
        -                      ],
        -                      "type": "string"
        -                    },
        -                    "isRequired": {
        -                      "type": "boolean"
        -                    },
        -                    "isSecret": {
        -                      "description": "Indicates whether the input is a secret value (e.g., password, token). If true, clients should handle the value securely.",
        -                      "type": "boolean"
        -                    },
        -                    "placeholder": {
        -                      "description": "A placeholder for the input to be displaying during configuration. This is used to provide examples or guidance about the expected form or content of the input.",
        -                      "type": "string"
        -                    },
        -                    "value": {
        -                      "description": "The value for the input. If this is not set, the user may be prompted to provide a value. If a value is set, it should not be configurable by end users.\n\nIdentifiers wrapped in `{curly_braces}` will be replaced with the corresponding properties from the input `variables` map. If an identifier in braces is not found in `variables`, or if `variables` is not provided, the `{curly_braces}` substring should remain unchanged.\n",
        -                      "type": "string"
        -                    }
        -                  },
        -                  "type": "object"
        -                },
        -                {
        -                  "properties": {
        -                    "variables": {
        -                      "additionalProperties": {
        -                        "$ref": "#/components/schemas/Input"
        -                      },
        -                      "description": "A map of variable names to their values. Keys in the input `value` that are wrapped in `{curly_braces}` will be replaced with the corresponding variable values.",
        -                      "properties": {},
        -                      "type": "object"
        -                    }
        -                  },
        -                  "type": "object"
        -                }
        -              ]
        -            },
        -            {
        -              "properties": {
        -                "name": {
        -                  "description": "Name of the header or environment variable.",
        -                  "type": "string"
        -                }
        -              },
        -              "required": [
        -                "name"
        -              ],
        -              "type": "object"
        -            }
        -          ]
        -        },
        -        "type": "array"
        -      },
        -      "type": {
        -        "description": "Transport type",
        -        "enum": [
        -          "sse"
        -        ],
        -        "type": "string"
        -      },
        -      "url": {
        -        "description": "Server-Sent Events endpoint URL template. Must start with http://, https://, or a template variable (e.g., {baseUrl}). Variables in {curly_braces} are resolved based on context: In Package context, they reference argument valueHints, argument names, or environment variable names from the parent Package. In Remote context, they reference variables from the transport's 'variables' object. After variable substitution, this should produce a valid URI.",
        -        "pattern": "^(https?://[^\\s]+|\\{[a-zA-Z_][a-zA-Z0-9_]*\\}[^\\s]*)$",
        -        "type": "string"
        -      }
        -    },
        -    "required": [
        -      "type",
        -      "url"
        -    ],
        -    "type": "object"
        -  }
        -]New value: +[
        +  {
        +    "properties": {
        +      "type": {
        +        "description": "Transport type",
        +        "enum": [
        +          "stdio"
        +        ],
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "properties": {
        +      "headers": {
        +        "description": "HTTP headers to include",
        +        "items": {
        +          "allOf": [
        +            {
        +              "allOf": [
        +                {
        +                  "properties": {
        +                    "choices": {
        +                      "description": "A list of possible values for the input. If provided, the user must select one of these values.",
        +                      "items": {
        +                        "type": "string"
        +                      },
        +                      "type": "array"
        +                    },
        +                    "default": {
        +                      "description": "The default value for the input.  This should be a valid value for the input.  If you want to provide input examples or guidance, use the `placeholder` field instead.",
        +                      "type": "string"
        +                    },
        +                    "description": {
        +                      "description": "A description of the input, which clients can use to provide context to the user.",
        +                      "type": "string"
        +                    },
        +                    "format": {
        +                      "description": "Specifies the input format. Supported values include `filepath`, which should be interpreted as a file on the user's filesystem.\n\nWhen the input is converted to a string, booleans should be represented by the strings \"true\" and \"false\", and numbers should be represented as decimal values.",
        +                      "enum": [
        +                        "string",
        +                        "number",
        +                        "boolean",
        +                        "filepath"
        +                      ],
        +                      "type": "string"
        +                    },
        +                    "isRequired": {
        +                      "type": "boolean"
        +                    },
        +                    "isSecret": {
        +                      "description": "Indicates whether the input is a secret value (e.g., password, token). If true, clients should handle the value securely.",
        +                      "type": "boolean"
        +                    },
        +                    "placeholder": {
        +                      "description": "A placeholder for the input to be displaying during configuration. This is used to provide examples or guidance about the expected form or content of the input.",
        +                      "type": "string"
        +                    },
        +                    "value": {
        +                      "description": "The value for the input. If this is not set, the user may be prompted to provide a value. If a value is set, it should not be configurable by end users.\n\nIdentifiers wrapped in `{curly_braces}` will be replaced with the corresponding properties from the input `variables` map. If an identifier in braces is not found in `variables`, or if `variables` is not provided, the `{curly_braces}` substring should remain unchanged.\n",
        +                      "type": "string"
        +                    }
        +                  },
        +                  "type": "object"
        +                },
        +                {
        +                  "properties": {
        +                    "variables": {
        +                      "additionalProperties": {
        +                        "$ref": "#/components/schemas/Input"
        +                      },
        +                      "description": "A map of variable names to their values. Keys in the input `value` that are wrapped in `{curly_braces}` will be replaced with the corresponding variable values.",
        +                      "properties": {},
        +                      "type": "object"
        +                    }
        +                  },
        +                  "type": "object"
        +                }
        +              ]
        +            },
        +            {
        +              "properties": {
        +                "name": {
        +                  "description": "Name of the header or environment variable.",
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "name"
        +              ],
        +              "type": "object"
        +            }
        +          ]
        +        },
        +        "type": "array"
        +      },
        +      "type": {
        +        "description": "Transport type",
        +        "enum": [
        +          "streamable-http"
        +        ],
        +        "type": "string"
        +      },
        +      "url": {
        +        "description": "URL template for the streamable-http transport. Variables in {curly_braces} are resolved based on context: In Package context, they reference argument valueHints, argument names, or environment variable names from the parent Package. In Remote context, they reference variables from the transport's 'variables' object. After variable substitution, this should produce a valid URI.",
        +        "pattern": "^https?://[^\\s]+$",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type",
        +      "url"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "properties": {
        +      "headers": {
        +        "description": "HTTP headers to include",
        +        "items": {
        +          "allOf": [
        +            {
        +              "allOf": [
        +                {
        +                  "properties": {
        +                    "choices": {
        +                      "description": "A list of possible values for the input. If provided, the user must select one of these values.",
        +                      "items": {
        +                        "type": "string"
        +                      },
        +                      "type": "array"
        +                    },
        +                    "default": {
        +                      "description": "The default value for the input.  This should be a valid value for the input.  If you want to provide input examples or guidance, use the `placeholder` field instead.",
        +                      "type": "string"
        +                    },
        +                    "description": {
        +                      "description": "A description of the input, which clients can use to provide context to the user.",
        +                      "type": "string"
        +                    },
        +                    "format": {
        +                      "description": "Specifies the input format. Supported values include `filepath`, which should be interpreted as a file on the user's filesystem.\n\nWhen the input is converted to a string, booleans should be represented by the strings \"true\" and \"false\", and numbers should be represented as decimal values.",
        +                      "enum": [
        +                        "string",
        +                        "number",
        +                        "boolean",
        +                        "filepath"
        +                      ],
        +                      "type": "string"
        +                    },
        +                    "isRequired": {
        +                      "type": "boolean"
        +                    },
        +                    "isSecret": {
        +                      "description": "Indicates whether the input is a secret value (e.g., password, token). If true, clients should handle the value securely.",
        +                      "type": "boolean"
        +                    },
        +                    "placeholder": {
        +                      "description": "A placeholder for the input to be displaying during configuration. This is used to provide examples or guidance about the expected form or content of the input.",
        +                      "type": "string"
        +                    },
        +                    "value": {
        +                      "description": "The value for the input. If this is not set, the user may be prompted to provide a value. If a value is set, it should not be configurable by end users.\n\nIdentifiers wrapped in `{curly_braces}` will be replaced with the corresponding properties from the input `variables` map. If an identifier in braces is not found in `variables`, or if `variables` is not provided, the `{curly_braces}` substring should remain unchanged.\n",
        +                      "type": "string"
        +                    }
        +                  },
        +                  "type": "object"
        +                },
        +                {
        +                  "properties": {
        +                    "variables": {
        +                      "additionalProperties": {
        +                        "$ref": "#/components/schemas/Input"
        +                      },
        +                      "description": "A map of variable names to their values. Keys in the input `value` that are wrapped in `{curly_braces}` will be replaced with the corresponding variable values.",
        +                      "properties": {},
        +                      "type": "object"
        +                    }
        +                  },
        +                  "type": "object"
        +                }
        +              ]
        +            },
        +            {
        +              "properties": {
        +                "name": {
        +                  "description": "Name of the header or environment variable.",
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "name"
        +              ],
        +              "type": "object"
        +            }
        +          ]
        +        },
        +        "type": "array"
        +      },
        +      "type": {
        +        "description": "Transport type",
        +        "enum": [
        +          "sse"
        +        ],
        +        "type": "string"
        +      },
        +      "url": {
        +        "description": "Server-Sent Events endpoint URL template. Variables in {curly_braces} are resolved based on context: In Package context, they reference argument valueHints, argument names, or environment variable names from the parent Package. In Remote context, they reference variables from the transport's 'variables' object. After variable substitution, this should produce a valid URI.",
        +        "pattern": "^https?://[^\\s]+$",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type",
        +      "url"
        +    ],
        +    "type": "object"
        +  }
        +]
  9. 2 tool updates
    • ChangedpostV01Publish1 field changed
      • changedInput schema / properties / undefinedBody / properties / packages / items / properties / transport / anyOf
        Previous value: -[
        -  {
        -    "properties": {
        -      "type": {
        -        "description": "Transport type",
        -        "enum": [
        -          "stdio"
        -        ],
        -        "type": "string"
        -      }
        -    },
        -    "required": [
        -      "type"
        -    ],
        -    "type": "object"
        -  },
        -  {
        -    "properties": {
        -      "headers": {
        -        "description": "HTTP headers to include",
        -        "items": {
        -          "allOf": [
        -            {
        -              "allOf": [
        -                {
        -                  "properties": {
        -                    "choices": {
        -                      "description": "A list of possible values for the input. If provided, the user must select one of these values.",
        -                      "items": {
        -                        "type": "string"
        -                      },
        -                      "type": "array"
        -                    },
        -                    "default": {
        -                      "description": "The default value for the input.  This should be a valid value for the input.  If you want to provide input examples or guidance, use the `placeholder` field instead.",
        -                      "type": "string"
        -                    },
        -                    "description": {
        -                      "description": "A description of the input, which clients can use to provide context to the user.",
        -                      "type": "string"
        -                    },
        -                    "format": {
        -                      "description": "Specifies the input format. Supported values include `filepath`, which should be interpreted as a file on the user's filesystem.\n\nWhen the input is converted to a string, booleans should be represented by the strings \"true\" and \"false\", and numbers should be represented as decimal values.",
        -                      "enum": [
        -                        "string",
        -                        "number",
        -                        "boolean",
        -                        "filepath"
        -                      ],
        -                      "type": "string"
        -                    },
        -                    "isRequired": {
        -                      "type": "boolean"
        -                    },
        -                    "isSecret": {
        -                      "description": "Indicates whether the input is a secret value (e.g., password, token). If true, clients should handle the value securely.",
        -                      "type": "boolean"
        -                    },
        -                    "placeholder": {
        -                      "description": "A placeholder for the input to be displaying during configuration. This is used to provide examples or guidance about the expected form or content of the input.",
        -                      "type": "string"
        -                    },
        -                    "value": {
        -                      "description": "The value for the input. If this is not set, the user may be prompted to provide a value. If a value is set, it should not be configurable by end users.\n\nIdentifiers wrapped in `{curly_braces}` will be replaced with the corresponding properties from the input `variables` map. If an identifier in braces is not found in `variables`, or if `variables` is not provided, the `{curly_braces}` substring should remain unchanged.\n",
        -                      "type": "string"
        -                    }
        -                  },
        -                  "type": "object"
        -                },
        -                {
        -                  "properties": {
        -                    "variables": {
        -                      "additionalProperties": {
        -                        "$ref": "#/components/schemas/Input"
        -                      },
        -                      "description": "A map of variable names to their values. Keys in the input `value` that are wrapped in `{curly_braces}` will be replaced with the corresponding variable values.",
        -                      "properties": {},
        -                      "type": "object"
        -                    }
        -                  },
        -                  "type": "object"
        -                }
        -              ]
        -            },
        -            {
        -              "properties": {
        -                "name": {
        -                  "description": "Name of the header or environment variable.",
        -                  "type": "string"
        -                }
        -              },
        -              "required": [
        -                "name"
        -              ],
        -              "type": "object"
        -            }
        -          ]
        -        },
        -        "type": "array"
        -      },
        -      "type": {
        -        "description": "Transport type",
        -        "enum": [
        -          "streamable-http"
        -        ],
        -        "type": "string"
        -      },
        -      "url": {
        -        "description": "URL template for the streamable-http transport. Variables in {curly_braces} are resolved based on context: In Package context, they reference argument valueHints, argument names, or environment variable names from the parent Package. In Remote context, they reference variables from the transport's 'variables' object. After variable substitution, this should produce a valid URI.",
        -        "pattern": "^https?://[^\\s]+$",
        -        "type": "string"
        -      }
        -    },
        -    "required": [
        -      "type",
        -      "url"
        -    ],
        -    "type": "object"
        -  },
        -  {
        -    "properties": {
        -      "headers": {
        -        "description": "HTTP headers to include",
        -        "items": {
        -          "allOf": [
        -            {
        -              "allOf": [
        -                {
        -                  "properties": {
        -                    "choices": {
        -                      "description": "A list of possible values for the input. If provided, the user must select one of these values.",
        -                      "items": {
        -                        "type": "string"
        -                      },
        -                      "type": "array"
        -                    },
        -                    "default": {
        -                      "description": "The default value for the input.  This should be a valid value for the input.  If you want to provide input examples or guidance, use the `placeholder` field instead.",
        -                      "type": "string"
        -                    },
        -                    "description": {
        -                      "description": "A description of the input, which clients can use to provide context to the user.",
        -                      "type": "string"
        -                    },
        -                    "format": {
        -                      "description": "Specifies the input format. Supported values include `filepath`, which should be interpreted as a file on the user's filesystem.\n\nWhen the input is converted to a string, booleans should be represented by the strings \"true\" and \"false\", and numbers should be represented as decimal values.",
        -                      "enum": [
        -                        "string",
        -                        "number",
        -                        "boolean",
        -                        "filepath"
        -                      ],
        -                      "type": "string"
        -                    },
        -                    "isRequired": {
        -                      "type": "boolean"
        -                    },
        -                    "isSecret": {
        -                      "description": "Indicates whether the input is a secret value (e.g., password, token). If true, clients should handle the value securely.",
        -                      "type": "boolean"
        -                    },
        -                    "placeholder": {
        -                      "description": "A placeholder for the input to be displaying during configuration. This is used to provide examples or guidance about the expected form or content of the input.",
        -                      "type": "string"
        -                    },
        -                    "value": {
        -                      "description": "The value for the input. If this is not set, the user may be prompted to provide a value. If a value is set, it should not be configurable by end users.\n\nIdentifiers wrapped in `{curly_braces}` will be replaced with the corresponding properties from the input `variables` map. If an identifier in braces is not found in `variables`, or if `variables` is not provided, the `{curly_braces}` substring should remain unchanged.\n",
        -                      "type": "string"
        -                    }
        -                  },
        -                  "type": "object"
        -                },
        -                {
        -                  "properties": {
        -                    "variables": {
        -                      "additionalProperties": {
        -                        "$ref": "#/components/schemas/Input"
        -                      },
        -                      "description": "A map of variable names to their values. Keys in the input `value` that are wrapped in `{curly_braces}` will be replaced with the corresponding variable values.",
        -                      "properties": {},
        -                      "type": "object"
        -                    }
        -                  },
        -                  "type": "object"
        -                }
        -              ]
        -            },
        -            {
        -              "properties": {
        -                "name": {
        -                  "description": "Name of the header or environment variable.",
        -                  "type": "string"
        -                }
        -              },
        -              "required": [
        -                "name"
        -              ],
        -              "type": "object"
        -            }
        -          ]
        -        },
        -        "type": "array"
        -      },
        -      "type": {
        -        "description": "Transport type",
        -        "enum": [
        -          "sse"
        -        ],
        -        "type": "string"
        -      },
        -      "url": {
        -        "description": "Server-Sent Events endpoint URL template. Variables in {curly_braces} are resolved based on context: In Package context, they reference argument valueHints, argument names, or environment variable names from the parent Package. In Remote context, they reference variables from the transport's 'variables' object. After variable substitution, this should produce a valid URI.",
        -        "pattern": "^https?://[^\\s]+$",
        -        "type": "string"
        -      }
        -    },
        -    "required": [
        -      "type",
        -      "url"
        -    ],
        -    "type": "object"
        -  }
        -]New value: +[
        +  {
        +    "properties": {
        +      "type": {
        +        "description": "Transport type",
        +        "enum": [
        +          "stdio"
        +        ],
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "properties": {
        +      "headers": {
        +        "description": "HTTP headers to include",
        +        "items": {
        +          "allOf": [
        +            {
        +              "allOf": [
        +                {
        +                  "properties": {
        +                    "choices": {
        +                      "description": "A list of possible values for the input. If provided, the user must select one of these values.",
        +                      "items": {
        +                        "type": "string"
        +                      },
        +                      "type": "array"
        +                    },
        +                    "default": {
        +                      "description": "The default value for the input.  This should be a valid value for the input.  If you want to provide input examples or guidance, use the `placeholder` field instead.",
        +                      "type": "string"
        +                    },
        +                    "description": {
        +                      "description": "A description of the input, which clients can use to provide context to the user.",
        +                      "type": "string"
        +                    },
        +                    "format": {
        +                      "description": "Specifies the input format. Supported values include `filepath`, which should be interpreted as a file on the user's filesystem.\n\nWhen the input is converted to a string, booleans should be represented by the strings \"true\" and \"false\", and numbers should be represented as decimal values.",
        +                      "enum": [
        +                        "string",
        +                        "number",
        +                        "boolean",
        +                        "filepath"
        +                      ],
        +                      "type": "string"
        +                    },
        +                    "isRequired": {
        +                      "type": "boolean"
        +                    },
        +                    "isSecret": {
        +                      "description": "Indicates whether the input is a secret value (e.g., password, token). If true, clients should handle the value securely.",
        +                      "type": "boolean"
        +                    },
        +                    "placeholder": {
        +                      "description": "A placeholder for the input to be displaying during configuration. This is used to provide examples or guidance about the expected form or content of the input.",
        +                      "type": "string"
        +                    },
        +                    "value": {
        +                      "description": "The value for the input. If this is not set, the user may be prompted to provide a value. If a value is set, it should not be configurable by end users.\n\nIdentifiers wrapped in `{curly_braces}` will be replaced with the corresponding properties from the input `variables` map. If an identifier in braces is not found in `variables`, or if `variables` is not provided, the `{curly_braces}` substring should remain unchanged.\n",
        +                      "type": "string"
        +                    }
        +                  },
        +                  "type": "object"
        +                },
        +                {
        +                  "properties": {
        +                    "variables": {
        +                      "additionalProperties": {
        +                        "$ref": "#/components/schemas/Input"
        +                      },
        +                      "description": "A map of variable names to their values. Keys in the input `value` that are wrapped in `{curly_braces}` will be replaced with the corresponding variable values.",
        +                      "properties": {},
        +                      "type": "object"
        +                    }
        +                  },
        +                  "type": "object"
        +                }
        +              ]
        +            },
        +            {
        +              "properties": {
        +                "name": {
        +                  "description": "Name of the header or environment variable.",
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "name"
        +              ],
        +              "type": "object"
        +            }
        +          ]
        +        },
        +        "type": "array"
        +      },
        +      "type": {
        +        "description": "Transport type",
        +        "enum": [
        +          "streamable-http"
        +        ],
        +        "type": "string"
        +      },
        +      "url": {
        +        "description": "URL template for the streamable-http transport. Must start with http://, https://, or a template variable (e.g., {baseUrl}). Variables in {curly_braces} are resolved based on context: In Package context, they reference argument valueHints, argument names, or environment variable names from the parent Package. In Remote context, they reference variables from the transport's 'variables' object. After variable substitution, this should produce a valid URI.",
        +        "pattern": "^(https?://[^\\s]+|\\{[a-zA-Z_][a-zA-Z0-9_]*\\}[^\\s]*)$",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type",
        +      "url"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "properties": {
        +      "headers": {
        +        "description": "HTTP headers to include",
        +        "items": {
        +          "allOf": [
        +            {
        +              "allOf": [
        +                {
        +                  "properties": {
        +                    "choices": {
        +                      "description": "A list of possible values for the input. If provided, the user must select one of these values.",
        +                      "items": {
        +                        "type": "string"
        +                      },
        +                      "type": "array"
        +                    },
        +                    "default": {
        +                      "description": "The default value for the input.  This should be a valid value for the input.  If you want to provide input examples or guidance, use the `placeholder` field instead.",
        +                      "type": "string"
        +                    },
        +                    "description": {
        +                      "description": "A description of the input, which clients can use to provide context to the user.",
        +                      "type": "string"
        +                    },
        +                    "format": {
        +                      "description": "Specifies the input format. Supported values include `filepath`, which should be interpreted as a file on the user's filesystem.\n\nWhen the input is converted to a string, booleans should be represented by the strings \"true\" and \"false\", and numbers should be represented as decimal values.",
        +                      "enum": [
        +                        "string",
        +                        "number",
        +                        "boolean",
        +                        "filepath"
        +                      ],
        +                      "type": "string"
        +                    },
        +                    "isRequired": {
        +                      "type": "boolean"
        +                    },
        +                    "isSecret": {
        +                      "description": "Indicates whether the input is a secret value (e.g., password, token). If true, clients should handle the value securely.",
        +                      "type": "boolean"
        +                    },
        +                    "placeholder": {
        +                      "description": "A placeholder for the input to be displaying during configuration. This is used to provide examples or guidance about the expected form or content of the input.",
        +                      "type": "string"
        +                    },
        +                    "value": {
        +                      "description": "The value for the input. If this is not set, the user may be prompted to provide a value. If a value is set, it should not be configurable by end users.\n\nIdentifiers wrapped in `{curly_braces}` will be replaced with the corresponding properties from the input `variables` map. If an identifier in braces is not found in `variables`, or if `variables` is not provided, the `{curly_braces}` substring should remain unchanged.\n",
        +                      "type": "string"
        +                    }
        +                  },
        +                  "type": "object"
        +                },
        +                {
        +                  "properties": {
        +                    "variables": {
        +                      "additionalProperties": {
        +                        "$ref": "#/components/schemas/Input"
        +                      },
        +                      "description": "A map of variable names to their values. Keys in the input `value` that are wrapped in `{curly_braces}` will be replaced with the corresponding variable values.",
        +                      "properties": {},
        +                      "type": "object"
        +                    }
        +                  },
        +                  "type": "object"
        +                }
        +              ]
        +            },
        +            {
        +              "properties": {
        +                "name": {
        +                  "description": "Name of the header or environment variable.",
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "name"
        +              ],
        +              "type": "object"
        +            }
        +          ]
        +        },
        +        "type": "array"
        +      },
        +      "type": {
        +        "description": "Transport type",
        +        "enum": [
        +          "sse"
        +        ],
        +        "type": "string"
        +      },
        +      "url": {
        +        "description": "Server-Sent Events endpoint URL template. Must start with http://, https://, or a template variable (e.g., {baseUrl}). Variables in {curly_braces} are resolved based on context: In Package context, they reference argument valueHints, argument names, or environment variable names from the parent Package. In Remote context, they reference variables from the transport's 'variables' object. After variable substitution, this should produce a valid URI.",
        +        "pattern": "^(https?://[^\\s]+|\\{[a-zA-Z_][a-zA-Z0-9_]*\\}[^\\s]*)$",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type",
        +      "url"
        +    ],
        +    "type": "object"
        +  }
        +]
    • ChangedputV01ServersServerNameVersionsVersion1 field changed
      • changedInput schema / properties / undefinedBody / properties / packages / items / properties / transport / anyOf
        Previous value: -[
        -  {
        -    "properties": {
        -      "type": {
        -        "description": "Transport type",
        -        "enum": [
        -          "stdio"
        -        ],
        -        "type": "string"
        -      }
        -    },
        -    "required": [
        -      "type"
        -    ],
        -    "type": "object"
        -  },
        -  {
        -    "properties": {
        -      "headers": {
        -        "description": "HTTP headers to include",
        -        "items": {
        -          "allOf": [
        -            {
        -              "allOf": [
        -                {
        -                  "properties": {
        -                    "choices": {
        -                      "description": "A list of possible values for the input. If provided, the user must select one of these values.",
        -                      "items": {
        -                        "type": "string"
        -                      },
        -                      "type": "array"
        -                    },
        -                    "default": {
        -                      "description": "The default value for the input.  This should be a valid value for the input.  If you want to provide input examples or guidance, use the `placeholder` field instead.",
        -                      "type": "string"
        -                    },
        -                    "description": {
        -                      "description": "A description of the input, which clients can use to provide context to the user.",
        -                      "type": "string"
        -                    },
        -                    "format": {
        -                      "description": "Specifies the input format. Supported values include `filepath`, which should be interpreted as a file on the user's filesystem.\n\nWhen the input is converted to a string, booleans should be represented by the strings \"true\" and \"false\", and numbers should be represented as decimal values.",
        -                      "enum": [
        -                        "string",
        -                        "number",
        -                        "boolean",
        -                        "filepath"
        -                      ],
        -                      "type": "string"
        -                    },
        -                    "isRequired": {
        -                      "type": "boolean"
        -                    },
        -                    "isSecret": {
        -                      "description": "Indicates whether the input is a secret value (e.g., password, token). If true, clients should handle the value securely.",
        -                      "type": "boolean"
        -                    },
        -                    "placeholder": {
        -                      "description": "A placeholder for the input to be displaying during configuration. This is used to provide examples or guidance about the expected form or content of the input.",
        -                      "type": "string"
        -                    },
        -                    "value": {
        -                      "description": "The value for the input. If this is not set, the user may be prompted to provide a value. If a value is set, it should not be configurable by end users.\n\nIdentifiers wrapped in `{curly_braces}` will be replaced with the corresponding properties from the input `variables` map. If an identifier in braces is not found in `variables`, or if `variables` is not provided, the `{curly_braces}` substring should remain unchanged.\n",
        -                      "type": "string"
        -                    }
        -                  },
        -                  "type": "object"
        -                },
        -                {
        -                  "properties": {
        -                    "variables": {
        -                      "additionalProperties": {
        -                        "$ref": "#/components/schemas/Input"
        -                      },
        -                      "description": "A map of variable names to their values. Keys in the input `value` that are wrapped in `{curly_braces}` will be replaced with the corresponding variable values.",
        -                      "properties": {},
        -                      "type": "object"
        -                    }
        -                  },
        -                  "type": "object"
        -                }
        -              ]
        -            },
        -            {
        -              "properties": {
        -                "name": {
        -                  "description": "Name of the header or environment variable.",
        -                  "type": "string"
        -                }
        -              },
        -              "required": [
        -                "name"
        -              ],
        -              "type": "object"
        -            }
        -          ]
        -        },
        -        "type": "array"
        -      },
        -      "type": {
        -        "description": "Transport type",
        -        "enum": [
        -          "streamable-http"
        -        ],
        -        "type": "string"
        -      },
        -      "url": {
        -        "description": "URL template for the streamable-http transport. Variables in {curly_braces} are resolved based on context: In Package context, they reference argument valueHints, argument names, or environment variable names from the parent Package. In Remote context, they reference variables from the transport's 'variables' object. After variable substitution, this should produce a valid URI.",
        -        "pattern": "^https?://[^\\s]+$",
        -        "type": "string"
        -      }
        -    },
        -    "required": [
        -      "type",
        -      "url"
        -    ],
        -    "type": "object"
        -  },
        -  {
        -    "properties": {
        -      "headers": {
        -        "description": "HTTP headers to include",
        -        "items": {
        -          "allOf": [
        -            {
        -              "allOf": [
        -                {
        -                  "properties": {
        -                    "choices": {
        -                      "description": "A list of possible values for the input. If provided, the user must select one of these values.",
        -                      "items": {
        -                        "type": "string"
        -                      },
        -                      "type": "array"
        -                    },
        -                    "default": {
        -                      "description": "The default value for the input.  This should be a valid value for the input.  If you want to provide input examples or guidance, use the `placeholder` field instead.",
        -                      "type": "string"
        -                    },
        -                    "description": {
        -                      "description": "A description of the input, which clients can use to provide context to the user.",
        -                      "type": "string"
        -                    },
        -                    "format": {
        -                      "description": "Specifies the input format. Supported values include `filepath`, which should be interpreted as a file on the user's filesystem.\n\nWhen the input is converted to a string, booleans should be represented by the strings \"true\" and \"false\", and numbers should be represented as decimal values.",
        -                      "enum": [
        -                        "string",
        -                        "number",
        -                        "boolean",
        -                        "filepath"
        -                      ],
        -                      "type": "string"
        -                    },
        -                    "isRequired": {
        -                      "type": "boolean"
        -                    },
        -                    "isSecret": {
        -                      "description": "Indicates whether the input is a secret value (e.g., password, token). If true, clients should handle the value securely.",
        -                      "type": "boolean"
        -                    },
        -                    "placeholder": {
        -                      "description": "A placeholder for the input to be displaying during configuration. This is used to provide examples or guidance about the expected form or content of the input.",
        -                      "type": "string"
        -                    },
        -                    "value": {
        -                      "description": "The value for the input. If this is not set, the user may be prompted to provide a value. If a value is set, it should not be configurable by end users.\n\nIdentifiers wrapped in `{curly_braces}` will be replaced with the corresponding properties from the input `variables` map. If an identifier in braces is not found in `variables`, or if `variables` is not provided, the `{curly_braces}` substring should remain unchanged.\n",
        -                      "type": "string"
        -                    }
        -                  },
        -                  "type": "object"
        -                },
        -                {
        -                  "properties": {
        -                    "variables": {
        -                      "additionalProperties": {
        -                        "$ref": "#/components/schemas/Input"
        -                      },
        -                      "description": "A map of variable names to their values. Keys in the input `value` that are wrapped in `{curly_braces}` will be replaced with the corresponding variable values.",
        -                      "properties": {},
        -                      "type": "object"
        -                    }
        -                  },
        -                  "type": "object"
        -                }
        -              ]
        -            },
        -            {
        -              "properties": {
        -                "name": {
        -                  "description": "Name of the header or environment variable.",
        -                  "type": "string"
        -                }
        -              },
        -              "required": [
        -                "name"
        -              ],
        -              "type": "object"
        -            }
        -          ]
        -        },
        -        "type": "array"
        -      },
        -      "type": {
        -        "description": "Transport type",
        -        "enum": [
        -          "sse"
        -        ],
        -        "type": "string"
        -      },
        -      "url": {
        -        "description": "Server-Sent Events endpoint URL template. Variables in {curly_braces} are resolved based on context: In Package context, they reference argument valueHints, argument names, or environment variable names from the parent Package. In Remote context, they reference variables from the transport's 'variables' object. After variable substitution, this should produce a valid URI.",
        -        "pattern": "^https?://[^\\s]+$",
        -        "type": "string"
        -      }
        -    },
        -    "required": [
        -      "type",
        -      "url"
        -    ],
        -    "type": "object"
        -  }
        -]New value: +[
        +  {
        +    "properties": {
        +      "type": {
        +        "description": "Transport type",
        +        "enum": [
        +          "stdio"
        +        ],
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "properties": {
        +      "headers": {
        +        "description": "HTTP headers to include",
        +        "items": {
        +          "allOf": [
        +            {
        +              "allOf": [
        +                {
        +                  "properties": {
        +                    "choices": {
        +                      "description": "A list of possible values for the input. If provided, the user must select one of these values.",
        +                      "items": {
        +                        "type": "string"
        +                      },
        +                      "type": "array"
        +                    },
        +                    "default": {
        +                      "description": "The default value for the input.  This should be a valid value for the input.  If you want to provide input examples or guidance, use the `placeholder` field instead.",
        +                      "type": "string"
        +                    },
        +                    "description": {
        +                      "description": "A description of the input, which clients can use to provide context to the user.",
        +                      "type": "string"
        +                    },
        +                    "format": {
        +                      "description": "Specifies the input format. Supported values include `filepath`, which should be interpreted as a file on the user's filesystem.\n\nWhen the input is converted to a string, booleans should be represented by the strings \"true\" and \"false\", and numbers should be represented as decimal values.",
        +                      "enum": [
        +                        "string",
        +                        "number",
        +                        "boolean",
        +                        "filepath"
        +                      ],
        +                      "type": "string"
        +                    },
        +                    "isRequired": {
        +                      "type": "boolean"
        +                    },
        +                    "isSecret": {
        +                      "description": "Indicates whether the input is a secret value (e.g., password, token). If true, clients should handle the value securely.",
        +                      "type": "boolean"
        +                    },
        +                    "placeholder": {
        +                      "description": "A placeholder for the input to be displaying during configuration. This is used to provide examples or guidance about the expected form or content of the input.",
        +                      "type": "string"
        +                    },
        +                    "value": {
        +                      "description": "The value for the input. If this is not set, the user may be prompted to provide a value. If a value is set, it should not be configurable by end users.\n\nIdentifiers wrapped in `{curly_braces}` will be replaced with the corresponding properties from the input `variables` map. If an identifier in braces is not found in `variables`, or if `variables` is not provided, the `{curly_braces}` substring should remain unchanged.\n",
        +                      "type": "string"
        +                    }
        +                  },
        +                  "type": "object"
        +                },
        +                {
        +                  "properties": {
        +                    "variables": {
        +                      "additionalProperties": {
        +                        "$ref": "#/components/schemas/Input"
        +                      },
        +                      "description": "A map of variable names to their values. Keys in the input `value` that are wrapped in `{curly_braces}` will be replaced with the corresponding variable values.",
        +                      "properties": {},
        +                      "type": "object"
        +                    }
        +                  },
        +                  "type": "object"
        +                }
        +              ]
        +            },
        +            {
        +              "properties": {
        +                "name": {
        +                  "description": "Name of the header or environment variable.",
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "name"
        +              ],
        +              "type": "object"
        +            }
        +          ]
        +        },
        +        "type": "array"
        +      },
        +      "type": {
        +        "description": "Transport type",
        +        "enum": [
        +          "streamable-http"
        +        ],
        +        "type": "string"
        +      },
        +      "url": {
        +        "description": "URL template for the streamable-http transport. Must start with http://, https://, or a template variable (e.g., {baseUrl}). Variables in {curly_braces} are resolved based on context: In Package context, they reference argument valueHints, argument names, or environment variable names from the parent Package. In Remote context, they reference variables from the transport's 'variables' object. After variable substitution, this should produce a valid URI.",
        +        "pattern": "^(https?://[^\\s]+|\\{[a-zA-Z_][a-zA-Z0-9_]*\\}[^\\s]*)$",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type",
        +      "url"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "properties": {
        +      "headers": {
        +        "description": "HTTP headers to include",
        +        "items": {
        +          "allOf": [
        +            {
        +              "allOf": [
        +                {
        +                  "properties": {
        +                    "choices": {
        +                      "description": "A list of possible values for the input. If provided, the user must select one of these values.",
        +                      "items": {
        +                        "type": "string"
        +                      },
        +                      "type": "array"
        +                    },
        +                    "default": {
        +                      "description": "The default value for the input.  This should be a valid value for the input.  If you want to provide input examples or guidance, use the `placeholder` field instead.",
        +                      "type": "string"
        +                    },
        +                    "description": {
        +                      "description": "A description of the input, which clients can use to provide context to the user.",
        +                      "type": "string"
        +                    },
        +                    "format": {
        +                      "description": "Specifies the input format. Supported values include `filepath`, which should be interpreted as a file on the user's filesystem.\n\nWhen the input is converted to a string, booleans should be represented by the strings \"true\" and \"false\", and numbers should be represented as decimal values.",
        +                      "enum": [
        +                        "string",
        +                        "number",
        +                        "boolean",
        +                        "filepath"
        +                      ],
        +                      "type": "string"
        +                    },
        +                    "isRequired": {
        +                      "type": "boolean"
        +                    },
        +                    "isSecret": {
        +                      "description": "Indicates whether the input is a secret value (e.g., password, token). If true, clients should handle the value securely.",
        +                      "type": "boolean"
        +                    },
        +                    "placeholder": {
        +                      "description": "A placeholder for the input to be displaying during configuration. This is used to provide examples or guidance about the expected form or content of the input.",
        +                      "type": "string"
        +                    },
        +                    "value": {
        +                      "description": "The value for the input. If this is not set, the user may be prompted to provide a value. If a value is set, it should not be configurable by end users.\n\nIdentifiers wrapped in `{curly_braces}` will be replaced with the corresponding properties from the input `variables` map. If an identifier in braces is not found in `variables`, or if `variables` is not provided, the `{curly_braces}` substring should remain unchanged.\n",
        +                      "type": "string"
        +                    }
        +                  },
        +                  "type": "object"
        +                },
        +                {
        +                  "properties": {
        +                    "variables": {
        +                      "additionalProperties": {
        +                        "$ref": "#/components/schemas/Input"
        +                      },
        +                      "description": "A map of variable names to their values. Keys in the input `value` that are wrapped in `{curly_braces}` will be replaced with the corresponding variable values.",
        +                      "properties": {},
        +                      "type": "object"
        +                    }
        +                  },
        +                  "type": "object"
        +                }
        +              ]
        +            },
        +            {
        +              "properties": {
        +                "name": {
        +                  "description": "Name of the header or environment variable.",
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "name"
        +              ],
        +              "type": "object"
        +            }
        +          ]
        +        },
        +        "type": "array"
        +      },
        +      "type": {
        +        "description": "Transport type",
        +        "enum": [
        +          "sse"
        +        ],
        +        "type": "string"
        +      },
        +      "url": {
        +        "description": "Server-Sent Events endpoint URL template. Must start with http://, https://, or a template variable (e.g., {baseUrl}). Variables in {curly_braces} are resolved based on context: In Package context, they reference argument valueHints, argument names, or environment variable names from the parent Package. In Remote context, they reference variables from the transport's 'variables' object. After variable substitution, this should produce a valid URI.",
        +        "pattern": "^(https?://[^\\s]+|\\{[a-zA-Z_][a-zA-Z0-9_]*\\}[^\\s]*)$",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type",
        +      "url"
        +    ],
        +    "type": "object"
        +  }
        +]
  10. 2 tool updates
    • ChangedpostV01Publish1 field changed
      • changedInput schema / properties / undefinedBody / properties / packages / items / properties / transport / anyOf
        Previous value: -[
        -  {
        -    "properties": {
        -      "type": {
        -        "description": "Transport type",
        -        "enum": [
        -          "stdio"
        -        ],
        -        "type": "string"
        -      }
        -    },
        -    "required": [
        -      "type"
        -    ],
        -    "type": "object"
        -  },
        -  {
        -    "properties": {
        -      "headers": {
        -        "description": "HTTP headers to include",
        -        "items": {
        -          "allOf": [
        -            {
        -              "allOf": [
        -                {
        -                  "properties": {
        -                    "choices": {
        -                      "description": "A list of possible values for the input. If provided, the user must select one of these values.",
        -                      "items": {
        -                        "type": "string"
        -                      },
        -                      "type": "array"
        -                    },
        -                    "default": {
        -                      "description": "The default value for the input.  This should be a valid value for the input.  If you want to provide input examples or guidance, use the `placeholder` field instead.",
        -                      "type": "string"
        -                    },
        -                    "description": {
        -                      "description": "A description of the input, which clients can use to provide context to the user.",
        -                      "type": "string"
        -                    },
        -                    "format": {
        -                      "description": "Specifies the input format. Supported values include `filepath`, which should be interpreted as a file on the user's filesystem.\n\nWhen the input is converted to a string, booleans should be represented by the strings \"true\" and \"false\", and numbers should be represented as decimal values.",
        -                      "enum": [
        -                        "string",
        -                        "number",
        -                        "boolean",
        -                        "filepath"
        -                      ],
        -                      "type": "string"
        -                    },
        -                    "isRequired": {
        -                      "type": "boolean"
        -                    },
        -                    "isSecret": {
        -                      "description": "Indicates whether the input is a secret value (e.g., password, token). If true, clients should handle the value securely.",
        -                      "type": "boolean"
        -                    },
        -                    "placeholder": {
        -                      "description": "A placeholder for the input to be displaying during configuration. This is used to provide examples or guidance about the expected form or content of the input.",
        -                      "type": "string"
        -                    },
        -                    "value": {
        -                      "description": "The value for the input. If this is not set, the user may be prompted to provide a value. If a value is set, it should not be configurable by end users.\n\nIdentifiers wrapped in `{curly_braces}` will be replaced with the corresponding properties from the input `variables` map. If an identifier in braces is not found in `variables`, or if `variables` is not provided, the `{curly_braces}` substring should remain unchanged.\n",
        -                      "type": "string"
        -                    }
        -                  },
        -                  "type": "object"
        -                },
        -                {
        -                  "properties": {
        -                    "variables": {
        -                      "additionalProperties": {
        -                        "$ref": "#/components/schemas/Input"
        -                      },
        -                      "description": "A map of variable names to their values. Keys in the input `value` that are wrapped in `{curly_braces}` will be replaced with the corresponding variable values.",
        -                      "properties": {},
        -                      "type": "object"
        -                    }
        -                  },
        -                  "type": "object"
        -                }
        -              ]
        -            },
        -            {
        -              "properties": {
        -                "name": {
        -                  "description": "Name of the header or environment variable.",
        -                  "type": "string"
        -                }
        -              },
        -              "required": [
        -                "name"
        -              ],
        -              "type": "object"
        -            }
        -          ]
        -        },
        -        "type": "array"
        -      },
        -      "type": {
        -        "description": "Transport type",
        -        "enum": [
        -          "streamable-http"
        -        ],
        -        "type": "string"
        -      },
        -      "url": {
        -        "description": "URL template for the streamable-http transport. Must start with http://, https://, or a template variable (e.g., {baseUrl}). Variables in {curly_braces} are resolved based on context: In Package context, they reference argument valueHints, argument names, or environment variable names from the parent Package. In Remote context, they reference variables from the transport's 'variables' object. After variable substitution, this should produce a valid URI.",
        -        "pattern": "^(https?://[^\\s]+|\\{[a-zA-Z_][a-zA-Z0-9_]*\\}[^\\s]*)$",
        -        "type": "string"
        -      }
        -    },
        -    "required": [
        -      "type",
        -      "url"
        -    ],
        -    "type": "object"
        -  },
        -  {
        -    "properties": {
        -      "headers": {
        -        "description": "HTTP headers to include",
        -        "items": {
        -          "allOf": [
        -            {
        -              "allOf": [
        -                {
        -                  "properties": {
        -                    "choices": {
        -                      "description": "A list of possible values for the input. If provided, the user must select one of these values.",
        -                      "items": {
        -                        "type": "string"
        -                      },
        -                      "type": "array"
        -                    },
        -                    "default": {
        -                      "description": "The default value for the input.  This should be a valid value for the input.  If you want to provide input examples or guidance, use the `placeholder` field instead.",
        -                      "type": "string"
        -                    },
        -                    "description": {
        -                      "description": "A description of the input, which clients can use to provide context to the user.",
        -                      "type": "string"
        -                    },
        -                    "format": {
        -                      "description": "Specifies the input format. Supported values include `filepath`, which should be interpreted as a file on the user's filesystem.\n\nWhen the input is converted to a string, booleans should be represented by the strings \"true\" and \"false\", and numbers should be represented as decimal values.",
        -                      "enum": [
        -                        "string",
        -                        "number",
        -                        "boolean",
        -                        "filepath"
        -                      ],
        -                      "type": "string"
        -                    },
        -                    "isRequired": {
        -                      "type": "boolean"
        -                    },
        -                    "isSecret": {
        -                      "description": "Indicates whether the input is a secret value (e.g., password, token). If true, clients should handle the value securely.",
        -                      "type": "boolean"
        -                    },
        -                    "placeholder": {
        -                      "description": "A placeholder for the input to be displaying during configuration. This is used to provide examples or guidance about the expected form or content of the input.",
        -                      "type": "string"
        -                    },
        -                    "value": {
        -                      "description": "The value for the input. If this is not set, the user may be prompted to provide a value. If a value is set, it should not be configurable by end users.\n\nIdentifiers wrapped in `{curly_braces}` will be replaced with the corresponding properties from the input `variables` map. If an identifier in braces is not found in `variables`, or if `variables` is not provided, the `{curly_braces}` substring should remain unchanged.\n",
        -                      "type": "string"
        -                    }
        -                  },
        -                  "type": "object"
        -                },
        -                {
        -                  "properties": {
        -                    "variables": {
        -                      "additionalProperties": {
        -                        "$ref": "#/components/schemas/Input"
        -                      },
        -                      "description": "A map of variable names to their values. Keys in the input `value` that are wrapped in `{curly_braces}` will be replaced with the corresponding variable values.",
        -                      "properties": {},
        -                      "type": "object"
        -                    }
        -                  },
        -                  "type": "object"
        -                }
        -              ]
        -            },
        -            {
        -              "properties": {
        -                "name": {
        -                  "description": "Name of the header or environment variable.",
        -                  "type": "string"
        -                }
        -              },
        -              "required": [
        -                "name"
        -              ],
        -              "type": "object"
        -            }
        -          ]
        -        },
        -        "type": "array"
        -      },
        -      "type": {
        -        "description": "Transport type",
        -        "enum": [
        -          "sse"
        -        ],
        -        "type": "string"
        -      },
        -      "url": {
        -        "description": "Server-Sent Events endpoint URL template. Must start with http://, https://, or a template variable (e.g., {baseUrl}). Variables in {curly_braces} are resolved based on context: In Package context, they reference argument valueHints, argument names, or environment variable names from the parent Package. In Remote context, they reference variables from the transport's 'variables' object. After variable substitution, this should produce a valid URI.",
        -        "pattern": "^(https?://[^\\s]+|\\{[a-zA-Z_][a-zA-Z0-9_]*\\}[^\\s]*)$",
        -        "type": "string"
        -      }
        -    },
        -    "required": [
        -      "type",
        -      "url"
        -    ],
        -    "type": "object"
        -  }
        -]New value: +[
        +  {
        +    "properties": {
        +      "type": {
        +        "description": "Transport type",
        +        "enum": [
        +          "stdio"
        +        ],
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "properties": {
        +      "headers": {
        +        "description": "HTTP headers to include",
        +        "items": {
        +          "allOf": [
        +            {
        +              "allOf": [
        +                {
        +                  "properties": {
        +                    "choices": {
        +                      "description": "A list of possible values for the input. If provided, the user must select one of these values.",
        +                      "items": {
        +                        "type": "string"
        +                      },
        +                      "type": "array"
        +                    },
        +                    "default": {
        +                      "description": "The default value for the input.  This should be a valid value for the input.  If you want to provide input examples or guidance, use the `placeholder` field instead.",
        +                      "type": "string"
        +                    },
        +                    "description": {
        +                      "description": "A description of the input, which clients can use to provide context to the user.",
        +                      "type": "string"
        +                    },
        +                    "format": {
        +                      "description": "Specifies the input format. Supported values include `filepath`, which should be interpreted as a file on the user's filesystem.\n\nWhen the input is converted to a string, booleans should be represented by the strings \"true\" and \"false\", and numbers should be represented as decimal values.",
        +                      "enum": [
        +                        "string",
        +                        "number",
        +                        "boolean",
        +                        "filepath"
        +                      ],
        +                      "type": "string"
        +                    },
        +                    "isRequired": {
        +                      "type": "boolean"
        +                    },
        +                    "isSecret": {
        +                      "description": "Indicates whether the input is a secret value (e.g., password, token). If true, clients should handle the value securely.",
        +                      "type": "boolean"
        +                    },
        +                    "placeholder": {
        +                      "description": "A placeholder for the input to be displaying during configuration. This is used to provide examples or guidance about the expected form or content of the input.",
        +                      "type": "string"
        +                    },
        +                    "value": {
        +                      "description": "The value for the input. If this is not set, the user may be prompted to provide a value. If a value is set, it should not be configurable by end users.\n\nIdentifiers wrapped in `{curly_braces}` will be replaced with the corresponding properties from the input `variables` map. If an identifier in braces is not found in `variables`, or if `variables` is not provided, the `{curly_braces}` substring should remain unchanged.\n",
        +                      "type": "string"
        +                    }
        +                  },
        +                  "type": "object"
        +                },
        +                {
        +                  "properties": {
        +                    "variables": {
        +                      "additionalProperties": {
        +                        "$ref": "#/components/schemas/Input"
        +                      },
        +                      "description": "A map of variable names to their values. Keys in the input `value` that are wrapped in `{curly_braces}` will be replaced with the corresponding variable values.",
        +                      "properties": {},
        +                      "type": "object"
        +                    }
        +                  },
        +                  "type": "object"
        +                }
        +              ]
        +            },
        +            {
        +              "properties": {
        +                "name": {
        +                  "description": "Name of the header or environment variable.",
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "name"
        +              ],
        +              "type": "object"
        +            }
        +          ]
        +        },
        +        "type": "array"
        +      },
        +      "type": {
        +        "description": "Transport type",
        +        "enum": [
        +          "streamable-http"
        +        ],
        +        "type": "string"
        +      },
        +      "url": {
        +        "description": "URL template for the streamable-http transport. Variables in {curly_braces} are resolved based on context: In Package context, they reference argument valueHints, argument names, or environment variable names from the parent Package. In Remote context, they reference variables from the transport's 'variables' object. After variable substitution, this should produce a valid URI.",
        +        "pattern": "^https?://[^\\s]+$",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type",
        +      "url"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "properties": {
        +      "headers": {
        +        "description": "HTTP headers to include",
        +        "items": {
        +          "allOf": [
        +            {
        +              "allOf": [
        +                {
        +                  "properties": {
        +                    "choices": {
        +                      "description": "A list of possible values for the input. If provided, the user must select one of these values.",
        +                      "items": {
        +                        "type": "string"
        +                      },
        +                      "type": "array"
        +                    },
        +                    "default": {
        +                      "description": "The default value for the input.  This should be a valid value for the input.  If you want to provide input examples or guidance, use the `placeholder` field instead.",
        +                      "type": "string"
        +                    },
        +                    "description": {
        +                      "description": "A description of the input, which clients can use to provide context to the user.",
        +                      "type": "string"
        +                    },
        +                    "format": {
        +                      "description": "Specifies the input format. Supported values include `filepath`, which should be interpreted as a file on the user's filesystem.\n\nWhen the input is converted to a string, booleans should be represented by the strings \"true\" and \"false\", and numbers should be represented as decimal values.",
        +                      "enum": [
        +                        "string",
        +                        "number",
        +                        "boolean",
        +                        "filepath"
        +                      ],
        +                      "type": "string"
        +                    },
        +                    "isRequired": {
        +                      "type": "boolean"
        +                    },
        +                    "isSecret": {
        +                      "description": "Indicates whether the input is a secret value (e.g., password, token). If true, clients should handle the value securely.",
        +                      "type": "boolean"
        +                    },
        +                    "placeholder": {
        +                      "description": "A placeholder for the input to be displaying during configuration. This is used to provide examples or guidance about the expected form or content of the input.",
        +                      "type": "string"
        +                    },
        +                    "value": {
        +                      "description": "The value for the input. If this is not set, the user may be prompted to provide a value. If a value is set, it should not be configurable by end users.\n\nIdentifiers wrapped in `{curly_braces}` will be replaced with the corresponding properties from the input `variables` map. If an identifier in braces is not found in `variables`, or if `variables` is not provided, the `{curly_braces}` substring should remain unchanged.\n",
        +                      "type": "string"
        +                    }
        +                  },
        +                  "type": "object"
        +                },
        +                {
        +                  "properties": {
        +                    "variables": {
        +                      "additionalProperties": {
        +                        "$ref": "#/components/schemas/Input"
        +                      },
        +                      "description": "A map of variable names to their values. Keys in the input `value` that are wrapped in `{curly_braces}` will be replaced with the corresponding variable values.",
        +                      "properties": {},
        +                      "type": "object"
        +                    }
        +                  },
        +                  "type": "object"
        +                }
        +              ]
        +            },
        +            {
        +              "properties": {
        +                "name": {
        +                  "description": "Name of the header or environment variable.",
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "name"
        +              ],
        +              "type": "object"
        +            }
        +          ]
        +        },
        +        "type": "array"
        +      },
        +      "type": {
        +        "description": "Transport type",
        +        "enum": [
        +          "sse"
        +        ],
        +        "type": "string"
        +      },
        +      "url": {
        +        "description": "Server-Sent Events endpoint URL template. Variables in {curly_braces} are resolved based on context: In Package context, they reference argument valueHints, argument names, or environment variable names from the parent Package. In Remote context, they reference variables from the transport's 'variables' object. After variable substitution, this should produce a valid URI.",
        +        "pattern": "^https?://[^\\s]+$",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type",
        +      "url"
        +    ],
        +    "type": "object"
        +  }
        +]
    • ChangedputV01ServersServerNameVersionsVersion1 field changed
      • changedInput schema / properties / undefinedBody / properties / packages / items / properties / transport / anyOf
        Previous value: -[
        -  {
        -    "properties": {
        -      "type": {
        -        "description": "Transport type",
        -        "enum": [
        -          "stdio"
        -        ],
        -        "type": "string"
        -      }
        -    },
        -    "required": [
        -      "type"
        -    ],
        -    "type": "object"
        -  },
        -  {
        -    "properties": {
        -      "headers": {
        -        "description": "HTTP headers to include",
        -        "items": {
        -          "allOf": [
        -            {
        -              "allOf": [
        -                {
        -                  "properties": {
        -                    "choices": {
        -                      "description": "A list of possible values for the input. If provided, the user must select one of these values.",
        -                      "items": {
        -                        "type": "string"
        -                      },
        -                      "type": "array"
        -                    },
        -                    "default": {
        -                      "description": "The default value for the input.  This should be a valid value for the input.  If you want to provide input examples or guidance, use the `placeholder` field instead.",
        -                      "type": "string"
        -                    },
        -                    "description": {
        -                      "description": "A description of the input, which clients can use to provide context to the user.",
        -                      "type": "string"
        -                    },
        -                    "format": {
        -                      "description": "Specifies the input format. Supported values include `filepath`, which should be interpreted as a file on the user's filesystem.\n\nWhen the input is converted to a string, booleans should be represented by the strings \"true\" and \"false\", and numbers should be represented as decimal values.",
        -                      "enum": [
        -                        "string",
        -                        "number",
        -                        "boolean",
        -                        "filepath"
        -                      ],
        -                      "type": "string"
        -                    },
        -                    "isRequired": {
        -                      "type": "boolean"
        -                    },
        -                    "isSecret": {
        -                      "description": "Indicates whether the input is a secret value (e.g., password, token). If true, clients should handle the value securely.",
        -                      "type": "boolean"
        -                    },
        -                    "placeholder": {
        -                      "description": "A placeholder for the input to be displaying during configuration. This is used to provide examples or guidance about the expected form or content of the input.",
        -                      "type": "string"
        -                    },
        -                    "value": {
        -                      "description": "The value for the input. If this is not set, the user may be prompted to provide a value. If a value is set, it should not be configurable by end users.\n\nIdentifiers wrapped in `{curly_braces}` will be replaced with the corresponding properties from the input `variables` map. If an identifier in braces is not found in `variables`, or if `variables` is not provided, the `{curly_braces}` substring should remain unchanged.\n",
        -                      "type": "string"
        -                    }
        -                  },
        -                  "type": "object"
        -                },
        -                {
        -                  "properties": {
        -                    "variables": {
        -                      "additionalProperties": {
        -                        "$ref": "#/components/schemas/Input"
        -                      },
        -                      "description": "A map of variable names to their values. Keys in the input `value` that are wrapped in `{curly_braces}` will be replaced with the corresponding variable values.",
        -                      "properties": {},
        -                      "type": "object"
        -                    }
        -                  },
        -                  "type": "object"
        -                }
        -              ]
        -            },
        -            {
        -              "properties": {
        -                "name": {
        -                  "description": "Name of the header or environment variable.",
        -                  "type": "string"
        -                }
        -              },
        -              "required": [
        -                "name"
        -              ],
        -              "type": "object"
        -            }
        -          ]
        -        },
        -        "type": "array"
        -      },
        -      "type": {
        -        "description": "Transport type",
        -        "enum": [
        -          "streamable-http"
        -        ],
        -        "type": "string"
        -      },
        -      "url": {
        -        "description": "URL template for the streamable-http transport. Must start with http://, https://, or a template variable (e.g., {baseUrl}). Variables in {curly_braces} are resolved based on context: In Package context, they reference argument valueHints, argument names, or environment variable names from the parent Package. In Remote context, they reference variables from the transport's 'variables' object. After variable substitution, this should produce a valid URI.",
        -        "pattern": "^(https?://[^\\s]+|\\{[a-zA-Z_][a-zA-Z0-9_]*\\}[^\\s]*)$",
        -        "type": "string"
        -      }
        -    },
        -    "required": [
        -      "type",
        -      "url"
        -    ],
        -    "type": "object"
        -  },
        -  {
        -    "properties": {
        -      "headers": {
        -        "description": "HTTP headers to include",
        -        "items": {
        -          "allOf": [
        -            {
        -              "allOf": [
        -                {
        -                  "properties": {
        -                    "choices": {
        -                      "description": "A list of possible values for the input. If provided, the user must select one of these values.",
        -                      "items": {
        -                        "type": "string"
        -                      },
        -                      "type": "array"
        -                    },
        -                    "default": {
        -                      "description": "The default value for the input.  This should be a valid value for the input.  If you want to provide input examples or guidance, use the `placeholder` field instead.",
        -                      "type": "string"
        -                    },
        -                    "description": {
        -                      "description": "A description of the input, which clients can use to provide context to the user.",
        -                      "type": "string"
        -                    },
        -                    "format": {
        -                      "description": "Specifies the input format. Supported values include `filepath`, which should be interpreted as a file on the user's filesystem.\n\nWhen the input is converted to a string, booleans should be represented by the strings \"true\" and \"false\", and numbers should be represented as decimal values.",
        -                      "enum": [
        -                        "string",
        -                        "number",
        -                        "boolean",
        -                        "filepath"
        -                      ],
        -                      "type": "string"
        -                    },
        -                    "isRequired": {
        -                      "type": "boolean"
        -                    },
        -                    "isSecret": {
        -                      "description": "Indicates whether the input is a secret value (e.g., password, token). If true, clients should handle the value securely.",
        -                      "type": "boolean"
        -                    },
        -                    "placeholder": {
        -                      "description": "A placeholder for the input to be displaying during configuration. This is used to provide examples or guidance about the expected form or content of the input.",
        -                      "type": "string"
        -                    },
        -                    "value": {
        -                      "description": "The value for the input. If this is not set, the user may be prompted to provide a value. If a value is set, it should not be configurable by end users.\n\nIdentifiers wrapped in `{curly_braces}` will be replaced with the corresponding properties from the input `variables` map. If an identifier in braces is not found in `variables`, or if `variables` is not provided, the `{curly_braces}` substring should remain unchanged.\n",
        -                      "type": "string"
        -                    }
        -                  },
        -                  "type": "object"
        -                },
        -                {
        -                  "properties": {
        -                    "variables": {
        -                      "additionalProperties": {
        -                        "$ref": "#/components/schemas/Input"
        -                      },
        -                      "description": "A map of variable names to their values. Keys in the input `value` that are wrapped in `{curly_braces}` will be replaced with the corresponding variable values.",
        -                      "properties": {},
        -                      "type": "object"
        -                    }
        -                  },
        -                  "type": "object"
        -                }
        -              ]
        -            },
        -            {
        -              "properties": {
        -                "name": {
        -                  "description": "Name of the header or environment variable.",
        -                  "type": "string"
        -                }
        -              },
        -              "required": [
        -                "name"
        -              ],
        -              "type": "object"
        -            }
        -          ]
        -        },
        -        "type": "array"
        -      },
        -      "type": {
        -        "description": "Transport type",
        -        "enum": [
        -          "sse"
        -        ],
        -        "type": "string"
        -      },
        -      "url": {
        -        "description": "Server-Sent Events endpoint URL template. Must start with http://, https://, or a template variable (e.g., {baseUrl}). Variables in {curly_braces} are resolved based on context: In Package context, they reference argument valueHints, argument names, or environment variable names from the parent Package. In Remote context, they reference variables from the transport's 'variables' object. After variable substitution, this should produce a valid URI.",
        -        "pattern": "^(https?://[^\\s]+|\\{[a-zA-Z_][a-zA-Z0-9_]*\\}[^\\s]*)$",
        -        "type": "string"
        -      }
        -    },
        -    "required": [
        -      "type",
        -      "url"
        -    ],
        -    "type": "object"
        -  }
        -]New value: +[
        +  {
        +    "properties": {
        +      "type": {
        +        "description": "Transport type",
        +        "enum": [
        +          "stdio"
        +        ],
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "properties": {
        +      "headers": {
        +        "description": "HTTP headers to include",
        +        "items": {
        +          "allOf": [
        +            {
        +              "allOf": [
        +                {
        +                  "properties": {
        +                    "choices": {
        +                      "description": "A list of possible values for the input. If provided, the user must select one of these values.",
        +                      "items": {
        +                        "type": "string"
        +                      },
        +                      "type": "array"
        +                    },
        +                    "default": {
        +                      "description": "The default value for the input.  This should be a valid value for the input.  If you want to provide input examples or guidance, use the `placeholder` field instead.",
        +                      "type": "string"
        +                    },
        +                    "description": {
        +                      "description": "A description of the input, which clients can use to provide context to the user.",
        +                      "type": "string"
        +                    },
        +                    "format": {
        +                      "description": "Specifies the input format. Supported values include `filepath`, which should be interpreted as a file on the user's filesystem.\n\nWhen the input is converted to a string, booleans should be represented by the strings \"true\" and \"false\", and numbers should be represented as decimal values.",
        +                      "enum": [
        +                        "string",
        +                        "number",
        +                        "boolean",
        +                        "filepath"
        +                      ],
        +                      "type": "string"
        +                    },
        +                    "isRequired": {
        +                      "type": "boolean"
        +                    },
        +                    "isSecret": {
        +                      "description": "Indicates whether the input is a secret value (e.g., password, token). If true, clients should handle the value securely.",
        +                      "type": "boolean"
        +                    },
        +                    "placeholder": {
        +                      "description": "A placeholder for the input to be displaying during configuration. This is used to provide examples or guidance about the expected form or content of the input.",
        +                      "type": "string"
        +                    },
        +                    "value": {
        +                      "description": "The value for the input. If this is not set, the user may be prompted to provide a value. If a value is set, it should not be configurable by end users.\n\nIdentifiers wrapped in `{curly_braces}` will be replaced with the corresponding properties from the input `variables` map. If an identifier in braces is not found in `variables`, or if `variables` is not provided, the `{curly_braces}` substring should remain unchanged.\n",
        +                      "type": "string"
        +                    }
        +                  },
        +                  "type": "object"
        +                },
        +                {
        +                  "properties": {
        +                    "variables": {
        +                      "additionalProperties": {
        +                        "$ref": "#/components/schemas/Input"
        +                      },
        +                      "description": "A map of variable names to their values. Keys in the input `value` that are wrapped in `{curly_braces}` will be replaced with the corresponding variable values.",
        +                      "properties": {},
        +                      "type": "object"
        +                    }
        +                  },
        +                  "type": "object"
        +                }
        +              ]
        +            },
        +            {
        +              "properties": {
        +                "name": {
        +                  "description": "Name of the header or environment variable.",
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "name"
        +              ],
        +              "type": "object"
        +            }
        +          ]
        +        },
        +        "type": "array"
        +      },
        +      "type": {
        +        "description": "Transport type",
        +        "enum": [
        +          "streamable-http"
        +        ],
        +        "type": "string"
        +      },
        +      "url": {
        +        "description": "URL template for the streamable-http transport. Variables in {curly_braces} are resolved based on context: In Package context, they reference argument valueHints, argument names, or environment variable names from the parent Package. In Remote context, they reference variables from the transport's 'variables' object. After variable substitution, this should produce a valid URI.",
        +        "pattern": "^https?://[^\\s]+$",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type",
        +      "url"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "properties": {
        +      "headers": {
        +        "description": "HTTP headers to include",
        +        "items": {
        +          "allOf": [
        +            {
        +              "allOf": [
        +                {
        +                  "properties": {
        +                    "choices": {
        +                      "description": "A list of possible values for the input. If provided, the user must select one of these values.",
        +                      "items": {
        +                        "type": "string"
        +                      },
        +                      "type": "array"
        +                    },
        +                    "default": {
        +                      "description": "The default value for the input.  This should be a valid value for the input.  If you want to provide input examples or guidance, use the `placeholder` field instead.",
        +                      "type": "string"
        +                    },
        +                    "description": {
        +                      "description": "A description of the input, which clients can use to provide context to the user.",
        +                      "type": "string"
        +                    },
        +                    "format": {
        +                      "description": "Specifies the input format. Supported values include `filepath`, which should be interpreted as a file on the user's filesystem.\n\nWhen the input is converted to a string, booleans should be represented by the strings \"true\" and \"false\", and numbers should be represented as decimal values.",
        +                      "enum": [
        +                        "string",
        +                        "number",
        +                        "boolean",
        +                        "filepath"
        +                      ],
        +                      "type": "string"
        +                    },
        +                    "isRequired": {
        +                      "type": "boolean"
        +                    },
        +                    "isSecret": {
        +                      "description": "Indicates whether the input is a secret value (e.g., password, token). If true, clients should handle the value securely.",
        +                      "type": "boolean"
        +                    },
        +                    "placeholder": {
        +                      "description": "A placeholder for the input to be displaying during configuration. This is used to provide examples or guidance about the expected form or content of the input.",
        +                      "type": "string"
        +                    },
        +                    "value": {
        +                      "description": "The value for the input. If this is not set, the user may be prompted to provide a value. If a value is set, it should not be configurable by end users.\n\nIdentifiers wrapped in `{curly_braces}` will be replaced with the corresponding properties from the input `variables` map. If an identifier in braces is not found in `variables`, or if `variables` is not provided, the `{curly_braces}` substring should remain unchanged.\n",
        +                      "type": "string"
        +                    }
        +                  },
        +                  "type": "object"
        +                },
        +                {
        +                  "properties": {
        +                    "variables": {
        +                      "additionalProperties": {
        +                        "$ref": "#/components/schemas/Input"
        +                      },
        +                      "description": "A map of variable names to their values. Keys in the input `value` that are wrapped in `{curly_braces}` will be replaced with the corresponding variable values.",
        +                      "properties": {},
        +                      "type": "object"
        +                    }
        +                  },
        +                  "type": "object"
        +                }
        +              ]
        +            },
        +            {
        +              "properties": {
        +                "name": {
        +                  "description": "Name of the header or environment variable.",
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "name"
        +              ],
        +              "type": "object"
        +            }
        +          ]
        +        },
        +        "type": "array"
        +      },
        +      "type": {
        +        "description": "Transport type",
        +        "enum": [
        +          "sse"
        +        ],
        +        "type": "string"
        +      },
        +      "url": {
        +        "description": "Server-Sent Events endpoint URL template. Variables in {curly_braces} are resolved based on context: In Package context, they reference argument valueHints, argument names, or environment variable names from the parent Package. In Remote context, they reference variables from the transport's 'variables' object. After variable substitution, this should produce a valid URI.",
        +        "pattern": "^https?://[^\\s]+$",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type",
        +      "url"
        +    ],
        +    "type": "object"
        +  }
        +]
  11. 2 tool updates
    • ChangedpostV01Publish1 field changed
      • changedInput schema / properties / undefinedBody / properties / packages / items / properties / transport / anyOf
        Previous value: -[
        -  {
        -    "properties": {
        -      "type": {
        -        "description": "Transport type",
        -        "enum": [
        -          "stdio"
        -        ],
        -        "type": "string"
        -      }
        -    },
        -    "required": [
        -      "type"
        -    ],
        -    "type": "object"
        -  },
        -  {
        -    "properties": {
        -      "headers": {
        -        "description": "HTTP headers to include",
        -        "items": {
        -          "allOf": [
        -            {
        -              "allOf": [
        -                {
        -                  "properties": {
        -                    "choices": {
        -                      "description": "A list of possible values for the input. If provided, the user must select one of these values.",
        -                      "items": {
        -                        "type": "string"
        -                      },
        -                      "type": "array"
        -                    },
        -                    "default": {
        -                      "description": "The default value for the input.  This should be a valid value for the input.  If you want to provide input examples or guidance, use the `placeholder` field instead.",
        -                      "type": "string"
        -                    },
        -                    "description": {
        -                      "description": "A description of the input, which clients can use to provide context to the user.",
        -                      "type": "string"
        -                    },
        -                    "format": {
        -                      "description": "Specifies the input format. Supported values include `filepath`, which should be interpreted as a file on the user's filesystem.\n\nWhen the input is converted to a string, booleans should be represented by the strings \"true\" and \"false\", and numbers should be represented as decimal values.",
        -                      "enum": [
        -                        "string",
        -                        "number",
        -                        "boolean",
        -                        "filepath"
        -                      ],
        -                      "type": "string"
        -                    },
        -                    "isRequired": {
        -                      "type": "boolean"
        -                    },
        -                    "isSecret": {
        -                      "description": "Indicates whether the input is a secret value (e.g., password, token). If true, clients should handle the value securely.",
        -                      "type": "boolean"
        -                    },
        -                    "placeholder": {
        -                      "description": "A placeholder for the input to be displaying during configuration. This is used to provide examples or guidance about the expected form or content of the input.",
        -                      "type": "string"
        -                    },
        -                    "value": {
        -                      "description": "The value for the input. If this is not set, the user may be prompted to provide a value. If a value is set, it should not be configurable by end users.\n\nIdentifiers wrapped in `{curly_braces}` will be replaced with the corresponding properties from the input `variables` map. If an identifier in braces is not found in `variables`, or if `variables` is not provided, the `{curly_braces}` substring should remain unchanged.\n",
        -                      "type": "string"
        -                    }
        -                  },
        -                  "type": "object"
        -                },
        -                {
        -                  "properties": {
        -                    "variables": {
        -                      "additionalProperties": {
        -                        "$ref": "#/components/schemas/Input"
        -                      },
        -                      "description": "A map of variable names to their values. Keys in the input `value` that are wrapped in `{curly_braces}` will be replaced with the corresponding variable values.",
        -                      "properties": {},
        -                      "type": "object"
        -                    }
        -                  },
        -                  "type": "object"
        -                }
        -              ]
        -            },
        -            {
        -              "properties": {
        -                "name": {
        -                  "description": "Name of the header or environment variable.",
        -                  "type": "string"
        -                }
        -              },
        -              "required": [
        -                "name"
        -              ],
        -              "type": "object"
        -            }
        -          ]
        -        },
        -        "type": "array"
        -      },
        -      "type": {
        -        "description": "Transport type",
        -        "enum": [
        -          "streamable-http"
        -        ],
        -        "type": "string"
        -      },
        -      "url": {
        -        "description": "URL template for the streamable-http transport. Variables in {curly_braces} are resolved based on context: In Package context, they reference argument valueHints, argument names, or environment variable names from the parent Package. In Remote context, they reference variables from the transport's 'variables' object. After variable substitution, this should produce a valid URI.",
        -        "pattern": "^https?://[^\\s]+$",
        -        "type": "string"
        -      }
        -    },
        -    "required": [
        -      "type",
        -      "url"
        -    ],
        -    "type": "object"
        -  },
        -  {
        -    "properties": {
        -      "headers": {
        -        "description": "HTTP headers to include",
        -        "items": {
        -          "allOf": [
        -            {
        -              "allOf": [
        -                {
        -                  "properties": {
        -                    "choices": {
        -                      "description": "A list of possible values for the input. If provided, the user must select one of these values.",
        -                      "items": {
        -                        "type": "string"
        -                      },
        -                      "type": "array"
        -                    },
        -                    "default": {
        -                      "description": "The default value for the input.  This should be a valid value for the input.  If you want to provide input examples or guidance, use the `placeholder` field instead.",
        -                      "type": "string"
        -                    },
        -                    "description": {
        -                      "description": "A description of the input, which clients can use to provide context to the user.",
        -                      "type": "string"
        -                    },
        -                    "format": {
        -                      "description": "Specifies the input format. Supported values include `filepath`, which should be interpreted as a file on the user's filesystem.\n\nWhen the input is converted to a string, booleans should be represented by the strings \"true\" and \"false\", and numbers should be represented as decimal values.",
        -                      "enum": [
        -                        "string",
        -                        "number",
        -                        "boolean",
        -                        "filepath"
        -                      ],
        -                      "type": "string"
        -                    },
        -                    "isRequired": {
        -                      "type": "boolean"
        -                    },
        -                    "isSecret": {
        -                      "description": "Indicates whether the input is a secret value (e.g., password, token). If true, clients should handle the value securely.",
        -                      "type": "boolean"
        -                    },
        -                    "placeholder": {
        -                      "description": "A placeholder for the input to be displaying during configuration. This is used to provide examples or guidance about the expected form or content of the input.",
        -                      "type": "string"
        -                    },
        -                    "value": {
        -                      "description": "The value for the input. If this is not set, the user may be prompted to provide a value. If a value is set, it should not be configurable by end users.\n\nIdentifiers wrapped in `{curly_braces}` will be replaced with the corresponding properties from the input `variables` map. If an identifier in braces is not found in `variables`, or if `variables` is not provided, the `{curly_braces}` substring should remain unchanged.\n",
        -                      "type": "string"
        -                    }
        -                  },
        -                  "type": "object"
        -                },
        -                {
        -                  "properties": {
        -                    "variables": {
        -                      "additionalProperties": {
        -                        "$ref": "#/components/schemas/Input"
        -                      },
        -                      "description": "A map of variable names to their values. Keys in the input `value` that are wrapped in `{curly_braces}` will be replaced with the corresponding variable values.",
        -                      "properties": {},
        -                      "type": "object"
        -                    }
        -                  },
        -                  "type": "object"
        -                }
        -              ]
        -            },
        -            {
        -              "properties": {
        -                "name": {
        -                  "description": "Name of the header or environment variable.",
        -                  "type": "string"
        -                }
        -              },
        -              "required": [
        -                "name"
        -              ],
        -              "type": "object"
        -            }
        -          ]
        -        },
        -        "type": "array"
        -      },
        -      "type": {
        -        "description": "Transport type",
        -        "enum": [
        -          "sse"
        -        ],
        -        "type": "string"
        -      },
        -      "url": {
        -        "description": "Server-Sent Events endpoint URL template. Variables in {curly_braces} are resolved based on context: In Package context, they reference argument valueHints, argument names, or environment variable names from the parent Package. In Remote context, they reference variables from the transport's 'variables' object. After variable substitution, this should produce a valid URI.",
        -        "pattern": "^https?://[^\\s]+$",
        -        "type": "string"
        -      }
        -    },
        -    "required": [
        -      "type",
        -      "url"
        -    ],
        -    "type": "object"
        -  }
        -]New value: +[
        +  {
        +    "properties": {
        +      "type": {
        +        "description": "Transport type",
        +        "enum": [
        +          "stdio"
        +        ],
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "properties": {
        +      "headers": {
        +        "description": "HTTP headers to include",
        +        "items": {
        +          "allOf": [
        +            {
        +              "allOf": [
        +                {
        +                  "properties": {
        +                    "choices": {
        +                      "description": "A list of possible values for the input. If provided, the user must select one of these values.",
        +                      "items": {
        +                        "type": "string"
        +                      },
        +                      "type": "array"
        +                    },
        +                    "default": {
        +                      "description": "The default value for the input.  This should be a valid value for the input.  If you want to provide input examples or guidance, use the `placeholder` field instead.",
        +                      "type": "string"
        +                    },
        +                    "description": {
        +                      "description": "A description of the input, which clients can use to provide context to the user.",
        +                      "type": "string"
        +                    },
        +                    "format": {
        +                      "description": "Specifies the input format. Supported values include `filepath`, which should be interpreted as a file on the user's filesystem.\n\nWhen the input is converted to a string, booleans should be represented by the strings \"true\" and \"false\", and numbers should be represented as decimal values.",
        +                      "enum": [
        +                        "string",
        +                        "number",
        +                        "boolean",
        +                        "filepath"
        +                      ],
        +                      "type": "string"
        +                    },
        +                    "isRequired": {
        +                      "type": "boolean"
        +                    },
        +                    "isSecret": {
        +                      "description": "Indicates whether the input is a secret value (e.g., password, token). If true, clients should handle the value securely.",
        +                      "type": "boolean"
        +                    },
        +                    "placeholder": {
        +                      "description": "A placeholder for the input to be displaying during configuration. This is used to provide examples or guidance about the expected form or content of the input.",
        +                      "type": "string"
        +                    },
        +                    "value": {
        +                      "description": "The value for the input. If this is not set, the user may be prompted to provide a value. If a value is set, it should not be configurable by end users.\n\nIdentifiers wrapped in `{curly_braces}` will be replaced with the corresponding properties from the input `variables` map. If an identifier in braces is not found in `variables`, or if `variables` is not provided, the `{curly_braces}` substring should remain unchanged.\n",
        +                      "type": "string"
        +                    }
        +                  },
        +                  "type": "object"
        +                },
        +                {
        +                  "properties": {
        +                    "variables": {
        +                      "additionalProperties": {
        +                        "$ref": "#/components/schemas/Input"
        +                      },
        +                      "description": "A map of variable names to their values. Keys in the input `value` that are wrapped in `{curly_braces}` will be replaced with the corresponding variable values.",
        +                      "properties": {},
        +                      "type": "object"
        +                    }
        +                  },
        +                  "type": "object"
        +                }
        +              ]
        +            },
        +            {
        +              "properties": {
        +                "name": {
        +                  "description": "Name of the header or environment variable.",
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "name"
        +              ],
        +              "type": "object"
        +            }
        +          ]
        +        },
        +        "type": "array"
        +      },
        +      "type": {
        +        "description": "Transport type",
        +        "enum": [
        +          "streamable-http"
        +        ],
        +        "type": "string"
        +      },
        +      "url": {
        +        "description": "URL template for the streamable-http transport. Must start with http://, https://, or a template variable (e.g., {baseUrl}). Variables in {curly_braces} are resolved based on context: In Package context, they reference argument valueHints, argument names, or environment variable names from the parent Package. In Remote context, they reference variables from the transport's 'variables' object. After variable substitution, this should produce a valid URI.",
        +        "pattern": "^(https?://[^\\s]+|\\{[a-zA-Z_][a-zA-Z0-9_]*\\}[^\\s]*)$",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type",
        +      "url"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "properties": {
        +      "headers": {
        +        "description": "HTTP headers to include",
        +        "items": {
        +          "allOf": [
        +            {
        +              "allOf": [
        +                {
        +                  "properties": {
        +                    "choices": {
        +                      "description": "A list of possible values for the input. If provided, the user must select one of these values.",
        +                      "items": {
        +                        "type": "string"
        +                      },
        +                      "type": "array"
        +                    },
        +                    "default": {
        +                      "description": "The default value for the input.  This should be a valid value for the input.  If you want to provide input examples or guidance, use the `placeholder` field instead.",
        +                      "type": "string"
        +                    },
        +                    "description": {
        +                      "description": "A description of the input, which clients can use to provide context to the user.",
        +                      "type": "string"
        +                    },
        +                    "format": {
        +                      "description": "Specifies the input format. Supported values include `filepath`, which should be interpreted as a file on the user's filesystem.\n\nWhen the input is converted to a string, booleans should be represented by the strings \"true\" and \"false\", and numbers should be represented as decimal values.",
        +                      "enum": [
        +                        "string",
        +                        "number",
        +                        "boolean",
        +                        "filepath"
        +                      ],
        +                      "type": "string"
        +                    },
        +                    "isRequired": {
        +                      "type": "boolean"
        +                    },
        +                    "isSecret": {
        +                      "description": "Indicates whether the input is a secret value (e.g., password, token). If true, clients should handle the value securely.",
        +                      "type": "boolean"
        +                    },
        +                    "placeholder": {
        +                      "description": "A placeholder for the input to be displaying during configuration. This is used to provide examples or guidance about the expected form or content of the input.",
        +                      "type": "string"
        +                    },
        +                    "value": {
        +                      "description": "The value for the input. If this is not set, the user may be prompted to provide a value. If a value is set, it should not be configurable by end users.\n\nIdentifiers wrapped in `{curly_braces}` will be replaced with the corresponding properties from the input `variables` map. If an identifier in braces is not found in `variables`, or if `variables` is not provided, the `{curly_braces}` substring should remain unchanged.\n",
        +                      "type": "string"
        +                    }
        +                  },
        +                  "type": "object"
        +                },
        +                {
        +                  "properties": {
        +                    "variables": {
        +                      "additionalProperties": {
        +                        "$ref": "#/components/schemas/Input"
        +                      },
        +                      "description": "A map of variable names to their values. Keys in the input `value` that are wrapped in `{curly_braces}` will be replaced with the corresponding variable values.",
        +                      "properties": {},
        +                      "type": "object"
        +                    }
        +                  },
        +                  "type": "object"
        +                }
        +              ]
        +            },
        +            {
        +              "properties": {
        +                "name": {
        +                  "description": "Name of the header or environment variable.",
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "name"
        +              ],
        +              "type": "object"
        +            }
        +          ]
        +        },
        +        "type": "array"
        +      },
        +      "type": {
        +        "description": "Transport type",
        +        "enum": [
        +          "sse"
        +        ],
        +        "type": "string"
        +      },
        +      "url": {
        +        "description": "Server-Sent Events endpoint URL template. Must start with http://, https://, or a template variable (e.g., {baseUrl}). Variables in {curly_braces} are resolved based on context: In Package context, they reference argument valueHints, argument names, or environment variable names from the parent Package. In Remote context, they reference variables from the transport's 'variables' object. After variable substitution, this should produce a valid URI.",
        +        "pattern": "^(https?://[^\\s]+|\\{[a-zA-Z_][a-zA-Z0-9_]*\\}[^\\s]*)$",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type",
        +      "url"
        +    ],
        +    "type": "object"
        +  }
        +]
    • ChangedputV01ServersServerNameVersionsVersion1 field changed
      • changedInput schema / properties / undefinedBody / properties / packages / items / properties / transport / anyOf
        Previous value: -[
        -  {
        -    "properties": {
        -      "type": {
        -        "description": "Transport type",
        -        "enum": [
        -          "stdio"
        -        ],
        -        "type": "string"
        -      }
        -    },
        -    "required": [
        -      "type"
        -    ],
        -    "type": "object"
        -  },
        -  {
        -    "properties": {
        -      "headers": {
        -        "description": "HTTP headers to include",
        -        "items": {
        -          "allOf": [
        -            {
        -              "allOf": [
        -                {
        -                  "properties": {
        -                    "choices": {
        -                      "description": "A list of possible values for the input. If provided, the user must select one of these values.",
        -                      "items": {
        -                        "type": "string"
        -                      },
        -                      "type": "array"
        -                    },
        -                    "default": {
        -                      "description": "The default value for the input.  This should be a valid value for the input.  If you want to provide input examples or guidance, use the `placeholder` field instead.",
        -                      "type": "string"
        -                    },
        -                    "description": {
        -                      "description": "A description of the input, which clients can use to provide context to the user.",
        -                      "type": "string"
        -                    },
        -                    "format": {
        -                      "description": "Specifies the input format. Supported values include `filepath`, which should be interpreted as a file on the user's filesystem.\n\nWhen the input is converted to a string, booleans should be represented by the strings \"true\" and \"false\", and numbers should be represented as decimal values.",
        -                      "enum": [
        -                        "string",
        -                        "number",
        -                        "boolean",
        -                        "filepath"
        -                      ],
        -                      "type": "string"
        -                    },
        -                    "isRequired": {
        -                      "type": "boolean"
        -                    },
        -                    "isSecret": {
        -                      "description": "Indicates whether the input is a secret value (e.g., password, token). If true, clients should handle the value securely.",
        -                      "type": "boolean"
        -                    },
        -                    "placeholder": {
        -                      "description": "A placeholder for the input to be displaying during configuration. This is used to provide examples or guidance about the expected form or content of the input.",
        -                      "type": "string"
        -                    },
        -                    "value": {
        -                      "description": "The value for the input. If this is not set, the user may be prompted to provide a value. If a value is set, it should not be configurable by end users.\n\nIdentifiers wrapped in `{curly_braces}` will be replaced with the corresponding properties from the input `variables` map. If an identifier in braces is not found in `variables`, or if `variables` is not provided, the `{curly_braces}` substring should remain unchanged.\n",
        -                      "type": "string"
        -                    }
        -                  },
        -                  "type": "object"
        -                },
        -                {
        -                  "properties": {
        -                    "variables": {
        -                      "additionalProperties": {
        -                        "$ref": "#/components/schemas/Input"
        -                      },
        -                      "description": "A map of variable names to their values. Keys in the input `value` that are wrapped in `{curly_braces}` will be replaced with the corresponding variable values.",
        -                      "properties": {},
        -                      "type": "object"
        -                    }
        -                  },
        -                  "type": "object"
        -                }
        -              ]
        -            },
        -            {
        -              "properties": {
        -                "name": {
        -                  "description": "Name of the header or environment variable.",
        -                  "type": "string"
        -                }
        -              },
        -              "required": [
        -                "name"
        -              ],
        -              "type": "object"
        -            }
        -          ]
        -        },
        -        "type": "array"
        -      },
        -      "type": {
        -        "description": "Transport type",
        -        "enum": [
        -          "streamable-http"
        -        ],
        -        "type": "string"
        -      },
        -      "url": {
        -        "description": "URL template for the streamable-http transport. Variables in {curly_braces} are resolved based on context: In Package context, they reference argument valueHints, argument names, or environment variable names from the parent Package. In Remote context, they reference variables from the transport's 'variables' object. After variable substitution, this should produce a valid URI.",
        -        "pattern": "^https?://[^\\s]+$",
        -        "type": "string"
        -      }
        -    },
        -    "required": [
        -      "type",
        -      "url"
        -    ],
        -    "type": "object"
        -  },
        -  {
        -    "properties": {
        -      "headers": {
        -        "description": "HTTP headers to include",
        -        "items": {
        -          "allOf": [
        -            {
        -              "allOf": [
        -                {
        -                  "properties": {
        -                    "choices": {
        -                      "description": "A list of possible values for the input. If provided, the user must select one of these values.",
        -                      "items": {
        -                        "type": "string"
        -                      },
        -                      "type": "array"
        -                    },
        -                    "default": {
        -                      "description": "The default value for the input.  This should be a valid value for the input.  If you want to provide input examples or guidance, use the `placeholder` field instead.",
        -                      "type": "string"
        -                    },
        -                    "description": {
        -                      "description": "A description of the input, which clients can use to provide context to the user.",
        -                      "type": "string"
        -                    },
        -                    "format": {
        -                      "description": "Specifies the input format. Supported values include `filepath`, which should be interpreted as a file on the user's filesystem.\n\nWhen the input is converted to a string, booleans should be represented by the strings \"true\" and \"false\", and numbers should be represented as decimal values.",
        -                      "enum": [
        -                        "string",
        -                        "number",
        -                        "boolean",
        -                        "filepath"
        -                      ],
        -                      "type": "string"
        -                    },
        -                    "isRequired": {
        -                      "type": "boolean"
        -                    },
        -                    "isSecret": {
        -                      "description": "Indicates whether the input is a secret value (e.g., password, token). If true, clients should handle the value securely.",
        -                      "type": "boolean"
        -                    },
        -                    "placeholder": {
        -                      "description": "A placeholder for the input to be displaying during configuration. This is used to provide examples or guidance about the expected form or content of the input.",
        -                      "type": "string"
        -                    },
        -                    "value": {
        -                      "description": "The value for the input. If this is not set, the user may be prompted to provide a value. If a value is set, it should not be configurable by end users.\n\nIdentifiers wrapped in `{curly_braces}` will be replaced with the corresponding properties from the input `variables` map. If an identifier in braces is not found in `variables`, or if `variables` is not provided, the `{curly_braces}` substring should remain unchanged.\n",
        -                      "type": "string"
        -                    }
        -                  },
        -                  "type": "object"
        -                },
        -                {
        -                  "properties": {
        -                    "variables": {
        -                      "additionalProperties": {
        -                        "$ref": "#/components/schemas/Input"
        -                      },
        -                      "description": "A map of variable names to their values. Keys in the input `value` that are wrapped in `{curly_braces}` will be replaced with the corresponding variable values.",
        -                      "properties": {},
        -                      "type": "object"
        -                    }
        -                  },
        -                  "type": "object"
        -                }
        -              ]
        -            },
        -            {
        -              "properties": {
        -                "name": {
        -                  "description": "Name of the header or environment variable.",
        -                  "type": "string"
        -                }
        -              },
        -              "required": [
        -                "name"
        -              ],
        -              "type": "object"
        -            }
        -          ]
        -        },
        -        "type": "array"
        -      },
        -      "type": {
        -        "description": "Transport type",
        -        "enum": [
        -          "sse"
        -        ],
        -        "type": "string"
        -      },
        -      "url": {
        -        "description": "Server-Sent Events endpoint URL template. Variables in {curly_braces} are resolved based on context: In Package context, they reference argument valueHints, argument names, or environment variable names from the parent Package. In Remote context, they reference variables from the transport's 'variables' object. After variable substitution, this should produce a valid URI.",
        -        "pattern": "^https?://[^\\s]+$",
        -        "type": "string"
        -      }
        -    },
        -    "required": [
        -      "type",
        -      "url"
        -    ],
        -    "type": "object"
        -  }
        -]New value: +[
        +  {
        +    "properties": {
        +      "type": {
        +        "description": "Transport type",
        +        "enum": [
        +          "stdio"
        +        ],
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "properties": {
        +      "headers": {
        +        "description": "HTTP headers to include",
        +        "items": {
        +          "allOf": [
        +            {
        +              "allOf": [
        +                {
        +                  "properties": {
        +                    "choices": {
        +                      "description": "A list of possible values for the input. If provided, the user must select one of these values.",
        +                      "items": {
        +                        "type": "string"
        +                      },
        +                      "type": "array"
        +                    },
        +                    "default": {
        +                      "description": "The default value for the input.  This should be a valid value for the input.  If you want to provide input examples or guidance, use the `placeholder` field instead.",
        +                      "type": "string"
        +                    },
        +                    "description": {
        +                      "description": "A description of the input, which clients can use to provide context to the user.",
        +                      "type": "string"
        +                    },
        +                    "format": {
        +                      "description": "Specifies the input format. Supported values include `filepath`, which should be interpreted as a file on the user's filesystem.\n\nWhen the input is converted to a string, booleans should be represented by the strings \"true\" and \"false\", and numbers should be represented as decimal values.",
        +                      "enum": [
        +                        "string",
        +                        "number",
        +                        "boolean",
        +                        "filepath"
        +                      ],
        +                      "type": "string"
        +                    },
        +                    "isRequired": {
        +                      "type": "boolean"
        +                    },
        +                    "isSecret": {
        +                      "description": "Indicates whether the input is a secret value (e.g., password, token). If true, clients should handle the value securely.",
        +                      "type": "boolean"
        +                    },
        +                    "placeholder": {
        +                      "description": "A placeholder for the input to be displaying during configuration. This is used to provide examples or guidance about the expected form or content of the input.",
        +                      "type": "string"
        +                    },
        +                    "value": {
        +                      "description": "The value for the input. If this is not set, the user may be prompted to provide a value. If a value is set, it should not be configurable by end users.\n\nIdentifiers wrapped in `{curly_braces}` will be replaced with the corresponding properties from the input `variables` map. If an identifier in braces is not found in `variables`, or if `variables` is not provided, the `{curly_braces}` substring should remain unchanged.\n",
        +                      "type": "string"
        +                    }
        +                  },
        +                  "type": "object"
        +                },
        +                {
        +                  "properties": {
        +                    "variables": {
        +                      "additionalProperties": {
        +                        "$ref": "#/components/schemas/Input"
        +                      },
        +                      "description": "A map of variable names to their values. Keys in the input `value` that are wrapped in `{curly_braces}` will be replaced with the corresponding variable values.",
        +                      "properties": {},
        +                      "type": "object"
        +                    }
        +                  },
        +                  "type": "object"
        +                }
        +              ]
        +            },
        +            {
        +              "properties": {
        +                "name": {
        +                  "description": "Name of the header or environment variable.",
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "name"
        +              ],
        +              "type": "object"
        +            }
        +          ]
        +        },
        +        "type": "array"
        +      },
        +      "type": {
        +        "description": "Transport type",
        +        "enum": [
        +          "streamable-http"
        +        ],
        +        "type": "string"
        +      },
        +      "url": {
        +        "description": "URL template for the streamable-http transport. Must start with http://, https://, or a template variable (e.g., {baseUrl}). Variables in {curly_braces} are resolved based on context: In Package context, they reference argument valueHints, argument names, or environment variable names from the parent Package. In Remote context, they reference variables from the transport's 'variables' object. After variable substitution, this should produce a valid URI.",
        +        "pattern": "^(https?://[^\\s]+|\\{[a-zA-Z_][a-zA-Z0-9_]*\\}[^\\s]*)$",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type",
        +      "url"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "properties": {
        +      "headers": {
        +        "description": "HTTP headers to include",
        +        "items": {
        +          "allOf": [
        +            {
        +              "allOf": [
        +                {
        +                  "properties": {
        +                    "choices": {
        +                      "description": "A list of possible values for the input. If provided, the user must select one of these values.",
        +                      "items": {
        +                        "type": "string"
        +                      },
        +                      "type": "array"
        +                    },
        +                    "default": {
        +                      "description": "The default value for the input.  This should be a valid value for the input.  If you want to provide input examples or guidance, use the `placeholder` field instead.",
        +                      "type": "string"
        +                    },
        +                    "description": {
        +                      "description": "A description of the input, which clients can use to provide context to the user.",
        +                      "type": "string"
        +                    },
        +                    "format": {
        +                      "description": "Specifies the input format. Supported values include `filepath`, which should be interpreted as a file on the user's filesystem.\n\nWhen the input is converted to a string, booleans should be represented by the strings \"true\" and \"false\", and numbers should be represented as decimal values.",
        +                      "enum": [
        +                        "string",
        +                        "number",
        +                        "boolean",
        +                        "filepath"
        +                      ],
        +                      "type": "string"
        +                    },
        +                    "isRequired": {
        +                      "type": "boolean"
        +                    },
        +                    "isSecret": {
        +                      "description": "Indicates whether the input is a secret value (e.g., password, token). If true, clients should handle the value securely.",
        +                      "type": "boolean"
        +                    },
        +                    "placeholder": {
        +                      "description": "A placeholder for the input to be displaying during configuration. This is used to provide examples or guidance about the expected form or content of the input.",
        +                      "type": "string"
        +                    },
        +                    "value": {
        +                      "description": "The value for the input. If this is not set, the user may be prompted to provide a value. If a value is set, it should not be configurable by end users.\n\nIdentifiers wrapped in `{curly_braces}` will be replaced with the corresponding properties from the input `variables` map. If an identifier in braces is not found in `variables`, or if `variables` is not provided, the `{curly_braces}` substring should remain unchanged.\n",
        +                      "type": "string"
        +                    }
        +                  },
        +                  "type": "object"
        +                },
        +                {
        +                  "properties": {
        +                    "variables": {
        +                      "additionalProperties": {
        +                        "$ref": "#/components/schemas/Input"
        +                      },
        +                      "description": "A map of variable names to their values. Keys in the input `value` that are wrapped in `{curly_braces}` will be replaced with the corresponding variable values.",
        +                      "properties": {},
        +                      "type": "object"
        +                    }
        +                  },
        +                  "type": "object"
        +                }
        +              ]
        +            },
        +            {
        +              "properties": {
        +                "name": {
        +                  "description": "Name of the header or environment variable.",
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "name"
        +              ],
        +              "type": "object"
        +            }
        +          ]
        +        },
        +        "type": "array"
        +      },
        +      "type": {
        +        "description": "Transport type",
        +        "enum": [
        +          "sse"
        +        ],
        +        "type": "string"
        +      },
        +      "url": {
        +        "description": "Server-Sent Events endpoint URL template. Must start with http://, https://, or a template variable (e.g., {baseUrl}). Variables in {curly_braces} are resolved based on context: In Package context, they reference argument valueHints, argument names, or environment variable names from the parent Package. In Remote context, they reference variables from the transport's 'variables' object. After variable substitution, this should produce a valid URI.",
        +        "pattern": "^(https?://[^\\s]+|\\{[a-zA-Z_][a-zA-Z0-9_]*\\}[^\\s]*)$",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type",
        +      "url"
        +    ],
        +    "type": "object"
        +  }
        +]
  12. 6 tool updates
    • First observeddeleteV01ServersServerNameVersionsVersion
    • First observedgetV01Servers
    • First observedgetV01ServersServerNameVersions
    • First observedgetV01ServersServerNameVersionsVersion
    • First observedpostV01Publish
    • First observedputV01ServersServerNameVersionsVersion

Frequently Asked Questions

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Connectors

Related MCP Servers

  • F
    license
    Not graded
    quality
    B
    maintenance
    Enables discovering and managing MCP servers through a registry, supporting listing, searching, and configuration.
    -
  • A
    license
    Not graded
    quality
    D
    maintenance
    Enables searching and retrieving detailed information about MCP servers from the official MCP registry. Provides tools to list servers with filtering options and get comprehensive details about specific servers.
    57
    3
    MIT
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.