docuking-mcp 2.1.0 → 2.1.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.
Files changed (2) hide show
  1. package/index.js +2 -2
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -40,8 +40,8 @@ import crypto from 'crypto';
40
40
  // 환경변수에서 API 엔드포인트 설정 (키는 로컬 config에서 읽음)
41
41
  const API_ENDPOINT = process.env.DOCUKING_API_ENDPOINT || 'https://docuking.ai/api';
42
42
 
43
- // 파일 크기 제한 (50MB) - Base64 인코딩 시 66MB, 서버 제한 200MB 이내
44
- const MAX_FILE_SIZE_MB = 50;
43
+ // 파일 크기 제한 (150MB) - Base64 인코딩 시 약 200MB, 서버 제한 200MB 일치
44
+ const MAX_FILE_SIZE_MB = 150;
45
45
  const MAX_FILE_SIZE_BYTES = MAX_FILE_SIZE_MB * 1024 * 1024;
46
46
 
47
47
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "docuking-mcp",
3
- "version": "2.1.0",
3
+ "version": "2.1.1",
4
4
  "description": "DocuKing MCP Server - AI 시대의 문서 협업 플랫폼",
5
5
  "type": "module",
6
6
  "main": "index.js",