DELXCOMMERCE 7 routes

Discovery pack · Agent builders and API maintainers

Ship an AI agent integration

A seven-check launch path for an API or MCP server: verify health, OpenAPI, MCP tool discovery and x402 payment metadata before giving an autonomous agent authority.

AI agent integration checklistMCP readinessOpenAPI auditx402 server auditAPI health

Direct answer

What should be verified before an AI agent uses an API or MCP server?

To ship an AI agent integration, verify four layers in order: transport health, the machine-readable API contract, MCP capability and authorization, then x402 payment and discovery metadata. Run the seven bounded checks below before client testing. A passing result is readiness evidence, not production certification.

Buyer proof

A payment challenge is not a delivered result.

Payment authorizes the intended request; it does not prove the declared result arrived. Before retrying or handing output to another agent, retain the provider selected, the unit and maximum charge, the accepted request, and the response evidence.

  • DeliveryMatch the response to the declared schema, freshness, request or correlation ID, and the artifact or receipt hash.
  • FailureStop retries when status or idempotency is unknown; never infer delivery from a 402 challenge, settlement receipt, or HTTP 200 alone.
  • RecoveryKeep the provider refund or support path and the status query needed to reconcile a timeout or partial result before automation continues.

Boundary: This is bounded delivery evidence, not a security, reliability, ranking, or production-readiness certification.

Readiness workflow

The four-layer launch path.

Run these layers in order. Each one narrows a different class of integration failure; none replaces client-level acceptance testing.

  1. 01

    Verify transport health

    Confirm that the public endpoint is reachable, returns predictable HTTP status and content types, and fails within a bounded timeout.

    util_api_health_report · util_x402_server_probe
  2. 02

    Inspect the machine-readable contract

    Compare the published OpenAPI description with the paths, request shapes, responses and authentication behavior an agent will actually use.

    util_openapi_summary · util_api_integration_readiness
  3. 03

    Test MCP capability and authority

    Discover the live MCP surface, inspect tool schemas and verify that authorization is scoped to the capabilities the client should receive.

    util_mcp_server_readiness_report
  4. 04

    Validate x402 payment and discovery

    Inspect the 402 challenge, payable resource metadata and buyer-facing summary separately from directory indexing or marketplace ranking.

    util_x402_server_audit · util_x402_resource_summary

Human → agent handoff

Share the job, not a directory.

Every route below has its own price, schema and bounded AgentCash command. Copying a command preserves this pack as a measurable discovery source.

https://api.delx.ai/api/v1/x402/start?q=prepare%20an%20API%20or%20MCP%20server%20for%20an%20autonomous%20agent
01
utility · POST /api/v1/x402/api-health-reportDelx Api Health Report

util_api_health_report

npx agentcash@latest fetch https://api.delx.ai/api/v1/x402/api-health-report -m POST -H 'x-delx-source: discovery-pack-ship-an-agent-integration' --max-amount 0.001 -b '{"url":"https://api.example.com/health"}'
$0.001
02
utility · POST /api/v1/x402/openapi-summaryDelx Openapi Summary

util_openapi_summary

npx agentcash@latest fetch https://api.delx.ai/api/v1/x402/openapi-summary -m POST -H 'x-delx-source: discovery-pack-ship-an-agent-integration' --max-amount 0.001 -b '{"url":"https://api.delx.ai"}'
$0.001
03
utility · POST /api/v1/x402/mcp-server-readinessDelx Mcp Server Readiness Report

util_mcp_server_readiness_report

npx agentcash@latest fetch https://api.delx.ai/api/v1/x402/mcp-server-readiness -m POST -H 'x-delx-source: discovery-pack-ship-an-agent-integration' --max-amount 0.01 -b '{"url":"https://api.delx.ai/v1/mcp"}'
$0.01
04
utility · POST /api/v1/x402/server-auditDelx X402 Server Audit

util_x402_server_audit

npx agentcash@latest fetch https://api.delx.ai/api/v1/x402/server-audit -m POST -H 'x-delx-source: discovery-pack-ship-an-agent-integration' --max-amount 0.01 -b '{"url":"https://api.delx.ai"}'
$0.01
05
utility · POST /api/v1/x402/server-probeDelx X402 Server Probe

util_x402_server_probe

npx agentcash@latest fetch https://api.delx.ai/api/v1/x402/server-probe -m POST -H 'x-delx-source: discovery-pack-ship-an-agent-integration' --max-amount 0.01 -b '{"url":"https://api.delx.ai"}'
$0.01
06
utility · POST /api/v1/x402/resource-summaryDelx X402 Resource Summary

util_x402_resource_summary

npx agentcash@latest fetch https://api.delx.ai/api/v1/x402/resource-summary -m POST -H 'x-delx-source: discovery-pack-ship-an-agent-integration' --max-amount 0.001 -b '{"url":"https://api.delx.ai"}'
$0.001
07
utility · POST /api/v1/x402/api-integration-readinessDelx Api Integration Readiness

util_api_integration_readiness

npx agentcash@latest fetch https://api.delx.ai/api/v1/x402/api-integration-readiness -m POST -H 'x-delx-source: discovery-pack-ship-an-agent-integration' --max-amount 0.01 -b '{"url":"https://api.delx.ai"}'
$0.01

FAQ

Agent integration readiness, answered.

What does this pack prove?

It produces bounded evidence about endpoint health, OpenAPI shape, MCP readiness and x402 resource metadata at the time each route runs. It does not certify the whole system.

Do I need both OpenAPI and MCP?

No. Use the checks that match the surface you ship. OpenAPI describes HTTP APIs; MCP exposes resources, tools and prompts to compatible clients. A service can publish either or both.

Is a passing readiness score a production certification?

No. Production acceptance still requires client-level tests, authorization checks, failure handling, observability and a review of the actions the agent is allowed to take.

Will this pack list my service in a directory?

No. It can expose issues that block discovery, but indexing and ranking belong to each directory or registry and may happen asynchronously.

How is the pack priced?

There is no bundle fee. Each check is an independent pay-per-result route with its current USDC price shown below, and every AgentCash command includes a maximum amount.

Primary sources

Standards behind the checklist.

Machine-readable path

Inspect the graph.