Skip to content
unlob

dossier

Coverage graph

Builds a one-hop brief on an entity: mentions, the hosts covering it, and the entities co-mentioned with it.

Replaces roughly ten searches and a manual merge. The agent gets the mention count, the sources ranked by authority, and the co-occurring entities that usually contain the next question.

Arguments

NameTypeDescription
entityrequiredstringEntity name.
limitintegerCap on each section.

Returns:Mentions, top sources with counts, related entities with counts.

Example

Prompt: “Give me a brief on this company.”

dossier calljson
{ "entity": "Common Crawl", "limit": 10 }

Over HTTP

The same operation is available as GET /dossier for anything that does not speak MCP.

/dossierbash
curl -H "x-api-key: $UNLOB_API_KEY" \
  "https://api.unlob.com/dossier?entity=Common+Crawl"

Setup

One config block gives your client all 11 tools, including this one.

MCP configjson
{
  "mcpServers": {
    "unlob": {
      "command": "npx",
      "args": ["-y", "@unlob/mcp"],
      "env": { "UNLOB_API_KEY": "ulb_your_key_here" }
    }
  }
}

Get a key and connect

10,000 free requests a month. MCP calls bill exactly like HTTP calls — one request each.