chronoverify for VS Code
io.github.beeswaxpat/chronoverify
Verify a photo's capture time and provenance: C2PA validation, EXIF/XMP, and pixel forensics.
client:VS Code
transport:stdio
runtime:npm
Install chronoverify in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "chronoverify-api-key",
"description": "CHRONOVERIFY_API_KEY",
"password": true
}
],
"servers": {
"chronoverify": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"chronoverify-mcp"
],
"env": {
"CHRONOVERIFY_API_KEY": "${input:chronoverify-api-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs