Specialized Vertical Suites
Universal LLM JSON-Repair POST
Fixes malformed JSON, code fences, trailing commas, single quotes, and Python literals in <1ms before feeding models.
Agent Web-to-Markdown POST
Scrapes raw HTML or web URLs and transforms them into dense, clean Markdown, cutting up to 90% context window tokens.
B2B Email & MX Verifier POST
Real-time DNS MX query, syntax sanitation, and disposable burner inbox detection for sales intelligence agents.
Text Privacy & PII Redactor POST
High-speed deterministic regex mask for emails, payment cards, phone numbers, and SSNs before leaving trust boundary.
Quickstart cURL Example
curl -X POST "https://omniventure-m2m-micro-utilities.p.rapidapi.com/v1/m2m/repair/json" \
-H "X-RapidAPI-Key: <YOUR_RAPIDAPI_KEY>" \
-H "X-RapidAPI-Host: omniventure-m2m-micro-utilities.p.rapidapi.com" \
-H "Content-Type: application/json" \
-d '{"raw_json": "```json\n{\"agent\": \"Antigravity\", \"status\": True,}\n```"}'
Model Context Protocol (MCP) Client Config
Add to your claude_desktop_config.json or Cursor IDE:
{
"mcpServers": {
"omniventure": {
"command": "npx",
"args": [
"mcp-remote",
"https://mcp.rapidapi.com",
"--header", "x-api-host: omniventure-m2m-micro-utilities.p.rapidapi.com",
"--header", "x-api-key: YOUR_RAPIDAPI_KEY"
]
}
}
}