

Data Format Validation
Core Utility
Available ActionsEach successful request consumes credits as outlined below.
validate-json5crvalidate-email5crvalidate-uuid5crvalidate-base645crvalidate-url5crvalidate-ipv45crvalidate-ipv65crvalidate-mac-address5crvalidate-credit-card5crvalidate-phone5crvalidate-hex-color5crvalidate-isbn5crvalidate-iban5crvalidate-regex5crvalidate-json-syntax5cr
Details
Data format validation utility that checks whether input strings conform to standard formats and specifications across a wide range of common data types. It validates JSON syntax and reports parsing errors with specific error locations, verifies email addresses against RFC-compliant patterns while extracting local and domain parts, and checks UUIDs for proper formatting with version detection. Network-related validation includes IPv4 addresses with octet range checking and private or loopback detection, IPv6 addresses with compression and link-local identification, MAC addresses in both colon and hyphen-separated formats, and URLs with scheme and domain parsing. Financial validation covers credit card numbers using the Luhn checksum algorithm with automatic card type detection for Visa, Mastercard, American Express, and Discover, as well as IBAN validation with country code extraction and BBAN parsing using the mod-97 checksum. Additional validators handle phone numbers with international format detection, hexadecimal color codes in both short and long formats with RGB value extraction, ISBN-10 and ISBN-13 with checksum verification, base64 encoding with decoded length reporting, and regex pattern syntax checking. All validators return detailed results including validity status, parsed components, and specific error messages for invalid input.
Workflows Using This Tool
Workflow
Saves ~25 min
Ping a JSON API endpoint, validate status + JSON syntax, and post a concise health report (or alert) to Discord.
Use Cases
JSON validation, JSON syntax check, JSON parsing error detection, email validation, email format verification, RFC email check, UUID validation, UUID version detection, UUID format check, base64 validation, base64 encoding check, base64 decode verification, URL validation, URL format check, URL parsing, domain extraction, IPv4 validation, IP address check, IPv4 format verification, private IP detection, loopback address detection, IPv6 validation, IPv6 format check, compressed IPv6 detection, MAC address validation, network address verification, MAC format check, credit card validation, Luhn algorithm check, card number verification, card type detection, Visa validation, Mastercard validation, payment card check, phone number validation, international phone format, phone format verification, hex color validation, color code check, RGB hex verification, CSS color validation, ISBN validation, ISBN-10 check, ISBN-13 verification, book identifier validation, IBAN validation, bank account number check, international banking validation, BBAN extraction, regex validation, regular expression syntax check, pattern validation, input validation, form validation, data quality check, format verification, user input validation, API input validation, data sanitization check, automated validation, AI agent data validation, LLM input verification
Dynamic MCP Setup
Connect once through AgentPMT Dynamic MCP, then use approved tools from the same agent connection.
30 Second Setup
STDIO connector for Claude Code, Codex, Cursor, Zed, and other LLMs that require STDIO or custom connections.
npm install -g @agentpmt/mcp-routeragentpmt-setupHosted Streamable HTTPS
MCP endpoint for browser-based apps like ChatGPT, Claude, Grok, or any time you want a streamable connection with no local install.
https://api.agentpmt.com/mcpConfig Example
Use the hosted endpoint directly in clients that support remote MCP. Store your Bearer token in the client config or secret field.
{
"mcpServers": {
"agentpmt": {
"type": "streamable-http",
"url": "https://api.agentpmt.com/mcp",
"headers": {
"Authorization": "Bearer <AGENTPMT_BEARER_TOKEN>",
"x-instance-metadata": "{\"client\":\"generic-mcp\",\"platform\":\"remote\"}"
}
}
}
}Need client videos, organization controls, audit details, and the full feature overview?
More About Dynamic MCPFrequently Asked Questions
How do I connect this tool to an external agent?
You can install the local MCP server by opening a terminal and running:
Install commands
npm install -g @agentpmt/mcp-router
agentpmt-setupThis will connect you to local agents like Claude Code, Windsurf, Grok Build, Cursor, etc.
Alternatively you can connect to the hosted version with this config block, no installation required:
Hosted MCP config
{
"mcpServers": {
"agentpmt": {
"type": "streamable-http",
"url": "https://api.agentpmt.com/mcp",
"headers": {
"Authorization": "Bearer <AGENTPMT_BEARER_TOKEN>",
"x-instance-metadata": "{\"client\":\"generic-mcp\",\"platform\":\"remote\"}"
}
}
}
}View MCP Connection Instructions for more details.
How does an external agent use this tool?
After the external agent is connected to an Agent Group that can use this tool, paste this prompt into the agent:
Agent prompt
Use the AgentPMT-Tool-Search-and-Execution tool. First call action 'get_instructions' so you know how to use the tool search interface. Then call action 'get_schema' with tool_id 694ddd46ecea2b5619a17bda ("Data Format Validation"). After reading the schema and any returned instructions, tell me what this tool can do, we are going to be using it
The agent should fetch the tool schema first, collect the required parameters for your request, and then call the tool through AgentPMT.



