@mcp-ts/sdk 2.4.4 → 2.4.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -181,12 +181,8 @@ function isCallToolSuccess(response) {
181
181
  return "content" in response;
182
182
  }
183
183
  nanoid.customAlphabet(
184
- "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz",
185
- 1
186
- );
187
- nanoid.customAlphabet(
188
- "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789",
189
- 11
184
+ "abcdefghijklmnopqrstuvwxyz0123456789",
185
+ 12
190
186
  );
191
187
  function sanitizeServerLabel(name) {
192
188
  let sanitized = name.replace(/[^a-zA-Z0-9-_]/g, "_").replace(/_{2,}/g, "_").toLowerCase();