Skip to content

Commit cb4807a

Browse files
authored
add details of include_deleted in openapi spec (#1014)
<!-- Provide a brief summary of your changes --> ## Motivation and Context Add missing spec of include_deleted parameter in openapi spec ## How Has This Been Tested? NA ## Breaking Changes No ## Types of changes <!-- What types of changes does your code introduce? Put an `x` in all the boxes that apply: --> - [ ] Bug fix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change which adds functionality) - [ ] Breaking change (fix or feature that would cause existing functionality to change) - [x] Documentation update ## Checklist <!-- Go over all the following points, and put an `x` in all the boxes that apply. --> - [x] I have read the [MCP Documentation](https://modelcontextprotocol.io) - [ ] My code follows the repository's style guidelines - [ ] New and existing tests pass locally - [ ] I have added appropriate error handling - [ ] I have added or updated documentation as needed
1 parent bb84ea6 commit cb4807a

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

docs/reference/api/openapi.yaml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,13 @@ paths:
8888
schema:
8989
type: string
9090
example: "com.example%2Fmy-server"
91+
- name: include_deleted
92+
in: query
93+
description: Include deleted servers in results (default false)
94+
required: false
95+
schema:
96+
type: boolean
97+
default: false
9198
responses:
9299
'200':
93100
description: A list of all versions for the server
@@ -125,6 +132,13 @@ paths:
125132
schema:
126133
type: string
127134
example: "1.0.0"
135+
- name: include_deleted
136+
in: query
137+
description: Include deleted servers in results (default false)
138+
required: false
139+
schema:
140+
type: boolean
141+
default: false
128142
responses:
129143
'200':
130144
description: Detailed server information

0 commit comments

Comments
 (0)