Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,16 @@ export const ImplementationSchema = BaseMetadataSchema.extend({
/**
* An optional URL of the website for this implementation.
*/
websiteUrl: z.string().optional()
websiteUrl: z.string().optional(),

/**
* An optional human-readable description of what this implementation does.
*
* This can be used by clients or servers to provide context about their purpose
* and capabilities. For example, a server might describe the types of resources
* or tools it provides, while a client might describe its intended use case.
*/
description: z.string().optional()
});

const FormElicitationCapabilitySchema = z.intersection(
Expand Down
Loading