Skip to content

Commit 7574be9

Browse files
authored
fix(schemas): Correct JSON schema reference for transport type (#3128)
- Fixed incorrect JSON schema reference from `#/$definitions` to `#/definitions` - Ensures proper JSON schema validation for transport type configuration - Prevents potential parsing or validation errors in agent configuration Signed-off-by: Carlos Santana <[email protected]>
1 parent fe75781 commit 7574be9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

schemas/agent-v1.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
"properties": {
6666
"type": {
6767
"description": "The type of transport the mcp server is expecting. For http transport, only url (for now) is taken into account",
68-
"$ref": "#/$definitions/TransportType",
68+
"$ref": "#/definitions/TransportType",
6969
"default": "stdio"
7070
},
7171
"url": {

0 commit comments

Comments
 (0)