Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

MCP server for the CMS File Integrity Checker. Enables users to submit and query file integrity jobs through natural language.

README.md

integrity-checker-mcp

MCP server for the CMS File Integrity Checker.

Exposes integrity check operations as tools for AI agents (Archi) so users can submit and query file integrity jobs through natural language.

Tools

| Tool | Description | |---|---| | submit_integrity_request | Submit up to N LFNs for integrity checking (async job) | | get_integrity_request | Poll status and results for a request by ID | | list_integrity_requests | List requests, optionally filtered by status or user | | get_integrity_files | Per-file results for a completed request | | get_integrity_replicas | Per-replica results for a completed request | | get_queue_status | Current queue depth (submitted + in-progress counts) |

Configuration

| Variable | Required | Default | Must match | |---|---|---|---| | INTEGRITY_CHECKER_URL | yes | — | — | | INTEGRITY_CHECKER_TOKEN | no | — | — | | INTEGRITY_CHECKER_TIMEOUT | no | 60 | — | | INTEGRITY_CHECKER_MAX_LFNS_PER_REQUEST | no | 20 | FIC_MAX_LFNS_PER_REQUEST on server | | INTEGRITY_CHECKER_MAX_CONCURRENT_JOBS | no | 3 | FIC_MAX_CONCURRENT_JOBS on server | | INTEGRITY_CHECKER_MCP_TRANSPORT | no | stdio | — | | INTEGRITY_CHECKER_MCP_HOST | no | 0.0.0.0 | — | | INTEGRITY_CHECKER_MCP_PORT | no | 8000 | — |

INTEGRITY_CHECKER_MAX_LFNS_PER_REQUEST and INTEGRITY_CHECKER_MAX_CONCURRENT_JOBS must be kept in sync with the corresponding env vars on the integrity checker server.

Running locally

python -m venv .venv && source .venv/bin/activate
pip install -e ".[dev]"

In stdio mode (the default) the server is launched as a subprocess by your MCP client (Claude Desktop, Archi, etc.) — configure it there rather than running it directly.

For manual testing with a network-accessible endpoint, use SSE transport:

INTEGRITY_CHECKER_URL=https://your-server \
INTEGRITY_CHECKER_MCP_TRANSPORT=sse \
integrity-checker-mcp

Running with Docker

docker build -t integrity-checker-mcp .
docker run \
  -e INTEGRITY_CHECKER_URL=https://your-server \
  -e INTEGRITY_CHECKER_TOKEN=your-token \
  -p 8000:8000 \
  integrity-checker-mcp

Development

pytest tests/

Tests use a MockClient — no live server required.

How it works

Integrity checks are asynchronous. The typical flow is:

  1. Submit a request → get a request_id
  2. Check queue depth with get_queue_status (cron runs every minute)
  3. Poll get_integrity_request until status is COMPLETED
  4. Fetch results with get_integrity_files or get_integrity_replicas

Important: ERROR replica status means the file was inaccessible (e.g. on tape), not that it is corrupted. Never report ERROR replicas as corrupted.

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Files & Docs servers.