Jsonschema Validator Mcp
@EienWolf
About Jsonschema Validator Mcp
A comprehensive JSON Schema validation server implementing the Model Context Protocol (MCP) with support for JSON Schema Draft 2020-12, external references, schema management, and real-time streaming validation.
Basic information
Config
Add this server to your MCP-compatible client using the configuration below.
{
"mcpServers": {
"jsonschema-validator": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-v",
"./schemas:/app/.schemas",
"jsonschema-mcp-server:1.0.0"
]
}
}
}Tools
No tools detected
We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.
Overview
What is Jsonschema Validator Mcp?
Jsonschema Validator Mcp is a comprehensive JSON Schema validation server implementing the Model Context Protocol (MCP). It supports JSON Schema Draft 2020-12, external references, schema management, and real-time streaming validation, designed for AI assistants and developers.
How to use Jsonschema Validator Mcp?
Install via pip after cloning the repository, then run mcp_server.py for stdio communication with AI assistants or sse_server.py for web clients. Configure it for Claude Desktop or GitHub Copilot by adding the server to their MCP configuration files. Optional PostgreSQL database with automatic local file fallback. Docker deployment is also available.
Key features of Jsonschema Validator Mcp
- Full JSON Schema Draft 2020-12 support
- Automatic external reference resolution (HTTP, PostgreSQL, local files)
- Complete CRUD schema management with versioning
- Dual server architecture: MCP stdio and SSE web server
- Multi-source data storage with PostgreSQL and file fallback
- Intelligent JSON Schema generation from sample data
Use cases of Jsonschema Validator Mcp
- Validate user registration data against a stored schema in an AI assistant
- Manage a collection of API response schemas with versioning and updates
- Generate a JSON Schema from example data and save it for reuse
- Perform real-time validation of streaming data through the SSE web interface
- Validate JSON data against an externally referenced schema via HTTP
FAQ from Jsonschema Validator Mcp
What does the dual server architecture do?
The MCP server uses stdio for communication with AI assistants like Claude and Copilot, while the SSE server provides a web interface for real-time streaming validation for web clients.
Can the server run without a database?
Yes. If PostgreSQL is unavailable, the server automatically falls back to local file storage for schema collections, providing file-only mode without any database configuration.
What transports are supported?
The server supports stdio for MCP communication and Server-Sent Events (SSE) for the web client. There is no other transport mentioned.
How do I add a new schema?
Use the add_update_schema tool with a schema_id (e.g., user/profile.json) and the schema content as a JSON string. Optionally set update_if_exists to true to overwrite an existing schema.
Is there protection against accidental deletion?
Yes. The delete_schema tool requires an explicit confirm_deletion boolean parameter set to true before any schema is removed, preventing accidental deletions.
More Other MCP servers

Sequential Thinking
modelcontextprotocolModel Context Protocol Servers
MCP Toolbox for Databases
googleapisMCP Toolbox for Databases is an open source MCP server for databases.
IDA Pro MCP
mrexodiaAI-powered reverse engineering assistant that bridges IDA Pro with language models through MCP.
Mcp
browsermcpBrowser MCP is a Model Context Provider (MCP) server that allows AI applications to control your browser
AutoBrowser MCP
autobrowser-aiBrowser MCP is a Model Context Provider (MCP) server that allows AI applications to control your browser
Comments