@ours.network/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.
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@ours.network/mcp",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "MCP server daemon for ours — one native ADAPT wrapper hosting N self-sovereign identities, exposing secure agent-to-agent messaging tools over HTTP (Streamable HTTP). Run `ours-mcp start`.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "FSL-1.1-Apache-2.0",
|
|
7
|
+
"author": "Adapt Toolkit",
|
|
8
|
+
"homepage": "https://github.com/adapt-toolkit/ours-mcp/tree/main/packages/core#readme",
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/adapt-toolkit/ours-mcp.git",
|
|
12
|
+
"directory": "packages/core"
|
|
13
|
+
},
|
|
14
|
+
"bugs": {
|
|
15
|
+
"url": "https://github.com/adapt-toolkit/ours-mcp/issues"
|
|
16
|
+
},
|
|
17
|
+
"keywords": [
|
|
18
|
+
"mcp",
|
|
19
|
+
"model-context-protocol",
|
|
20
|
+
"claude",
|
|
21
|
+
"a2a",
|
|
22
|
+
"adapt",
|
|
23
|
+
"e2e",
|
|
24
|
+
"messaging"
|
|
25
|
+
],
|
|
26
|
+
"bin": {
|
|
27
|
+
"ours-mcp": "dist/cli.js"
|
|
28
|
+
},
|
|
29
|
+
"files": [
|
|
30
|
+
"dist",
|
|
31
|
+
"README.md"
|
|
32
|
+
],
|
|
33
|
+
"publishConfig": {
|
|
34
|
+
"access": "public"
|
|
35
|
+
},
|
|
36
|
+
"engines": {
|
|
37
|
+
"node": ">=20"
|
|
38
|
+
},
|
|
39
|
+
"scripts": {
|
|
40
|
+
"build": "node build.mjs",
|
|
41
|
+
"build:dev": "OURS_BUILD_DEV=1 node build.mjs",
|
|
42
|
+
"build:tsc": "tsc -p tsconfig.json",
|
|
43
|
+
"dev": "tsx src/cli.ts serve",
|
|
44
|
+
"dev:stdio": "OURS_TRANSPORT=stdio tsx src/index.ts",
|
|
45
|
+
"start": "node dist/cli.js start",
|
|
46
|
+
"stop": "node dist/cli.js stop",
|
|
47
|
+
"status": "node dist/cli.js status",
|
|
48
|
+
"serve": "node dist/cli.js serve",
|
|
49
|
+
"prepublishOnly": "node build.mjs",
|
|
50
|
+
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
51
|
+
"test": "node test/loopback-bind.test.mjs && node test/lease-binding.test.mjs && node test/session-restore.test.mjs && node test/daemon-restart-resume.test.mjs && node test/version-advisory.test.mjs && node test/files-helpers.test.mjs && node test/validate-name.test.mjs"
|
|
52
|
+
},
|
|
53
|
+
"dependencies": {
|
|
54
|
+
"@adapt-toolkit/sdk": "0.6.2",
|
|
55
|
+
"@adapt-toolkit/sdk-native": "0.6.2"
|
|
56
|
+
},
|
|
57
|
+
"devDependencies": {
|
|
58
|
+
"@modelcontextprotocol/sdk": "^1.0.4",
|
|
59
|
+
"@types/node": "^20.14.0",
|
|
60
|
+
"esbuild": "^0.24.2",
|
|
61
|
+
"tsx": "^4.19.0",
|
|
62
|
+
"typescript": "^5.5.4",
|
|
63
|
+
"zod": "^3.23.8"
|
|
64
|
+
}
|
|
65
|
+
}
|