You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.describe("Number of items per page (default: 30)"),
89
-
90
90
where: WhereSchema.optional().describe(
91
91
"Standard WhereExpression filter (converted to simple search internally)",
92
92
),
93
+
tags: z
94
+
.array(z.string())
95
+
.optional()
96
+
.describe(
97
+
"Filter by tags (returns servers that have ANY of the specified tags)",
98
+
),
99
+
categories: z
100
+
.array(z.string())
101
+
.optional()
102
+
.describe(
103
+
"Filter by categories (returns servers that have ANY of the specified categories). Valid categories: productivity, development, data, ai, communication, infrastructure, security, monitoring, analytics, automation",
104
+
),
105
+
verified: z
106
+
.boolean()
107
+
.optional()
108
+
.describe("Filter by verification status (true = verified only)"),
109
+
hasRemote: z
110
+
.boolean()
111
+
.optional()
112
+
.describe("Filter servers that support remote execution"),
93
113
})
94
114
.describe("Filtering, sorting, and pagination context");
"Lists MCP servers available in the registry with support for pagination, search, and boolean filters (has_remotes, has_packages, is_latest, etc.)",
237
+
"Lists MCP servers available in the registry with support for pagination, search, and filters (tags, categories, verified, hasRemote). Always returns the latest version of each server.",
0 commit comments