docuking-mcp 1.0.0

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 (4) hide show
  1. package/DEPLOY_TASK.md +33 -0
  2. package/README.md +118 -0
  3. package/index.js +1594 -0
  4. package/package.json +30 -0
package/package.json ADDED
@@ -0,0 +1,30 @@
1
+ {
2
+ "name": "docuking-mcp",
3
+ "version": "1.0.0",
4
+ "description": "DocuKing MCP Server - AI 시대의 문서 협업 플랫폼",
5
+ "type": "module",
6
+ "main": "index.js",
7
+ "bin": {
8
+ "docuking-mcp": "./index.js"
9
+ },
10
+ "scripts": {
11
+ "start": "node index.js"
12
+ },
13
+ "keywords": [
14
+ "mcp",
15
+ "docuking",
16
+ "document",
17
+ "collaboration",
18
+ "claude",
19
+ "cursor",
20
+ "ai"
21
+ ],
22
+ "author": "Linky Solution",
23
+ "license": "MIT",
24
+ "dependencies": {
25
+ "@modelcontextprotocol/sdk": "^0.5.0"
26
+ },
27
+ "engines": {
28
+ "node": ">=18.0.0"
29
+ }
30
+ }