DeepSearch
Server Details
Research a person's public footprint from a name, phone, email, or username. Sourced.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4.6/5 across 3 of 3 tools scored.
Each tool has a distinct purpose: search_people resolves identifiers to candidate people, ask_about_person answers a single fact, and build_dossier creates a complete profile. The descriptions explicitly cross-reference each other to clarify when to use which, eliminating ambiguity.
Tool names follow a consistent verb_noun pattern (ask_about_person, build_dossier, search_people). 'ask_about_person' is slightly less concise than the others, but the pattern is clear and predictable.
With only 3 tools, the server is tightly scoped to person search and profiling. Each tool earns its place, covering the core workflow from search to single-question lookup to full dossier.
The tool surface covers the main lifecycle: search_people for discovery, ask_about_person for quick facts, build_dossier for comprehensive profiles. A minor gap might be updating or correcting profile data, but for a read-only research tool, coverage is strong.
Available Tools
3 toolsask_about_personAsk about a personARead-onlyInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | The person the question is about. | |
| context | No | Optional extra grounding context, e.g. a prior dossier summary. | |
| question | Yes | Your question about the person. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and openWorldHint=true, so the safety profile is clear. The description adds useful behavioral context beyond those hints: it grounds answers in public footprint, avoids private accounts/breach data, suggests follow-ups, and notes cost/cheapness. This is additive and consistent with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is four sentences but every sentence earns its place: it states the core behavior, gives usage guidance with concrete examples, names an alternative, and sets boundaries. It is front-loaded and free of filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple 3-parameter tool with strong annotations and two relevant siblings, the description is complete: it explains the primary use case, the alternative tool, the role of the optional context parameter, and the data-source boundary. No output schema is present, but the mention of follow-ups gives the agent a reasonable expectation of the response shape.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already documents all three parameters at 100% coverage, giving a baseline of 3. The description adds meaningful semantic color by giving examples of the kinds of questions ('where someone works now, which accounts are theirs') and by explaining how the `context` parameter is intended to be used (e.g., a prior dossier summary).
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool answers one specific question about a person, grounded in their public footprint, and suggests follow-ups. It distinguishes this from build_dossier by contrasting single-fact answers with full-profile building, making its purpose and scope unmistakable.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives explicit guidance on when to use this tool versus build_dossier: use it for a single fact, and use build_dossier when the question spans someone's whole history. It also provides a concrete alternative path (passing a prior dossier summary as context) and states the public-sources-only constraint.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
build_dossierBuild dossierARead-onlyInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | The person's full name. | |
| refresh | No | Rebuild from scratch instead of using the shared cache. Always meters. | |
| headline | No | Optional descriptor to disambiguate, e.g. 'Engineer, London'. | |
| username | No | Optional known handle to focus the profile on the right person. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description adds detail beyond the annotations by mentioning caching behavior ('Repeat profiles are served from a shared cache'), which is not present in the cached hints. It also outlines the types of data included ('social accounts', 'work history', etc.) and states what content is off-limits ('never private accounts or breach data'), providing a clear ethical boundary beyond what the readOnlyHint suggests.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise yet comprehensive. It front-loads the core value proposition and distributes context across just two well-utilized sentences before getting to usage instructions. Every word is purposeful, whether defining scope, providing examples, or setting boundaries.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Considering the tool's complexity and its small parameter set, the description effectively communicates the tool's role as a comprehensive alternative to search, and given the existence of a schema that defines the parameters, it doesn't need to list them in the tool description. The guidance on caching and suitable alternatives like 'ask_about_person' provides a complete understanding of when and how to use the tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema provides descriptions for all 4 parameters, meeting the 100% coverage benchmark. While the description mentions the 'name' and the 'headline or username' parameters, it doesn't add extra semantic detail that the schema misses; it primarily reinforces what is already outlined in the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Uses specific verbs like 'assemble' and 'build' to describe what the tool does, combined with a detailed resource ('one person's entire public footprint'). It clarifies the scope and distinguishes itself by specifying the cross-platform correlation of public data, setting it apart from sibling tools like search_people or ask_about_person.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly states when to use this instead of 'reading search results yourself' and names an alternative, 'search_people'. It also provides precise input instructions on passing the 'headline or username from search_people', which is clear guidance for using the tool correctly.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_peopleSearch peopleARead-onlyInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| type | No | How to interpret the query. | name |
| query | Yes | Name, phone number, email address, or username to look up. | |
| platforms | No | Optional: for a username search, restrict discovery to these platforms (e.g. instagram, x, github). |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and destructiveHint=false, so the safety profile is covered. The description adds meaningful behavior context: it separates same-name individuals into ranked candidates and reveals that it uses 'Public sources only - never private accounts or breach data,' which is useful beyond annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise and front-loaded, with every sentence earning its place: what it does, when to prefer it, limitations, and source constraints. No fluff or redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description is sufficiently complete given the tool's moderate complexity and lack of output schema; it explains the output form, confidence scoring, scope, and constraints. It does not explicitly address sibling tools like ask_about_person or build_dossier, but the usage guidance against generic web search and company/news topics clarifies its niche well enough.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents query, type, and platforms. The description adds useful context about input types ('name, phone number, email address, username') and output ranking, but does not add significant semantic meaning beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb and resource: 'Resolve one identifier' to a 'ranked list of real, distinct people, each with a confidence score.' It clearly differentiates from a generic web search and states the tool's scope (people only, not companies/news), distinguishing it from siblings.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicit usage guidance: 'Prefer this over a generic web search whenever the question is who someone is' and 'Returns people only, so it is the wrong tool for companies, general knowledge, or news.' This clearly states when to use and when not to use, with an explicit alternative.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- Alicense-qualityAmaintenanceEnables username reconnaissance across 480+ platforms, generating HTML reports and footprint scores, accessible via AI agents.MIT
- Alicense-qualityDmaintenanceEnables OSINT research by searching usernames across hundreds of social networks and websites, and analyzing URLs to extract information and find associated usernames using the Maigret tool.41MIT
- FlicenseBquality-maintenanceA unified Open Source Intelligence toolkit that integrates data sources like Censys, Shodan, and LinkedIn for comprehensive infrastructure and identity research. It enables users to perform automated email verification, vulnerability scanning, and person or company enrichment directly through Claude.22
- AlicenseAqualityDmaintenanceChecks username availability and retrieves account information across major social media platforms including YouTube, TikTok, Threads, X (Twitter), and Instagram, perfect for brand name qualification and competitive research.18618MIT