File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed
Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -329,7 +329,16 @@ export const ImplementationSchema = BaseMetadataSchema.extend({
329329 /**
330330 * An optional URL of the website for this implementation.
331331 */
332- websiteUrl : z . string ( ) . optional ( )
332+ websiteUrl : z . string ( ) . optional ( ) ,
333+
334+ /**
335+ * An optional human-readable description of what this implementation does.
336+ *
337+ * This can be used by clients or servers to provide context about their purpose
338+ * and capabilities. For example, a server might describe the types of resources
339+ * or tools it provides, while a client might describe its intended use case.
340+ */
341+ description : z . string ( ) . optional ( )
333342} ) ;
334343
335344const FormElicitationCapabilitySchema = z . intersection (
You can’t perform that action at this time.
0 commit comments