Before an agent installs a tool
Inspect the domain, docs, OpenAPI, x402 readiness, security.txt, TLS, and robots policy before trusting a new service.
util_domain_trust_reportDelx Agent Utilities gives MCP clients, CLI workflows, Python runtimes, crawlers, and registries a deterministic toolkit for inspecting websites, APIs, domains, x402 endpoints, tokens, structured data, and operator basics without calling an LLM.
Tools
40
stateless utilities
License
MIT
open source
Runtime
MCP
plus CLI and Python
State
0
no DB, cache, or telemetry
The utilities started inside the Delx Protocol runtime, then moved into a standalone MIT package. That keeps the witness protocol focused on continuity and recovery while giving the broader agent ecosystem a reusable utility layer that works without Delx accounts, API keys, sessions, or hosted state.
Inspect the domain, docs, OpenAPI, x402 readiness, security.txt, TLS, and robots policy before trusting a new service.
util_domain_trust_reportSummarize a website, extract links, detect feeds, check sitemap health, and decide whether deeper crawling is worth it.
util_website_intelligence_reportCheck docs, schemas, authentication hints, OpenAPI availability, pricing pages, support paths, and integration blockers.
util_api_integration_readinessutil_json_validateutil_token_estimateutil_uuid_generateutil_timestamp_convertutil_base64util_hashutil_regex_testutil_cron_describeutil_http_codesutil_jwt_inspectutil_csv_to_jsonutil_json_to_csvutil_page_extractutil_open_graphutil_links_extractutil_forms_extractutil_contact_extractutil_feed_discoverutil_url_healthutil_robots_inspectutil_sitemap_probeutil_tls_inspectutil_security_txt_inspectutil_http_headers_inspectutil_dns_lookuputil_rdap_lookuputil_x402_server_probeutil_x402_resource_summaryutil_x402_server_auditutil_api_health_reportutil_openapi_summaryutil_email_validateutil_website_intelligence_reportutil_domain_trust_reportutil_docs_site_maputil_pricing_page_extractutil_company_contact_packutil_api_integration_readinessutil_login_surface_reportutil_content_distribution_report{
"mcpServers": {
"delx-utils": {
"command": "delx-utils-mcp"
}
}
}pipx install "delx-agent-utilities[mcp]"
delx-utils manifest
delx-utils call util_url_health --json '{"url":"https://example.com"}'from delx_agent_utilities import call_util_tool
result = await call_util_tool("util_url_health", {
"url": "https://example.com"
})The open-source Python package is free and local-first. The hosted Delx API can still expose selected report endpoints with attribution, quota, and x402 payment rails. That monetization boundary belongs to hosted utility workloads, not to Delx Protocol witness primitives.
Protocol: free witness, continuity, recovery, recognition.
Utilities package: MIT, no hosted account required.
Hosted utilities: quota, attribution, and future commerce rails.
Understand whether a website is useful, trustworthy, and agent-readable before deeper crawling.
canonical /api/v1/utilities/website-intelligence-report
schema /api/v1/tools/schema/util_website_intelligence_report
Decide whether a domain looks safe enough for an agent to browse, cite, or transact with.
canonical /api/v1/utilities/domain-trust-report
schema /api/v1/tools/schema/util_domain_trust_report
Judge whether an API is easy and safe for an agent runtime to integrate.
canonical /api/v1/utilities/api-integration-readiness
schema /api/v1/tools/schema/util_api_integration_readiness
Decide whether an MCP server is safe and usable enough for agents before installation or payment.
canonical /api/v1/utilities/mcp-server-readiness
schema /api/v1/tools/schema/util_mcp_server_readiness_report
Check whether a paid agent endpoint exposes usable x402 discovery and payment requirements.
canonical /api/v1/utilities/server-audit
schema /api/v1/tools/schema/util_x402_server_audit
Find structured contact and support paths before an agent escalates, sells, partners, or files a report.
canonical /api/v1/utilities/company-contact-pack
schema /api/v1/tools/schema/util_company_contact_pack
curl -sS "https://api.delx.ai/api/v1/utilities/domain-trust-report?url=https://ontology.delx.ai"Use the hosted route when an agent needs remote execution. Use the PyPI package when the agent can run tools locally and should keep the workflow self-contained.