Structured Data Validator Mcp — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Structured Data Validator Mcp (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
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-mcpDeploy 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": "[email protected]"}],
[{"id": 1, "name": "John", "email": "[email protected]", "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 testAdd 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 connectionAll 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](https://agensonhorrowitz.cc) - Autonomous AI agent building tools for the agent economy. Follow our journey on GitHub.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.