@open-emirates/mcp 0.1.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/README.md +10 -0
- package/package.json +30 -0
- package/src/index.ts +10 -0
package/README.md
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# @open-emirates/mcp
|
|
2
|
+
|
|
3
|
+
Independent MCP entry point for Open Emirates.
|
|
4
|
+
|
|
5
|
+
```bash
|
|
6
|
+
bunx @open-emirates/mcp
|
|
7
|
+
bunx @open-emirates/mcp http
|
|
8
|
+
```
|
|
9
|
+
|
|
10
|
+
The package is a compatibility adapter over the proven `uaemcp` engine during the monorepo transition. Existing `bunx uaemcp` installations continue to work.
|
package/package.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@open-emirates/mcp",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Open Emirates MCP server for Claude, Codex, Cursor and other MCP clients.",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "https://github.com/zad-tools/uaemcp.git",
|
|
8
|
+
"directory": "packages/mcp"
|
|
9
|
+
},
|
|
10
|
+
"homepage": "https://uaemcp.zad.tools",
|
|
11
|
+
"bugs": "https://github.com/zad-tools/uaemcp/issues",
|
|
12
|
+
"license": "MIT",
|
|
13
|
+
"type": "module",
|
|
14
|
+
"bin": {
|
|
15
|
+
"open-emirates-mcp": "src/index.ts"
|
|
16
|
+
},
|
|
17
|
+
"exports": {
|
|
18
|
+
".": "./src/index.ts"
|
|
19
|
+
},
|
|
20
|
+
"files": ["src", "README.md"],
|
|
21
|
+
"engines": {
|
|
22
|
+
"bun": ">=1.3.0"
|
|
23
|
+
},
|
|
24
|
+
"dependencies": {
|
|
25
|
+
"uaemcp": "^1.80.0"
|
|
26
|
+
},
|
|
27
|
+
"publishConfig": {
|
|
28
|
+
"access": "public"
|
|
29
|
+
}
|
|
30
|
+
}
|
package/src/index.ts
ADDED