@revealui/mcp 0.0.1-pre.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.
- package/LICENSE +202 -0
- package/dist/index.js +10990 -0
- package/dist/index.js.map +1 -0
- package/package.json +96 -0
package/package.json
ADDED
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@revealui/mcp",
|
|
3
|
+
"version": "0.0.1-pre.0",
|
|
4
|
+
"description": "Reveal MCP - Unified Model Context Protocol implementation for multi-agent systems and PayloadCMS integration",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"module": "./dist/index.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"import": "./dist/index.js"
|
|
13
|
+
},
|
|
14
|
+
"./server": {
|
|
15
|
+
"types": "./dist/server/index.d.ts",
|
|
16
|
+
"import": "./dist/server/index.js"
|
|
17
|
+
},
|
|
18
|
+
"./agents": {
|
|
19
|
+
"types": "./dist/agents/index.d.ts",
|
|
20
|
+
"import": "./dist/agents/index.js"
|
|
21
|
+
},
|
|
22
|
+
"./tools": {
|
|
23
|
+
"types": "./dist/tools/index.d.ts",
|
|
24
|
+
"import": "./dist/tools/index.js"
|
|
25
|
+
},
|
|
26
|
+
"./analytics": {
|
|
27
|
+
"types": "./dist/analytics/index.d.ts",
|
|
28
|
+
"import": "./dist/analytics/index.js"
|
|
29
|
+
},
|
|
30
|
+
"./analytics/server": {
|
|
31
|
+
"types": "./dist/analytics/server.d.ts",
|
|
32
|
+
"import": "./dist/analytics/server.js"
|
|
33
|
+
},
|
|
34
|
+
"./bridge/PayloadMCPService": {
|
|
35
|
+
"types": "./dist/bridge/PayloadMCPService.d.ts",
|
|
36
|
+
"import": "./dist/bridge/PayloadMCPService.js"
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
"files": [
|
|
40
|
+
"dist",
|
|
41
|
+
"README.md",
|
|
42
|
+
"LICENSE",
|
|
43
|
+
"CHANGELOG.md"
|
|
44
|
+
],
|
|
45
|
+
"keywords": [
|
|
46
|
+
"mcp",
|
|
47
|
+
"model-context-protocol",
|
|
48
|
+
"multi-agent",
|
|
49
|
+
"payloadcms",
|
|
50
|
+
"ai",
|
|
51
|
+
"agents",
|
|
52
|
+
"tools",
|
|
53
|
+
"reveal"
|
|
54
|
+
],
|
|
55
|
+
"license": "MIT",
|
|
56
|
+
"publishable": true,
|
|
57
|
+
"author": "RevealUI Team",
|
|
58
|
+
"repository": {
|
|
59
|
+
"type": "git",
|
|
60
|
+
"url": "https://github.com/RevealUIStudio/reveal.git",
|
|
61
|
+
"directory": "packages/mcp"
|
|
62
|
+
},
|
|
63
|
+
"bugs": {
|
|
64
|
+
"url": "https://github.com/RevealUIStudio/reveal/issues"
|
|
65
|
+
},
|
|
66
|
+
"homepage": "https://revealui.com",
|
|
67
|
+
"publishConfig": {
|
|
68
|
+
"access": "public"
|
|
69
|
+
},
|
|
70
|
+
"dependencies": {
|
|
71
|
+
"@revealui/core": "^0.0.1-pre.0",
|
|
72
|
+
"@libsql/client": "^0.15.15",
|
|
73
|
+
"@revealui/infrastructure": "0.0.1-pre.0"
|
|
74
|
+
},
|
|
75
|
+
"devDependencies": {
|
|
76
|
+
"@types/node": "^22.10.5",
|
|
77
|
+
"@types/react": "^19.2.2",
|
|
78
|
+
"typescript": "^5.9.3",
|
|
79
|
+
"vitest": "^4.0.14",
|
|
80
|
+
"rimraf": "^6.1.2",
|
|
81
|
+
"tsup": "^8.3.5"
|
|
82
|
+
},
|
|
83
|
+
"peerDependencies": {
|
|
84
|
+
"payload": ">=3.60.0 <4",
|
|
85
|
+
"react": "^19.0.0"
|
|
86
|
+
},
|
|
87
|
+
"engines": {
|
|
88
|
+
"node": ">=22.0.0"
|
|
89
|
+
},
|
|
90
|
+
"scripts": {
|
|
91
|
+
"build": "pnpm exec tsup",
|
|
92
|
+
"clean": "rm -rf dist .tsbuildinfo",
|
|
93
|
+
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
94
|
+
"test": "vitest run"
|
|
95
|
+
}
|
|
96
|
+
}
|