# Clink Lithium Vault – New Agent Services Feed

> Clink Lithium Vault – New Agent Services Feed is a paid API for AI agents from clink-lithium-vault.fly.dev, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Returns a feed of newly launched x402 and MCP agent services from the last N days, including day-one traction signals like price, paying customers, call volume, and npm installs.

## Facts

- Endpoint: GET https://clink-lithium-vault.fly.dev/market/new
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/clink-lithium-vault-new-agent-services-feed-f98705c0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XkBnUKb1IzpTBY7XwUmxR

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 clink-lithium-vault-new-agent-services-feed-f98705c0
```

Example prompt: What new x402 and MCP agent services launched in the last 7 days, and which ones are already getting paying customers or high call volume?

## When to prefer this

Use this endpoint when you need historically anchored data about newly launched agent services — specifically when you want traction metrics (paying customers, call volume, npm installs) from day one of launch, which cannot be derived from live marketplace catalogs. Prefer this over a general marketplace browse when you need temporal context (what's new in the last N days) and competitive intelligence signals rather than a full current catalog snapshot.

## Known failure modes

- Invalid 'kind' enum value returns an error (must be 'x402' or 'mcp')
- 'days' parameter as non-numeric string may cause parsing error
- No results returned if no new services launched in the specified window
- Payment of $0.02 USDC required per call via x402 protocol; missing payment returns 402 status
- Very large 'days' value may result in large payloads or timeouts

## How this service works

New agent services launched this week - every x402 listing and MCP server that appeared in the last N days, with day-one traction: price, paying customers, call volume, npm installs. Watch competitors launch, spot gaps early, track the agent economy. From daily snapshots of the whole x402 bazaar + MCP registry - history that can't be reconstructed from the live catalogs. ?days=7&kind=x402|mcp. Full market report: /market/pulse $0.10.

## Output

A structured list of newly launched x402 or MCP services within the requested time window, each entry including the service name, kind (x402/mcp), price, number of paying customers, call volume, npm installs, and launch date — sourced from daily snapshots that cannot be reconstructed from live catalogs.

## 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": [],
     "properties": {
      "days": {
       "type": "string"
      },
      "kind": {
       "enum": [
        "x402",
        "mcp"
       ],
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/clink-lithium-vault-new-agent-services-feed-f98705c0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from clink-lithium-vault.fly.dev](https://www.zero.xyz/host/clink-lithium-vault.fly.dev/llms.txt)
