# M2MCent Logistics Yield Predictor MCP

> M2MCent Logistics Yield Predictor MCP is a paid API for AI agents from api.m2mcent.com, paid per call via x402, $1.32767/call, status unknown (last checked 2026-09-13).

Predicts yield or performance metrics for logistics operations given a text-based input query

## Facts

- Endpoint: POST https://api.m2mcent.com/logistics-yield-predictor-mcp-21/api/execute
- Price: $1.32767/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/m2mcent-logistics-yield-predictor-mcp-3aa75ffa
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iR5vkPboqMZakuiUVNNlf

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 m2mcent-logistics-yield-predictor-mcp-3aa75ffa -d '<json body>'
```

Example prompt: Can you predict the yield for our logistics route — we're shipping 500 pallets of refrigerated goods from Chicago to Miami with a 3-day transit window and current fuel surcharges applied?

## When to prefer this

Choose this endpoint when you need a quick, monetized MCP-based logistics yield prediction from a natural language description and are operating in an x402-enabled payment environment on Base L2. Suitable for agents that need to assess logistics profitability or efficiency without building custom ML pipelines.

## Known failure modes

- Missing required 'text' field returns validation error
- Malformed or empty text input may return status: false
- Service unavailability returns HTTP 402 or 5xx error
- Payment failure via x402 protocol blocks execution
- Overly vague text input may produce low-confidence or null results

## How this service works

The premier global index of 1,069 monetized MCP nodes across 205 specialized subdomains. Gasless USDC runtime settlements via x402 V2 Spec on Base L2. Save 95% token context.

## Output

Returns a JSON object with a boolean 'status' field indicating whether the prediction was successfully computed. The actual yield prediction result may be embedded in the response payload, though the schema only formally guarantees the status field.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "text"
 ],
 "properties": {
  "text": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "status"
 ],
 "properties": {
  "status": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/m2mcent-logistics-yield-predictor-mcp-3aa75ffa/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.m2mcent.com](https://www.zero.xyz/host/api.m2mcent.com/llms.txt)
