-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "chronoverify-mcp",
"version": "0.1.8",
"mcpName": "io.github.beeswaxpat/chronoverify",
"description": "MCP server for ChronoVerify: verify a photo's capture time and provenance (C2PA, EXIF, pixel forensics) and fetch a signed, RFC 3161 timestamped audit report, from any MCP-compatible AI agent.",
"type": "module",
"bin": {
"chronoverify-mcp": "dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"modelcontextprotocol",
"model-context-protocol",
"image",
"provenance",
"c2pa",
"exif",
"forensics",
"verification",
"osint"
],
"license": "MIT",
"homepage": "https://chronoverify.com",
"repository": {
"type": "git",
"url": "git+https://github.com/beeswaxpat/chronoverify-mcp.git"
},
"bugs": {
"url": "https://github.com/beeswaxpat/chronoverify-mcp/issues"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@types/node": "^20.14.0",
"typescript": "^5.4.0"
}
}