# Computer Vision Image Recognition Validator MCP

> Computer Vision Image Recognition Validator MCP is a paid API for AI agents from api.m2mcent.com, paid per call via x402, $1.242915/call, status unknown (last checked 2026-09-21).

Validates whether a given query or content relates to computer vision / image recognition, returning a boolean result

## Facts

- Endpoint: POST https://api.m2mcent.com/computer-vision-image-recognition-validator-mcp-868/api/execute
- Price: $1.242915/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-21
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/computer-vision-image-recognition-validator-mcp-41a4af08
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_swR7GaL-udGGC9_-Vc3CJ

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 computer-vision-image-recognition-validator-mcp-41a4af08 -d '<json body>'
```

Example prompt: Can you check whether this query — 'detect all faces in a crowd photo' — is actually a computer vision or image recognition task, and give me a true or false answer?

## When to prefer this

Use this endpoint when you need a lightweight, binary gate to determine whether a given string or user query falls within the computer vision / image recognition domain — especially useful in multi-step agent pipelines that route requests to specialized vision models and need to pre-validate intent before incurring higher compute costs.

## Known failure modes

- Missing required 'query' field returns a validation error
- Empty string query may return false or an error
- Ambiguous queries near the boundary of computer vision may yield inconsistent boolean results
- Network timeout if the MCP node is temporarily unavailable
- Payment failure via x402 if USDC balance is insufficient

## 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

A JSON object with a single boolean field indicating whether the submitted query is validated as a computer vision or image recognition task (true) or not (false).

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/computer-vision-image-recognition-validator-mcp-41a4af08/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)
