croissant-validation
OfficialValidates Croissant dataset metadata, including fetching from Hugging Face dataset endpoints.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@croissant-validationvalidate Croissant metadata at https://huggingface.co/api/datasets/mnist/croissant"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
🥐 croissant-validation
A stateless MCP server for validating MLCommons Croissant dataset metadata — built as a working demonstration of the MCP 2026-07-28 specification, the revision that made the Model Context Protocol stateless.
Live endpoint: https://croissant-validation.jetty.bot/mcp
Why this exists
The 2026-07-28 spec removed the initialize/notifications/initialized handshake and the Mcp-Session-Id header. Every request is now self-contained: protocol version and client capabilities travel in _meta, and servers advertise themselves via server/discover. That means an MCP server can run on plain serverless functions behind any load balancer — no sticky sessions, no shared session store.
This repo is exactly that: the MCP Python SDK v2 (mcp==2.0.0, released alongside the spec) serving Croissant validation from Vercel serverless functions. Validation is performed by the official mlcroissant library — the same checks as the MLCommons croissant-validator, previously hosted in the mlcbakery MCP server.
Related MCP server: kube-lint-mcp
Tools
Tool | Description |
| Validate a Croissant JSON-LD document (object or JSON string) against the Croissant schema. Returns per-check results, blocking |
| Fetch metadata from a URL (e.g. a Hugging Face dataset's |
Connect
Claude Code:
claude mcp add --transport http croissant-validator https://croissant-validation.jetty.bot/mcpOr any MCP client that speaks Streamable HTTP — clients on the 2025-era protocol still work; the SDK answers the legacy handshake alongside server/discover.
One raw stateless request
No handshake — a single POST does everything:
curl -sS https://croissant-validation.jetty.bot/mcp \
-H 'Content-Type: application/json' \
-H 'Accept: application/json, text/event-stream' \
-H 'MCP-Protocol-Version: 2026-07-28' \
-d '{
"jsonrpc": "2.0", "id": 1, "method": "tools/call",
"params": {
"name": "validate_croissant_url",
"arguments": {"url": "https://huggingface.co/api/datasets/mnist/croissant"},
"_meta": {
"io.modelcontextprotocol/protocolVersion": "2026-07-28",
"io.modelcontextprotocol/clientCapabilities": {}
}
}
}'The params._meta envelope replaces the old initialize handshake — the protocol version and client capabilities ride along on every request instead of being negotiated up front. (The server rejects 2026-07-28 requests without it.)
Development
uv sync
uv run pytest -q # validation + stateless HTTP round-trip tests
uv run uvicorn croissant_mcp.server:app --reload # local server on :8000Layout:
croissant_mcp/validation.py— mlcroissant-backed validation (JSON well-formedness → Croissant schema; warnings surfaced frommlcroissant's issue tracker)croissant_mcp/server.py—MCPServerdefinition, tools, landing page, and the stateless Streamable HTTP ASGI app (stateless_http=True, json_response=True)main.py— Vercel entrypoint (the Python backend builder serves the ASGI app on all routes)examples/— a valid Croissant file (Titanic, from the MLCommons repo) and an invalid variant (invalid-not-a-dataset.json, missing its@type)
Record-set generation checks (actually materializing data) are intentionally out of scope here — they can download arbitrarily large files, which doesn't belong in a serverless request. Schema validation is the static contract check.
Deploy
Deployed on Vercel (Python runtime, Fluid Compute). The one serverless-specific consideration: streamable_http_app() starts its session manager via ASGI lifespan, which Vercel now runs. In stateless mode there is no cross-request state, so cold starts and horizontal scaling are free.
Roadmap
Wire into Jetty workflows as the validation step for an MCP-native version of PDF → Croissant.
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityFmaintenanceEnables validation of Dify Workflow DSL YAML files through MCP protocol. Allows users to check the validity and structure of Dify workflow definition files.Last updated
- Alicense-qualityAmaintenanceMCP server to lint and validate Kubernetes-related manifests(Helm, FluxCD, ArgoCD, Kustomize, etc.)Last updatedMIT
- AlicenseAqualityCmaintenanceMCP server that validates LLM-generated tool-call arguments, lints tool definitions, and produces retry messages for AI assistants.Last updated3501MIT
- Alicense-qualityAmaintenanceSchema Validator AI - MCP server providing AI-powered tools and automation by MEOK AI LabsLast updated3MIT
Related MCP Connectors
MCP Spec Compliance MCP — audits any MCP server.json against the official Model Context Protocol
JSON Schema validation MCP.
MCP server providing access to the Scorecard API to evaluate and optimize LLM systems.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jettyio/croissant-validation'
If you have feedback or need assistance with the MCP directory API, please join our Discord server