Delx Agent Utilities
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| delx_utilities_manifestB | Return the agent-readiness manifest, including the full tool list. |
| delx_utilities_connection_statusC | Return runtime status. No network calls. |
| delx_utilities_privacy_auditB | Return the privacy posture so agents can reason about safety. |
| util_json_validateB | Validate and pretty-print JSON. Returns validity, errors, and formatted output. |
| util_token_estimateB | Estimate token count for text. Uses word/4 heuristic (GPT-family) and char/4 (Claude-family). |
| util_uuid_generateC | Generate one or more UUIDv4 strings. |
| util_timestamp_convertC | Convert between timestamp formats: Unix epoch, ISO 8601, and human-readable. |
| util_base64C | Encode or decode Base64 strings. |
| util_url_healthC | Check if a URL is reachable. Returns HTTP status, latency, and key headers. |
| util_hashC | Hash a string with SHA-256, SHA-1, or MD5. |
| util_regex_testC | Test a regex pattern against text. Returns matches, groups, and count. |
| util_cron_describeC | Validate and describe a cron expression in plain English. Shows next 5 scheduled runs. |
| util_http_codesA | Look up HTTP status codes. Returns name, description, and category. Without code param, returns common codes. |
| util_page_extractB | Turn any URL into clean page metadata and readable text for search, routing, and summarization. |
| util_open_graphC | Extract Open Graph and Twitter card fields to preview how a URL will render in feeds and agents. |
| util_links_extractC | Map internal and external links on a page for crawling, routing, and site inspection. |
| util_sitemap_probeC | Check sitemap and crawl-structure hints fast to see how a site exposes crawlable structure. |
| util_robots_inspectC | Read robots.txt rules and sitemap declarations before crawling or indexing a domain. |
| util_dns_lookupC | Resolve A, AAAA, CNAME, MX, TXT, and NS records for fast domain and delivery checks. |
| util_email_validateC | Validate an email and its domain-level delivery records before outreach, signup, or routing. |
| util_jwt_inspectB | Decode JWT claims quickly for auth debugging, routing, and token inspection. |
| util_csv_to_jsonC | Convert raw CSV into JSON rows for downstream agents, prompts, and ETL steps. |
| util_json_to_csvB | Convert structured JSON rows into CSV for exports, spreadsheets, and handoff. |
| util_tls_inspectC | Inspect TLS issuer, subject, SANs, and expiry to check trust and renewal risk. |
| util_security_txt_inspectC | Find security.txt contacts, disclosure policy, and trust links for a domain. |
| util_http_headers_inspectC | Inspect security, cache, redirect, and server headers to audit a URL quickly. |
| util_feed_discoverC | Find RSS, Atom, and JSON feeds so agents can subscribe instead of scrape. |
| util_forms_extractC | Extract forms, methods, actions, and fields for browser automation and workflow planning. |
| util_contact_extractB | Extract emails, phones, and social links from a page for outreach, routing, and support. |
| util_rdap_lookupC | Fetch registrar, status, and registration dates for trust, compliance, and domain ops. |
| util_api_health_reportC | Measure endpoint status, latency, redirects, content type, and reachability in one call. |
| util_x402_server_probeC | Probe an x402 server end-to-end: discovery, status, tools, reliability, and OpenAPI. |
| util_x402_resource_summaryC | Summarize a server's .well-known/x402 resources, pricing surface, networks, and paths. |
| util_website_intelligence_reportC | Composite website intelligence report with page, social, link, form, feed, and contact signals. |
| util_domain_trust_reportC | Composite trust report with TLS, security.txt, headers, RDAP, DNS, and uptime signals. |
| util_openapi_summaryC | Summarize an OpenAPI document including title, version, paths, tags, and likely auth surface. |
| util_x402_server_auditC | Audit an x402 server with discovery, pricing, reliability, and documentation readiness signals. |
| util_mcp_server_readiness_reportC | Score an MCP server for initialize, tools/list, schema hygiene, manifest discovery, and agent usability. |
| util_docs_site_mapC | Map a docs surface with crawl hints, docs links, feeds, and likely reference sections. |
| util_pricing_page_extractC | Extract pricing-page signals like plan names, free trial hints, CTA patterns, and sales routes. |
| util_company_contact_packC | Build a contact pack from page contacts, forms, social links, registrar, and disclosure channels. |
| util_api_integration_readinessC | Evaluate whether an API surface looks easy to integrate by combining health, OpenAPI, and auth hints. |
| util_login_surface_reportC | Inspect auth surface signals like login forms, signup links, reset links, and security headers. |
| util_content_distribution_reportC | Summarize how a site distributes content across Open Graph, feeds, socials, and crawl surface. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 44 tools
Most tools have distinct purposes, such as DNS lookup vs. RDAP lookup, but some overlap exists (e.g., util_url_health and util_api_health_report both check reachability). Descriptions are clear enough to differentiate, but agents may occasionally confuse similar-sounding tools.
Names follow a loose snake_case pattern but mix prefixes (delx_utilities_ vs. util_) and vary in structure (e.g., util_base64 vs. util_api_health_report). Some are noun-only, others combine domain and action, leading to moderate inconsistency.
44 tools is on the high side for a single server. While the server aims to provide a broad utility set, the large number may overwhelm agents and increase selection errors. It is borderline excessive for typical use.
The tool set covers many web-focused utilities (HTTP, DNS, security, page extraction) but lacks general-purpose tools like string manipulation, math, or advanced data transformation. Gaps exist for operations beyond web analysis, leaving the surface partially incomplete.