is-it-ai-mcp
Read the file's own claim about itself, and check whether that claim still holds.
An image can carry a signed Content Credential declaring how it was made.
This server reads it, checks the signature against the bytes, and hands both
back to your AI assistant, which cannot see either on its own.
An MCP server that reads the C2PA Content Credential embedded in an image and reports what the file declares about its own origin, plus whether that declaration still verifies against the bytes in front of you.
What it does
It opens an image, looks for an embedded C2PA manifest (a Content Credential), and if one exists, reports two separate things: what the manifest claims about how the image was made, and whether the cryptographic signature over that manifest still matches the file's current bytes. It does not look at pixels and it does not guess. If there is no manifest, or the manifest exists but the signature is broken, it says so plainly instead of inventing an answer.
See docs/pass-fail.md for why "the signature verified" and "the claim is true" are two different questions, and why this server only ever answers the first one.
Install
Running the server
is-it-ai-mcp is published on PyPI. Run it with:
uvx is-it-ai-mcp
Install from source (contributors / unreleased main). Not part of the normal
install path above, only needed if you want the latest unreleased code instead of the
published PyPI release:
uvx --from git+https://github.com/JohannsenLum/is-it-ai-mcp is-it-ai-mcp
Or run from a local clone:
git clone https://github.com/JohannsenLum/is-it-ai-mcp
cd is-it-ai-mcp
uv sync
No account, API key, or environment variable is required. The server only reads local files you point it at.
Claude Code and Claude Desktop
Claude Code: ~/.claude.json
{
"mcpServers": {
"is-it-ai": {
"command": "uvx",
"args": ["is-it-ai-mcp"]
}
}
}
Claude Desktop: claude_desktop_config.json
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
Copy this JSON in via Settings → Developer → Edit Config:
{
"mcpServers": {
"is-it-ai": {
"command": "uvx",
"args": ["is-it-ai-mcp"]
}
}
}
Tools
check_image_provenance
Give it the path to one image file on disk. It returns:
verdict: one of the three states below (AI_DECLARED,NO_AI_DECLARED,UNKNOWN).reason: the specific basis for that verdict, for exampleno-credential,credential-invalid,ai-source-type,capture-source-type, orcredential-silent.what_this_does_not_mean: a plain-language caveat attached to every verdict, so the result cannot be quietly upgraded into a stronger claim than the evidence supports.signature: the rawvalidation_state, averifiedboolean, and anyfailure_codesthe signature check produced.declared: what the manifest claims when one exists.signer,claim_generator, andsigned_atare free text pulled straight from the file, so each is guarded per the Security section below before it reaches you.source_types(IPTC digital-source-type URIs, drawn from a closed vocabulary) andwatermark_declared(a boolean) cannot carry attacker-authored text, so both are returned as-is and are never fenced.
A file that cannot be read (bad path, unsupported format) comes back as a distinct
error result rather than a fake UNKNOWN. It needs a real path on disk, not the image
bytes themselves. See Note on file paths.
scan_directory
Give it a folder. It walks the tree, runs every image it finds through the same check, and returns aggregate counts by verdict and by signer, plus a capped sample of the files that carried a credential, rather than a line per file. This is the tool that reproduces this project's own 401-image sweep (see below) against any directory you point it at.
The three verdicts
| Verdict | Means | Reachable only when |
|---|---|---|
AI_DECLARED |
The file's manifest asserts AI or algorithmic generation | A manifest is present, its signature verifies, and it carries an IPTC digital-source-type marking AI involvement |
NO_AI_DECLARED |
The file's manifest asserts a real-world capture | A manifest is present, its signature verifies, and it carries an IPTC digital-source-type marking a capture (camera, film, print, minor edits) |
UNKNOWN |
Nothing usable was established | Everything else, including no manifest, a broken signature, or a manifest that never recorded a source type |
UNKNOWN is the default and by far the most common answer. In a scan of 401 real
images, only 14 carried a Content Credential at all, and every one of those was from
OpenAI: about 96.5% had no credential whatsoever. Expect UNKNOWN on almost everything
you check. That is not a bug in this server, it is the current state of image
provenance in the wild.
What this cannot tell you
- It does not detect AI from pixels. There is no image analysis here at all, no model looking at the picture. Every verdict comes from a cryptographically signed text record, or from the absence of one.
- A missing credential is not evidence of anything. An unmarked AI image and an
unmarked photograph are indistinguishable to this tool. Screenshotting, re-saving, or
passing an image through almost any editor strips the credential, AI-made or not.
UNKNOWNmeans "no usable record survived," never "no AI was involved." - A valid signature does not make the signer's claims true. The signature proves the manifest has not been altered since it was signed and confirms who signed it. It proves nothing about whether the signer told the truth. Anyone can generate their own certificate, sign their own file, and assert whatever origin they like: it will verify perfectly and still be false. Verification is about the seal, not the letter. See docs/pass-fail.md.
Why it exists
When you attach an image to a model, the image is decoded to pixels and re-encoded before the model ever sees it. Container metadata, including any C2PA manifest, never reaches the model: the model sees an RGB array, nothing more. Without a tool, it cannot read a manifest at all, and it will tend to guess whether an image is AI-generated from visual artefacts instead. Published benchmarks put that guess at roughly 18 to 31% accuracy, little better than chance. This server exists so the model reads the actual signed record on disk instead of pattern-matching on JPEG compression artefacts.
Security
Every human-readable string returned by this server originated inside the file being inspected: signer name, claim-generator string, and any free-text reason or label. That text was written by whoever produced the file, not by you, and it lands in the same context window as your own instructions. A field labelled "signer" carries an air of verified authority, but the signature covers the asset's bytes, not the honesty of any string inside the manifest. Anyone can sign their own file with their own certificate and write anything they like in it.
Before any such string is returned, it is cleaned of control characters, length-capped, and wrapped in a fenced boundary that marks it explicitly as untrusted data rather than instructions, with a random nonce the file's author could not have pre-guessed. Structural values, the verdict itself, the validation state, and the IPTC source-type URIs are drawn from closed vocabularies this server controls and are never fenced, since they cannot carry attacker-authored text.
See src/is_it_ai_mcp/safety.py for the implementation
and the full threat model in its module docstring.
Note on file paths
This tool takes a file path, not image bytes. In Claude Code, an image you paste into the conversation is written to disk first, so its path is reachable and this just works. In other clients, a pasted or attached image may exist only as inline data with no path on the filesystem the server can reach, in which case there is nothing for this tool to open. If a check comes back unable to find the file, save the image to disk first and point the tool at that path.
Development
uv sync --extra dev
uv run pytest -v
--extra dev matters: without it, pytest-asyncio (needed for asyncio_mode = "auto"
in pyproject.toml) is not installed, and pytest prints an "Unknown config option:
asyncio_mode" warning on every run.
Tests run against the fixtures in fixtures/, a real signed image plus
tampered and stripped variants with hand-verified expected outcomes. See
fixtures/GROUND-TRUTH.md for how each was produced and
what each is expected to prove.
Licence
MIT © 2026 Johannsen Lum.
Use it, change it, redistribute it, build something commercial on it: the only condition is that you keep the copyright notice and licence text. It comes with no warranty of any kind.
Contributions are accepted under the same licence.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file is_it_ai_mcp-0.1.0.tar.gz.
File metadata
- Download URL: is_it_ai_mcp-0.1.0.tar.gz
- Upload date:
- Size: 2.4 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e250b33309bcac8d6e0631c5e905c83c7ce55a2fb6292e702bc10ea7801cdae8
|
|
| MD5 |
95cedbf5c16276b638c072f80f48f041
|
|
| BLAKE2b-256 |
8d18abef5ddb7be8f1e836273802822ea45c3af38079e06ddf9539e20126bfd7
|
Provenance
The following attestation bundles were made for is_it_ai_mcp-0.1.0.tar.gz:
Publisher:
publish.yml on JohannsenLum/is-it-ai-mcp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
is_it_ai_mcp-0.1.0.tar.gz -
Subject digest:
e250b33309bcac8d6e0631c5e905c83c7ce55a2fb6292e702bc10ea7801cdae8 - Sigstore transparency entry: 2526487435
- Sigstore integration time:
-
Permalink:
JohannsenLum/is-it-ai-mcp@d400abba9550d4099f1850ce817db6efcbeebb90 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/JohannsenLum
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@d400abba9550d4099f1850ce817db6efcbeebb90 -
Trigger Event:
release
-
Statement type:
File details
Details for the file is_it_ai_mcp-0.1.0-py3-none-any.whl.
File metadata
- Download URL: is_it_ai_mcp-0.1.0-py3-none-any.whl
- Upload date:
- Size: 25.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
440847da3aa628d42fa3ef90da6d5b4a90c41490ca47fdc481ea5ec11ecfce56
|
|
| MD5 |
0cd2f945a68d110a01c5c8630f55fc46
|
|
| BLAKE2b-256 |
937c2497bfbb59f1cb2eb16aaa364b2636c460fa1d4238183346645f229bee49
|
Provenance
The following attestation bundles were made for is_it_ai_mcp-0.1.0-py3-none-any.whl:
Publisher:
publish.yml on JohannsenLum/is-it-ai-mcp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
is_it_ai_mcp-0.1.0-py3-none-any.whl -
Subject digest:
440847da3aa628d42fa3ef90da6d5b4a90c41490ca47fdc481ea5ec11ecfce56 - Sigstore transparency entry: 2526487548
- Sigstore integration time:
-
Permalink:
JohannsenLum/is-it-ai-mcp@d400abba9550d4099f1850ce817db6efcbeebb90 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/JohannsenLum
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@d400abba9550d4099f1850ce817db6efcbeebb90 -
Trigger Event:
release
-
Statement type: