# Navmesh Pathfinder MCP

> Navmesh Pathfinder MCP is a paid API for AI agents from api.m2mcent.com, paid per call via x402, $0.22/call, status unknown (last checked 2026-09-15).

Computes navigation mesh pathfinding results for a given spatial or game-world query, returning traversable paths between points.

## Facts

- Endpoint: POST https://api.m2mcent.com/navmesh-pathfinder-mcp/api/process
- Price: $0.22/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/navmesh-pathfinder-mcp-f19dae2f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iSAdgIBoJE5-pnTPZYTL8

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 navmesh-pathfinder-mcp-f19dae2f -d '<json body>'
```

Example prompt: Can you compute a navigation mesh path from the spawn point at coordinates (10, 0, 5) to the exit gate at (200, 0, 150), avoiding obstacles in the level?

## When to prefer this

Choose this endpoint when you need server-side navmesh pathfinding computation for game agents, robots, or simulated environments, especially when you want a managed, pay-per-call API rather than running a local pathfinding library. Best suited for agents or game backends that need quick path resolution without maintaining their own navmesh infrastructure.

## Known failure modes

- Invalid or malformed spatial data string returns an error
- Unreachable destination with no valid path on the navmesh
- Malformed JSON input schema causes processing failure
- Start or end position outside navmesh bounds returns no path
- Service unavailable or payment not processed returns 402 or 5xx

## 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 computed navigation path as a sequence of waypoints or nodes that represent a traversable route across the navigation mesh, including any metadata about path length, reachability, or intermediate steps.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "payload": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "success": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/navmesh-pathfinder-mcp-f19dae2f/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)
