validate_json

Pack: json · Endpoint: https://gateway.pipeworx.io/json/mcp

Validate a JSON string (keyless, offline). Returns whether it is valid and, if not, the error message and the character position.

Parameters

NameTypeRequiredDescription
jsonstringyesThe JSON text to validate.

Example call

Arguments

{
  "json": "{\"name\": \"John\", \"age\": 30}"
}

curl

curl -X POST https://gateway.pipeworx.io/json/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"validate_json","arguments":{"json":"{\"name\": \"John\", \"age\": 30}"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('validate_json', {
  "json": "{\"name\": \"John\", \"age\": 30}"
});

More examples

{
  "json": "{\"items\": [1, 2, 3], \"valid\": true}"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "json": {
      "url": "https://gateway.pipeworx.io/json/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 15, 2026