@fidacy/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/package.json ADDED
@@ -0,0 +1,50 @@
1
+ {
2
+ "name": "@fidacy/mcp",
3
+ "version": "0.1.0",
4
+ "description": "Fidacy action firewall for AI agents. Mandate-gated payment authorization as an MCP server.",
5
+ "license": "Apache-2.0",
6
+ "homepage": "https://fidacy.com",
7
+ "keywords": [
8
+ "mcp",
9
+ "model-context-protocol",
10
+ "ai-agents",
11
+ "payments",
12
+ "firewall",
13
+ "mandate",
14
+ "trust",
15
+ "verdict",
16
+ "ed25519",
17
+ "fidacy"
18
+ ],
19
+ "type": "module",
20
+ "bin": { "fidacy-mcp": "dist/index.js" },
21
+ "main": "dist/index.js",
22
+ "exports": {
23
+ ".": "./dist/index.js",
24
+ "./assess": "./dist/assess.js",
25
+ "./grant": "./dist/grant.js",
26
+ "./types": "./dist/types.js",
27
+ "./core": "./dist/core.js",
28
+ "./executor": "./dist/executor.js",
29
+ "./signing": "./dist/signing.js",
30
+ "./util": "./dist/util.js"
31
+ },
32
+ "files": ["dist", "README.md", "LICENSE"],
33
+ "publishConfig": { "access": "public" },
34
+ "scripts": {
35
+ "build": "tsc",
36
+ "dev": "tsx watch src/index.ts",
37
+ "start": "node dist/index.js",
38
+ "prepublishOnly": "npm run build"
39
+ },
40
+ "engines": { "node": ">=18" },
41
+ "dependencies": {
42
+ "@modelcontextprotocol/sdk": "^1.29.0",
43
+ "zod": "^3.25.0"
44
+ },
45
+ "devDependencies": {
46
+ "@types/node": "^22.10.0",
47
+ "tsx": "^4.19.2",
48
+ "typescript": "^5.7.2"
49
+ }
50
+ }