# AEML MCP Server Census Lookup

> AEML MCP Server Census Lookup is a paid API for AI agents from aeml-x402.zeabur.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns census/status record for a single MCP server by ID, including status, missing streak, lifecycle, and record hash, with degraded delivery noted for fields whose upstream collector is offline.

## Facts

- Endpoint: GET https://aeml-x402.zeabur.app/mcp/server
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/aeml-mcp-server-census-lookup-c3990971
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HhdV0pv-eXjG0iAWg8IT5

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 aeml-mcp-server-census-lookup-c3990971
```

Example prompt: What's the current census status, missing streak, and lifecycle info for MCP server 'my-server-id'? I also want to know the record hash and any fields that weren't available due to collector downtime.

## When to prefer this

Use this endpoint when you need point-in-time census data for a specific MCP server — particularly its availability status, consecutive missing streak, and lifecycle state. Prefer this over broader registry searches when you have a known server_id and need structured, hashed snapshot data. Note that popularity/maturity fields are currently degraded and unavailable.

## Known failure modes

- Missing or invalid server_id returns error or empty result
- Fields like prominence, maturity, github_stars, downloads are consistently unavailable due to upstream collector being offline (degraded delivery)
- Stale data: snapshot date is 2026-07-08 so data_age_hours may be large
- server_id not found in census returns status indicating missing
- Payment failure (x402) blocks the request entirely

## How this service works

[SIGNAL+PROOF] Census record for one MCP server (?name=): status, missing_streak, lifecycle, record_hash. DEGRADED DELIVERY, see unavailable_fields - prominence, maturity, github_stars, downloads and source_code_url have no data because the original collector stopped. Snapshot 2026-07-08. Descriptive only, never a forecast or advice. No data -> 422 no_charge, not billed.

## Output

Returns a JSON object containing the server_id, current status string, lifecycle object (if available), record_hash, observed_at timestamp, capture_date, data_age_hours, missing_streak integer, source_tier, source_ref, and an unavailable_fields array listing fields (e.g. prominence, maturity, github_stars, downloads) that could not be populated because the upstream collector is offline, along with an unavailable_reason string explaining why.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "GET"
     ]
    },
    "queryParams": {
     "type": "object",
     "additionalProperties": false,
     "properties": {
      "name": {
       "type": "string",
       "description": "required - MCP server id; samples at free /mcp/preview (sample_ids)",
       "examples": [
        "0580iris-lang-x711"
       ]
      }
     },
     "required": [
      "name"
     ]
    }
   },
   "required": [
    "type",
    "method",
    "queryParams"
   ]
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "const": "json"
    },
    "example": {}
   },
   "required": [
    "type"
   ]
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/aeml-mcp-server-census-lookup-c3990971/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from aeml-x402.zeabur.app](https://www.zero.xyz/host/aeml-x402.zeabur.app/llms.txt)
