@@ -69,6 +69,7 @@ mode: STDIO
6969name : my-first-mcp-server
7070version : 1.0.0
7171type : SYNC
72+ instructions : You are a helpful AI assistant
7273request-timeout : 20000
7374capabilities :
7475 resource : true
@@ -180,11 +181,14 @@ mode: STREAMABLE
180181name : my-mcp-server
181182version : 1.0.0
182183type : SYNC
184+ instructions : You are a helpful AI assistant
183185request-timeout : 20000
184186capabilities :
185187 resource : true
188+ subscribe-resource : true
186189 prompt : true
187190 tool : true
191+ completion : true
188192change-notification :
189193 resource : true
190194 prompt : true
@@ -198,16 +202,23 @@ streamable:
198202
199203### Configuration Properties
200204
201- | Property | Description | Default |
202- |-----------------------|-------------------------------------------|--------------|
203- | ` enabled` | Enable/disable MCP server | `true` |
204- | `mode` | Server mode : ` STDIO` , `SSE`, `STREAMABLE` | `STREAMABLE` |
205- | `name` | Server name | `mcp-server` |
206- | `version` | Server version | `1.0.0` |
207- | `type` | Server type : ` SYNC` , `ASYNC` | `SYNC` |
208- | `request-timeout` | Request timeout in milliseconds | `20000` |
209- | `capabilities` | Enable resources, prompts, tools | all `true` |
210- | `change-notification` | Enable change notifications | all `true` |
205+ | Property | Description | Default |
206+ |-----------------------------------|-------------------------------------------|--------------|
207+ | ` enabled` | Enable/disable MCP server | `true` |
208+ | `mode` | Server mode : ` STDIO` , `SSE`, `STREAMABLE` | `STREAMABLE` |
209+ | `name` | Server name | `mcp-server` |
210+ | `version` | Server version | `1.0.0` |
211+ | `type` | Server type : ` SYNC` , `ASYNC` | `SYNC` |
212+ | `instructions` | Instructions for the LLM client | (empty) |
213+ | `request-timeout` | Request timeout in milliseconds | `20000` |
214+ | `capabilities.resource` | Enable resource support | `true` |
215+ | `capabilities.subscribe-resource` | Enable resource subscription | `true` |
216+ | `capabilities.prompt` | Enable prompt support | `true` |
217+ | `capabilities.tool` | Enable tool support | `true` |
218+ | `capabilities.completion` | Enable completion support | `true` |
219+ | `change-notification.resource` | Notify clients on resource change | `true` |
220+ | `change-notification.prompt` | Notify clients on prompt change | `true` |
221+ | `change-notification.tool` | Notify clients on tool change | `true` |
211222
212223# ## Profile-based Configuration
213224
0 commit comments