@sanctuary-framework/mcp-server 0.2.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/package.json ADDED
@@ -0,0 +1,71 @@
1
+ {
2
+ "name": "@sanctuary-framework/mcp-server",
3
+ "version": "0.2.0",
4
+ "description": "Sanctuary Framework MCP Server — sovereignty infrastructure for agent harnesses",
5
+ "type": "module",
6
+ "main": "dist/index.cjs",
7
+ "module": "dist/index.js",
8
+ "types": "dist/index.d.ts",
9
+ "bin": {
10
+ "sanctuary-mcp-server": "dist/cli.js"
11
+ },
12
+ "exports": {
13
+ ".": {
14
+ "types": "./dist/index.d.ts",
15
+ "import": "./dist/index.js",
16
+ "require": "./dist/index.cjs"
17
+ }
18
+ },
19
+ "files": [
20
+ "dist",
21
+ "README.md",
22
+ "LICENSE"
23
+ ],
24
+ "scripts": {
25
+ "build": "tsup",
26
+ "dev": "tsup --watch",
27
+ "start": "node dist/cli.js",
28
+ "test": "vitest run",
29
+ "test:watch": "vitest",
30
+ "test:security": "vitest run --dir test/security",
31
+ "test:integration": "vitest run --dir test/integration",
32
+ "test:conformance": "vitest run --dir test/conformance",
33
+ "typecheck": "tsc --noEmit",
34
+ "lint": "eslint src/",
35
+ "clean": "rm -rf dist",
36
+ "prepublishOnly": "npm run typecheck && npm run test && npm run build"
37
+ },
38
+ "dependencies": {
39
+ "@modelcontextprotocol/sdk": "^1.26.0",
40
+ "@noble/ciphers": "^2.1.1",
41
+ "@noble/curves": "^1.8.0",
42
+ "@noble/hashes": "^1.7.0",
43
+ "hash-wasm": "^4.12.0"
44
+ },
45
+ "devDependencies": {
46
+ "@types/node": "^22.0.0",
47
+ "tsup": "^8.0.0",
48
+ "typescript": "^5.7.0",
49
+ "vitest": "^3.0.0"
50
+ },
51
+ "engines": {
52
+ "node": ">=20.0.0"
53
+ },
54
+ "license": "Apache-2.0",
55
+ "repository": {
56
+ "type": "git",
57
+ "url": "https://github.com/eriknewton/sanctuary-framework.git",
58
+ "directory": "server"
59
+ },
60
+ "keywords": [
61
+ "sanctuary",
62
+ "mcp",
63
+ "sovereignty",
64
+ "agent",
65
+ "encryption",
66
+ "identity",
67
+ "reputation",
68
+ "privacy"
69
+ ],
70
+ "author": "Erik Newton"
71
+ }