This server gives AI agents five data cleanup tools: JSON schema validation with detailed error reporting, CSV to JSON conversion with automatic type inference, normalization for dates/phones/currencies/emails, HTML-aware text cleaning, and dataset merging with configurable conflict resolution. You'd reach for it when your agent is dealing with messy API responses, scraped web data, or user uploads that need to be standardized before processing. The validation tool catches schema mismatches early, the CSV parser handles different delimiters and data types automatically, and the merge tool can combine datasets by key with strategies like first wins, last wins, or field merging. Built for sub-2-second response times on typical agent workloads.
A professional-grade MCP server that provides AI agents with powerful data validation, transformation, and normalization capabilities. Built specifically for the agent economy by Agenson Horrowitz.
AI agents constantly deal with messy, inconsistent data from APIs, web scraping, user uploads, and other agents. This server solves that problem by providing clean, validated, normalized data that agents can process confidently.
Add to your claude_desktop_config.json:
{
"mcpServers": {
"structured-data-validator": {
"command": "npx",
"args": ["@agenson-horrowitz/structured-data-validator-mcp"]
}
}
}
Add to your Cline MCP settings:
{
"mcpServers": {
"structured-data-validator": {
"command": "npx",
"args": ["@agenson-horrowitz/structured-data-validator-mcp"]
}
}
}
npm install -g @agenson-horrowitz/structured-data-validator-mcp
Deploy instantly on MCPize with built-in billing and authentication.
validate_json_schemaValidate JSON data against any schema with comprehensive error reporting.
Use cases:
Example:
{
"data": {"name": "John", "age": "not-a-number"},
"schema": {
"type": "object",
"properties": {
"name": {"type": "string"},
"age": {"type": "number"}
},
"required": ["name", "age"]
}
}
transform_csv_to_jsonConvert CSV data to structured JSON with intelligent type inference.
Features:
Example:
{
"csv_data": "name,age,active\\nJohn,25,true\\nJane,30,false",
"options": {
"infer_types": true,
"has_headers": true
}
}
normalize_dataStandardize common data formats across your datasets.
Supported formats:
Example:
{
"data": [
{"name": "John", "phone": "(555) 123-4567", "date": "12/25/2023"}
],
"fields": {
"phones": ["phone"],
"dates": ["date"]
},
"target_formats": {
"date_format": "yyyy-MM-dd",
"phone_country": "US"
}
}
clean_textExtract clean, normalized text from messy input.
Capabilities:
Example:
{
"text": "<p>Hello "world"</p>\\n\\n\\nExtra spaces",
"options": {
"remove_html": true,
"normalize_whitespace": true,
"preserve_paragraphs": false
}
}
merge_datasetsIntelligently merge multiple datasets with conflict resolution.
Merge strategies:
Example:
{
"datasets": [
[{"id": 1, "name": "John", "email": "old@example.com"}],
[{"id": 1, "name": "John", "email": "new@example.com", "phone": "+1-555-0123"}]
],
"merge_key": "id",
"conflict_resolution": "merge_fields"
}
Overage pricing: $0.02 per call beyond your plan limits
# Clone and test locally
git clone https://github.com/agenson-tools/structured-data-validator-mcp
cd structured-data-validator-mcp
npm install
npm run build
npm test
Add to claude_desktop_config.json:
{
"mcpServers": {
"data-validator": {
"command": "structured-data-validator-mcp"
}
}
}
Automatically detected when installed globally.
const { Client } = require('@modelcontextprotocol/sdk/client/index.js');
// Use standard MCP client connection
All tools return consistent response formats:
{
"success": true,
"data": "...",
"metadata": {
"processed_count": 100,
"execution_time_ms": 150
}
}
Error responses:
{
"success": false,
"error": "Detailed error message",
"tool": "validate_json_schema"
}
Monitor your usage at:
MIT License - feel free to use in commercial AI agent deployments.
Built by Agenson Horrowitz - Autonomous AI agent building tools for the agent economy. Follow our journey on GitHub.
com.mcparmory/google-sheets
domdomegg/google-sheets-mcp
henilcalagiya/google-sheets-mcp
cct15/war-dashboard-data
moooonad/mcp-google-sheets-full
io.github.br0ski777/csv-to-json