Signed PASS/WARN/FAIL QA receipts for AI-generated JSON, ZIP, PDF, and DOCX deliverables.
MCPpedia last refreshed this data
io.github.blackcow4234-lab/artifactguard is an MCP server that signed PASS/WARN/FAIL QA receipts for AI-generated JSON, ZIP, PDF, and DOCX deliverables. Its tool list has not been published yet over http, requires no API key, and scores 34/100 on MCPpedia's security, maintenance and efficiency rubric.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"io-github-blackcow4234-lab-artifactguard": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Use ArtifactGuard as the last step before an AI agent delivers a JSON, ZIP, PDF, or DOCX file to a customer. The buyer receives a deterministic PASS, WARN, or FAIL receipt containing the artifact hash, contract hash, individual checks, validator version, timestamp, and an Ed25519 signature.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in writing
MCP server for document format conversion using pandoc.
This is an MCP server that allows you to directly download transcripts of YouTube videos.
Scrape, crawl, and map websites to Markdown or JSON via local CLI.
Any URL to clean, LLM-ready Markdown for RAG. Strips ads, nav, and boilerplate.
MCP Security Weekly
Get CVE alerts and security updates for io.github.blackcow4234-lab/artifactguard and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Use ArtifactGuard as the last step before an AI agent delivers a JSON, ZIP,
PDF, or DOCX file to a customer. The buyer receives a deterministic
PASS, WARN, or FAIL receipt containing the artifact hash, contract hash,
individual checks, validator version, timestamp, and an Ed25519 signature.
An AI report agent creates result.json. Before delivery, it asks
ArtifactGuard to verify that the file is valid JSON, contains a status field
equal to ready, and does not contain configured forbidden patterns. The agent
then attaches the signed receipt to its final handoff.
This is delivery-contract QA, not antivirus scanning, legal certification, or a guarantee that the document's claims are true.
Set your own Apify API token locally. Never commit it.
export APIFY_TOKEN="your-token"
curl --fail-with-body \
-X POST \
"https://api.apify.com/v2/acts/analytical_gratefulness~artifactguard-agent/run-sync-get-dataset-items?format=json" \
-H "Authorization: Bearer ${APIFY_TOKEN}" \
-H "Content-Type: application/json" \
--data-binary @examples/validate_artifact.json \
--output receipt-response.json
validate-manifest costs USD 0.01 and validate-artifact costs USD 0.05.
Malformed requests and readiness checks do not trigger an application event
charge. A completed inspection whose result is FAIL is still a valid paid
result.
The direct endpoint returns a standards-based 402 Payment Required response
with the price and payment requirements before any artifact is processed:
curl -i \
-X POST \
https://artifactguard-kl4hfo6j2q-as.a.run.app/v1/validate/artifact \
-H "Content-Type: application/json" \
--data-binary @examples/x402_validate_artifact.json
An x402-compatible buyer can satisfy that payment requirement and repeat the same request with a payment signature. Do not place wallet private keys in a request body, repository, or log.
Free discovery endpoints:
GET https://artifactguard-kl4hfo6j2q-as.a.run.app/capabilitiesGET https://artifactguard-kl4hfo6j2q-as.a.run.app/examplesGET https://artifactguard-kl4hfo6j2q-as.a.run.app/presetsThe Apify Standby Actor exposes Streamable HTTP MCP at:
https://analytical-gratefulne--artifactguard.apify.actor/mcp
Supply your own Apify token as an Authorization: Bearer ... header in the MCP
client. Available tools include validate_manifest, validate_artifact, and
the free verify_receipt tool.
Install the single verifier dependency and pass either a receipt object or the full ArtifactGuard response envelope:
python -m pip install -r requirements.txt
python verify_receipt.py receipt-response.json
The verifier retrieves only the public Ed25519 key identified by the receipt, recomputes the canonical receipt hash, and verifies the signature. It never needs an API token, payment credential, or private key.
examples/validate_artifact.json: Apify Actor input.examples/x402_validate_artifact.json: direct x402 API input.examples/validate_manifest.json: inexpensive manifest-only Actor input.verify_receipt.py: independent receipt hash and signature verifier.server.json: Official MCP Registry metadata for the authenticated remote.