Agent Seek docs

Agent Seek is agent search: cheap You.com recall + TypeSafe Jev taste → ranked web results. Google-simple for people. Judgment-native for agents.

What Agent Seek is

Agent Seek is agent search for humans and coding agents: You.com discovers web candidates, TypeSafe Jev cascade-ranks them, and you get ranked web results — title, URL, snippet, relevance score, flags, and signals — instead of raw SERP mush.

Who it is for

People use the Google-simple box on the search UI (type a query, press Enter). Agents call the Agent Seek API (POST /v1/search) with OAuth 2.0 (search:read) or Authorization: Bearer $AGENT_SEEK_API_KEY. Use Agent Seek when you need a small set of high-relevance sources for research or RAG and you will write the answer yourself. Do not use it as a chat model, an unbounded crawler, or a generative engine. Hard cap: 100 discover candidates per query (default 50 in, top 10 out).

Auth is OAuth 2.0 plus a shared API-key alternate. The prototype is free. See also authentication, MCP Streamable HTTP, llms.txt, about, and the Agent Seek skill. OpenAPI: /openapi.json (Swagger /api/docs).

Install the skill

Efficient path: skill → /llms.txt/auth.md → MCP or REST.

Then read /llms.txt, authenticate via /auth.md, and call POST /v1/search or MCP (/mcp, server card).

Humans

Agent Seek API

The crawlable developer entry is /developers (title: Agent Seek API). Contract: POST /v1/search. Schema: /openapi.json. Swagger: /api/docs. Auth: /auth.md.

Agents (primary)

Live prototype: https://agentseek.dev (alternate: https://gitmaxd-agent-seek.exe.xyz)

Public HTTP API. Agents use OAuth 2.0 (search:read) or AGENT_SEEK_API_KEY (see auth.md). MCP: /mcp.

Auth header:

Authorization: Bearer $AGENT_SEEK_API_KEY

Contract: POST /v1/search

{
  "q": "your query",
  "k": 10,
  "max_candidates": 50,
  "mode": "deep",
  "nocache": false
}

When to use: need a small set of high-relevance URLs/snippets for research or RAG.

When not: generative answers, unbounded crawl, or >100 candidates.

Curl:

curl -sS -X POST "https://agentseek.dev/v1/search" \
  -H "Authorization: Bearer $AGENT_SEEK_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"q":"Introducing System One Models Jev","k":10,"mode":"deep"}'

Also