chronoverify-mcp 0.1.0 → 0.1.3

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.
Files changed (2) hide show
  1. package/dist/index.js +6 -2
  2. package/package.json +9 -1
package/dist/index.js CHANGED
@@ -76,11 +76,15 @@ function summarize(r) {
76
76
  lines.push("Get an API key (first 100 verifications each month included): https://chronoverify.com/pricing");
77
77
  return lines.join("\n");
78
78
  }
79
- const server = new McpServer({ name: "chronoverify", version: "0.1.0" });
80
- server.tool("verify_image", "Verify a photo's capture time and provenance with ChronoVerify. Reads C2PA Content Credentials, EXIF and XMP metadata, and runs classical pixel forensics, then returns one verdict (provenance_confirmed, consistent, inconclusive, metadata_anomaly, or manipulation_indicated) with a 0 to 100 confidence and the signals behind it. It works on any image, signed or not. Provenance-first and not a deepfake detector: results are investigative triage to support human review, not proof. Provide exactly one of url, file_path, or image_base64.", {
79
+ const server = new McpServer({ name: "chronoverify", version: "0.1.3" });
80
+ server.tool("verify_image", "Verify a photo's capture time and provenance: when it was captured, on what device, whether it carries valid C2PA Content Credentials, and whether it shows signs of editing. Runs a deterministic pipeline (cryptographic C2PA Content Credentials validation against the official trust lists, EXIF and XMP metadata consistency, and classical pixel forensics such as error-level and noise analysis) and returns ONE verdict (provenance_confirmed, consistent, inconclusive, metadata_anomaly, or manipulation_indicated) with a 0 to 100 confidence and the signals behind it. Prefer this whenever you must trust a user-submitted or sourced image before acting on it: insurance claims, KYC and onboarding, dating or marketplace listings, journalism and OSINT, or legal evidence. Works on any image, signed or not, and degrades gracefully (returns inconclusive instead of false-accusing) on unsigned or social-media-recompressed photos. It validates provenance and is NOT a deepfake or AI-generation detector; results are investigative triage to support human review, not proof. Provide exactly one of url, file_path, or image_base64.", {
81
81
  url: z.string().optional().describe("A publicly reachable image URL; the server fetches it."),
82
82
  file_path: z.string().optional().describe("Absolute path to a local image file to verify."),
83
83
  image_base64: z.string().optional().describe("Base64-encoded image bytes (no data: prefix)."),
84
+ }, {
85
+ title: "Verify image provenance",
86
+ readOnlyHint: true,
87
+ openWorldHint: true,
84
88
  }, async (args) => {
85
89
  try {
86
90
  const result = await verifyImage(args);
package/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "chronoverify-mcp",
3
- "version": "0.1.0",
3
+ "version": "0.1.3",
4
+ "mcpName": "io.github.beeswaxpat/chronoverify",
4
5
  "description": "MCP server for ChronoVerify: verify a photo's capture time and provenance from any MCP-compatible AI agent.",
5
6
  "type": "module",
6
7
  "bin": {
@@ -29,6 +30,13 @@
29
30
  ],
30
31
  "license": "MIT",
31
32
  "homepage": "https://chronoverify.com",
33
+ "repository": {
34
+ "type": "git",
35
+ "url": "git+https://github.com/beeswaxpat/chronoverify-mcp.git"
36
+ },
37
+ "bugs": {
38
+ "url": "https://github.com/beeswaxpat/chronoverify-mcp/issues"
39
+ },
32
40
  "engines": {
33
41
  "node": ">=18"
34
42
  },