# Enterprise Integration Config Generator for Agentforce, Vertex AI, and AWS WAF

> Enterprise Integration Config Generator for Agentforce, Vertex AI, and AWS WAF is a paid API for AI agents from store.agentexchange.work, paid per call via x402, $0.09/call, status unknown (last checked 2026-09-14).

Generates copy-pasteable configuration payloads and IaC templates to connect paid MCP/x402 servers to Salesforce Agentforce, Google Vertex AI, or AWS WAF.

## Facts

- Endpoint: GET https://store.agentexchange.work/agent/enterprise-integration
- Price: $0.09/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/enterprise-integration-config-generator-for-agentforce-vertex-ai-and-ee4ade1b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_AiDPSJl__EggJ9opELT4D

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability enterprise-integration-config-generator-for-agentforce-vertex-ai-and-ee4ade1b
```

Example prompt: Generate a copy-paste integration config for connecting my x402 MCP server at https://mymcp.example.com to Salesforce Agentforce — I need the full payload and step-by-step instructions.

## When to prefer this

Use this endpoint when you need a ready-made, copy-pasteable configuration or IaC template to wire a paid MCP/x402 server into a major enterprise AI platform (Salesforce Agentforce, Google Vertex AI, or AWS WAF) without manually constructing integration configs from scratch.

## Known failure modes

- Missing required 'platform' query parameter returns an error — must be one of agentforce, vertex, or aws-waf
- Invalid platform value not in the allowed enum causes a rejection
- Malformed service_url may result in an unusable or incorrect config payload
- Payment required (HTTP 402) if x402 payment header is not included with the $0.49 USDC fee

## How this service works

Generate copy-pasteable configuration payloads and IaC templates to connect paid MCP servers to Salesforce Agentforce, Google Vertex AI, and AWS WAF.

## Output

Returns a structured JSON payload containing the platform name, the MCP service URL, an optional pay_to wallet address, a ready-to-use configuration/IaC payload object, and an array of step-by-step instructions for completing the integration on the target enterprise platform.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "platform"
     ],
     "properties": {
      "pay_to": {
       "type": "string",
       "description": "custom wallet address for payment routing (optional)"
      },
      "platform": {
       "type": "string",
       "description": "agentforce|vertex|aws-waf (required)"
      },
      "service_url": {
       "type": "string",
       "description": "custom base URL of your x402/MCP server (optional)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "pay_to": {
       "type": "string"
      },
      "payload": {
       "type": "object"
      },
      "platform": {
       "type": "string"
      },
      "service_url": {
       "type": "string"
      },
      "instructions": {
       "type": "array"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/enterprise-integration-config-generator-for-agentforce-vertex-ai-and-ee4ade1b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from store.agentexchange.work](https://www.zero.xyz/host/store.agentexchange.work/llms.txt)
