integrity-checker-mcp
MCP server for the CMS File Integrity Checker. Enables users to submit and query file integrity jobs through natural language.
README
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:
- Submit a request → get a
request_id - Check queue depth with
get_queue_status(cron runs every minute) - Poll
get_integrity_requestuntil status isCOMPLETED - Fetch results with
get_integrity_filesorget_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.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.