{"name":"org.qolapps/aarf-utility-network","slug":"qolapps-aarf-utility-network","title":"AARF Utility Network","description":"Paid AI utilities for web comparison, code checks, document extraction, security, and research.","url":"https://mcp.market/server/qolapps-aarf-utility-network","rating":null,"grade":"C","score":69,"certified":false,"status":"active","category":"security","tags":["security"],"presence":{"score":8,"stars":null,"forks":null,"downloads_week":null,"last_push_at":null,"license":null},"claimed":false,"transport":"remote","callable_via_gateway":true,"default_price_micros":0,"repository":null,"website":"https://qolapps.org/aarf/","version":"1.0.0","remotes":[{"type":"streamable-http","url":"https://mcp.qolapps.org/mcp"}],"packages":[],"tools":[{"name":"citation_research_pack","description":"Collect relevant evidence from supplied public sources and return source-linked snippets that agents can cite and verify. Use when an agent needs evidence-ranked excerpts from supplied public sources. Price: $0.35 per research pack.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"question":{"type":"string","minLength":3},"sources":{"minItems":1,"maxItems":5,"type":"array","items":{"type":"object","properties":{"url":{"type":"string","format":"uri"},"excerpt":{"type":"string"}},"required":["url"]}}},"required":["question","sources"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"code_diff_verifier","description":"Review a source-code diff for likely bugs, missing tests, compatibility problems, unsafe migrations, and security-relevant mistakes. Returns structured findings with file/line evidence and confidence. Use before merging a patch when you want a quick static check for bugs, security, and missing tests. Price: $0.25 per diff.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"diff":{"type":"string"},"language":{"type":"string"},"framework":{"type":"string"},"testOutput":{"type":"string"},"context":{"type":"string"},"focus":{"type":"array","items":{"type":"string","enum":["bugs","security","compatibility","tests","performance","migration"]}}},"required":["diff"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"data_cleaner","description":"Normalize, trim, validate, and deduplicate tabular CSV or JSON data for reliable agent workflows. Use when JSON or CSV-like data needs normalization, trimming, or duplicate removal. Price: $0.08 per dataset.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"format":{"type":"string","enum":["csv","json"]},"data":{"type":"string"},"requiredColumns":{"type":"array","items":{"type":"string"}},"deduplicateBy":{"type":"array","items":{"type":"string"}}},"required":["format","data"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"dependency_risk_scanner","description":"Inspect dependency manifests for missing versions, risky install scripts, unknown licenses, and policy issues without claiming to replace a live CVE database. Use when a manifest needs static checks for dependency, license, and policy risk. Price: $0.35 per dependency manifest.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"ecosystem":{"default":"auto","type":"string","enum":["auto","npm","python","go"]},"files":{"minItems":1,"maxItems":10,"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"content":{"type":"string"}},"required":["name","content"]}},"allowedLicenses":{"type":"array","items":{"type":"string"}}},"required":["files"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"document_structured_extractor","description":"Extract structured fields and source evidence from supported documents using task-specific profiles such as tenders, invoices, contract dates, and privacy policies. Returns schema-validated JSON with confidence and page/source references. Use when you need named fields extracted from an invoice or other document with evidence. Price: $0.05 per document.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"profile":{"type":"string","enum":["tender","invoice","contract-dates","privacy-policy","generic-key-values"]},"source":{"anyOf":[{"type":"object","properties":{"type":{"type":"string","const":"url"},"url":{"type":"string","format":"uri"}},"required":["type","url"]},{"type":"object","properties":{"type":{"type":"string","const":"text"},"text":{"type":"string"}},"required":["type","text"]},{"type":"object","properties":{"type":{"type":"string","const":"base64"},"data":{"type":"string"},"mimeType":{"type":"string"}},"required":["type","data","mimeType"]}]},"fields":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"description":{"type":"string"},"type":{"type":"string"}},"required":["name"]}}},"required":["profile","source"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"document_table_extractor","description":"Extract Markdown, CSV, and plain-text tables into clean structured rows for agents and business workflows. Use when a text or Markdown document contains tables that an agent needs as structured rows. Price: $0.15 per document.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"document":{"type":"string"},"format":{"default":"auto","type":"string","enum":["auto","markdown","csv","text"]},"headerRow":{"default":true,"type":"boolean"}},"required":["document"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"document_validator","description":"Check invoices, contracts, tenders, and text documents for required fields and source evidence before downstream automation. Use when a text document must be checked against a known profile such as an invoice. Price: $0.25 per document.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"profile":{"type":"string","enum":["invoice","contract","tender","generic"]},"text":{"type":"string"},"requiredFields":{"type":"array","items":{"type":"string"}}},"required":["profile","text"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"invoice_receipt_matcher","description":"Compare invoice and receipt text for matching document numbers and totals with a configurable amount tolerance. Use when an invoice and receipt must be compared for amount and identifier mismatches. Price: $0.20 per match.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"invoiceText":{"type":"string"},"receiptText":{"type":"string"},"amountTolerance":{"default":0.01,"type":"number","minimum":0}},"required":["invoiceText","receiptText"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"migration_safety_auditor","description":"Analyze Postgres, Supabase Postgres, or Prisma/Postgres migration SQL for destructive operations, lock/data-loss risk, backwards-compatibility hazards, rollback issues, and safer sequencing. Returns structured findings with evidence and confidence. Use before applying a database migration to identify destructive or risky steps. Price: $0.25 per migration.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"dialect":{"type":"string","enum":["postgres","supabase-postgres","prisma-postgres"]},"migration":{"type":"string"},"context":{"type":"object","properties":{"tableSizes":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"type":"number"}},"postgresVersion":{"type":"string"},"applicationCompatibilityNotes":{"type":"string"}}}},"required":["dialect","migration"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"openapi_agent_auditor","description":"Audit an OpenAPI document for complete schemas, useful examples, stable operation IDs, clear descriptions, and payment/authentication discoverability. Use before publishing an API to find missing schemas, examples, operation IDs, and agent-facing guidance. Price: $0.20 per API specification.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"spec":{"anyOf":[{"type":"string"},{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{}}]},"baseUrl":{"type":"string","format":"uri"}},"required":["spec"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"pii_secret_redactor","description":"Detect and redact common personal data and credentials from text, JSON, and source code without sending content to a model. Use before sharing logs, documents, tickets, or code that may contain personal data or secrets. Price: $0.15 per text.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"text":{"type":"string"},"format":{"default":"text","type":"string","enum":["text","json","code"]},"redactionStyle":{"default":"label","type":"string","enum":["label","mask","hash"]}},"required":["text"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"semantic_web_diff","description":"Compare two webpage versions and return only meaningful content changes as structured JSON. Filters cosmetic DOM churn, tracking IDs, timestamps, and other noise. Use when you need to distinguish meaningful webpage changes from layout noise. Price: $0.02 per comparison.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{}}},{"name":"url_to_agent_markdown","description":"Fetch a public webpage and return compact agent-ready Markdown, canonical metadata, tables, and important links while removing navigation, scripts, cookie UI, and layout clutter. Use when you need readable content from a public webpage without navigation or page clutter. Price: $0.01 per page.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"url":{"type":"string","format":"uri"}},"required":["url"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"website_accessibility_auditor","description":"Check public HTML for common accessibility failures including missing image text, labels, page language, headings, and link names. Use when HTML needs a fast heuristic accessibility review before publishing. Price: $0.20 per page audit.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"source":{"anyOf":[{"type":"object","properties":{"type":{"type":"string","const":"url"},"url":{"type":"string","format":"uri"}},"required":["type","url"]},{"type":"object","properties":{"type":{"type":"string","const":"html"},"html":{"type":"string"}},"required":["type","html"]}]}},"required":["source"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"website_change_monitor","description":"Fetch a public webpage, normalize its readable text, and report whether it changed against a caller-supplied baseline. Use when an agent needs to fetch a public page and compare it with a previous baseline. Price: $0.03 per page check.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"url":{"type":"string","format":"uri"},"previousContent":{"type":"string"},"baselineKey":{"type":"string","maxLength":160,"pattern":"^[a-zA-Z0-9._/-]+$"},"saveBaseline":{"type":"boolean"},"focusTerms":{"maxItems":20,"type":"array","items":{"type":"string"}}},"required":["url"],"$schema":"http://json-schema.org/draft-07/schema#"}}],"scan":{"score":69,"grade":"C","scanned_at":"2026-09-19T10:15:02.587Z","report":{"scannerVersion":"0.1.3","scannedAt":"2026-09-19T10:15:02.539Z","components":{"code":{"score":-1,"max":25,"notes":["remote-only server, no package to scan"]},"reliability":{"score":20,"max":20,"notes":["remote reachable in 600ms"]},"poisoning":{"score":15,"max":15,"notes":["15 tool descriptions checked"]},"auth":{"score":10,"max":15,"notes":["open endpoint, read-only tools"]},"maintenance":{"score":3,"max":15,"notes":["no repository listed"]},"identity":{"score":4,"max":10,"notes":["verified namespace with website, no repo"]}},"findings":[{"id":"maint.no-repo","severity":"low","component":"maintenance","title":"No source repository listed"}],"inputs":{"probes":[{"url":"https://mcp.qolapps.org/mcp","reachable":true,"authRequired":false,"latencyMs":600,"serverInfo":{"name":"aarf","version":"1.0.0"}}],"packages":[],"repo":{"found":false},"icon":{"url":"https://qolapps.org/assets/qol-apps-logo.jpg","source":"site"},"presence":{"stars":null,"forks":null,"downloadsWeek":null,"license":null,"lastPushAt":null,"score":8}}}},"grade_history":[],"reviews":[]}