
Security News
Lovable’s OJ Rewrites Vite’s Dev Server in Rust as AI Lowers the Cost of Forking Open Source
Lovable’s OJ rewrites Vite’s dev server in Rust, reducing memory use and preview times as AI lowers the cost of open source reimplementation.
agent-json-reliability
Advanced tools
Deterministic JSON repair and JSON Schema validation for AI agents and software. No LLM required.
STATUS=BETA version 0.1.0
AI agents and software frequently emit malformed JSON: markdown fences, trailing commas, single quotes, True/False/None, and extra prose around one object.
Agent JSON Reliability is a deterministic pipeline for that failure mode:
valid_original, repaired, valid_final, schema_valid, unsafe_or_ambiguous, changes, errorsThis is not a generic jsonschema wrapper. The primary value is turning malformed agent output into reliable structured data without an LLM and without inventing semantic values.
When repair would require guessing (truncated objects, missing values, competing JSON documents), the service refuses. That is correct behavior.
Primary HTTP endpoint: POST /v1/json/reliable
MCP tools (same core functions, no duplicate implementation): json_reliable / reliable_json, validate_json, repair_json, inspect_json
Malformed agent output:
{
"text": "```json\n{\"name\":\"alice\",\"age\":30,}\n```"
}
Expected result (semantically equivalent valid JSON):
valid_original=falserepaired=truevalid_final=trueunsafe_or_ambiguous=falsejson → {"name":"alice","age":30}If a schema is supplied and satisfied: schema_valid=true.
Truncated input such as {"user": is JSON-intended but not deterministically repairable without inventing keys or values.
Expected:
200 (documented safe response)valid_final=falseunsafe_or_ambiguous=true or repaired=falseDo not treat a correct refusal as a product failure.
python -m pip install -r requirements.txt
python serve.py
Binds 127.0.0.1:8770 by default. Set PUBLIC_BASE_URL to an HTTPS origin only when you expose the process yourself. Do not commit a temporary tunnel hostname as the canonical URL.
See examples/curl.md, examples/python.py, examples/javascript.js.
Remote examples use ${PUBLIC_BASE_URL}. Local default is http://127.0.0.1:8770.
Share URLs (optional, unverified telemetry tags):
/?source=github/?source=mcp-registry/?source=api-directoryPackage transport does not depend on a temporary public URL.
{
"mcpServers": {
"agent-json-reliability": {
"command": "python",
"args": ["-m", "products.gateway.mcp_stdio"]
}
}
}
After you publish to PyPI (free): uvx agent-json-reliability.
Remote HTTP MCP (POST /mcp) is for a running instance. Prefer stdio/package for Official MCP Registry metadata.
GET /.well-known/agent-services.jsonGET /openapi.jsonGET /llms.txtGET /AGENTS.mdPOST /mcp JSON-RPC (tools/list, tools/call)No Hunter market database, no private reports, no Windows user paths, no collectors, no wallets, no x402 payment.
Free beta: no auth, no payment.
FAQs
Deterministic JSON repair and JSON Schema validation for AI agents and software. No LLM required.
We found that agent-json-reliability demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.

Security News
Lovable’s OJ rewrites Vite’s dev server in Rust, reducing memory use and preview times as AI lowers the cost of open source reimplementation.

Security News
It has been one year since Shai-Hulud made its first appearance on npm.

Research
/Security News
Operators behind PolinRider used a compromised GitHub account to plant malware in four development versions of a Packagist package with 700,000+ downloads.