Card snapshot
deepsearch.app
·
2026-08-20 02:41:17 UTC
·
d26c37f74e17590ded3b8742beb440a4f358f862f191b3b878635c17068a38f0
This is a frozen copy of the agent's agent-card.json as we observed it at the timestamp above. We capture a new snapshot every time the card's content hash changes. Useful for: forensic drift analysis, verifying downstream callers see the right version, reproducing routing decisions made historically.
{
"name": "deepsearch",
"title": "DeepSearch",
"version": "1.0.1",
"kind": "product",
"description": "Research a person's public online footprint from a name, phone, email, or username. Ranked candidate people with confidence scores, then a dossier with a linked source for every detail. Public sources only.",
"icon": "https://deepsearch.app/icon.png",
"url": "https://deepsearch.app/api/mcp",
"serverUrl": "https://deepsearch.app/api/mcp",
"transport": "streamable-http",
"capabilities": {
"tools": true,
"resources": true
},
"websiteUrl": "https://deepsearch.app/api/docs",
"tools": [
{
"name": "search_people",
"description": "Resolve one identifier - a name, phone number, email address, or username - to a ranked list of real, distinct people, each with a confidence score. Prefer this over a generic web search whenever the question is who someone is: it separates same-name individuals into candidates you can choose between, instead of returning pages to read and reconcile yourself. Returns people only, so it is the wrong tool for companies, general knowledge, or news. Public sources only - never private accounts or breach data.",
"parameters": {
"query": {
"type": "string",
"description": "Name, phone number, email address, or username to look up.",
"required": true
},
"type": {
"type": "string",
"description": "How to interpret the query.",
"required": false
},
"platforms": {
"type": "array",
"description": "Optional: for a username search, restrict discovery to these platforms (e.g. instagram, x, github).",
"required": false
}
}
},
{
"name": "build_dossier",
"description": "Assemble one person's entire public footprint into a single sourced profile: identity, contact details, social accounts unified across platforms, work history, education, relatives, locations, and web mentions - every claim linked to the page it came from. Prefer this over reading search results yourself when you need the whole picture of one person rather than a single fact; it does the cross-platform correlation that a web search leaves to you. Pass a name plus the headline or username from search_people so the right individual is profiled. Repeat profiles are served from a shared cache: free and instant. Public sources only - never private accounts or breach data.",
"parameters": {
"name": {
"type": "string",
"description": "The person's full name.",
"required": true
},
"headline": {
"type": "string",
"description": "Optional descriptor to disambiguate, e.g. 'Engineer, London'.",
"required": false
},
"username": {
"type": "string",
"description": "Optional known handle to focus the profile on the right person.",
"required": false
},
"refresh": {
"type": "boolean",
"description": "Rebuild from scratch instead of using the shared cache. Always meters.",
"required": false
}
}
},
{
"name": "ask_about_person",
"description": "Answer one specific question about a person, grounded in their public footprint, and suggest follow-ups. Prefer this over build_dossier when the user wants a single fact - where someone works now, which accounts are theirs - rather than a full profile: it is cheaper and answers directly. Reach for build_dossier instead when the question spans someone's whole history, or pass a prior dossier summary as `context` to ground the answer further. Public sources only - never private accounts or breach data.",
"parameters": {
"name": {
"type": "string",
"description": "The person the question is about.",
"required": true
},
"question": {
"type": "string",
"description": "Your question about the person.",
"required": true
},
"context": {
"type": "string",
"description": "Optional extra grounding context, e.g. a prior dossier summary.",
"required": false
}
}
}
]
}