@zeph-to/mcp-server 1.1.0 → 1.2.1

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.
@@ -57,7 +57,7 @@ class ZephApiClient {
57
57
  async uploadToS3(url, content, contentType) {
58
58
  const response = await fetch(url, {
59
59
  method: 'PUT',
60
- headers: { 'Content-Type': contentType },
60
+ headers: { 'Content-Type': `${contentType}; charset=utf-8` },
61
61
  body: content,
62
62
  signal: AbortSignal.timeout(DEFAULT_TIMEOUT_MS),
63
63
  });
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.registerNotifyTool = void 0;
4
4
  const zod_1 = require("zod");
5
5
  const error_format_js_1 = require("../error-format.js");
6
- const BODY_FILE_THRESHOLD = 1024;
6
+ const BODY_FILE_THRESHOLD = 0;
7
7
  const PREVIEW_LENGTH = 200;
8
8
  const inferMimeType = (fileName) => {
9
9
  const ext = fileName.split('.').pop()?.toLowerCase();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zeph-to/mcp-server",
3
- "version": "1.1.0",
3
+ "version": "1.2.1",
4
4
  "description": "Zeph MCP server — AI agent notifications, prompts, and input via MCP protocol",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",