Skip to main content
Glama

Research

research

Submit a question to search the web, crawl the most relevant pages, and generate a grounded answer prompt.

Instructions

Search the web, crawl ranked pages, and return a grounded answer prompt. Input schema has exactly one field: query. Pass the user's question as-is.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
queryYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The 'research' tool is registered as an MCP tool via the @mcp.tool decorator with name='research', title='Research', and a description.
    @mcp.tool(
        name="research",
        title="Research",
        description=(
            "Search the web, crawl ranked pages, and return a grounded answer prompt. "
            "Input schema has exactly one field: query. Pass the user's question as-is."
        ),
    )
  • The research(query) async function is the handler that validates the query, calls agentic_run() via the pipeline, and returns {'answer': result.answer}.
    async def research(query: str) -> dict[str, Any]:
        query = _validate_query(query)
        started = time.monotonic()
        _log(f"research called query={query!r}")
        try:
            result = await agentic_run(
                query,
                trace_path=config_trace_path(),
                **_research_settings(),
            )
            elapsed = time.monotonic() - started
            _log(
                "research returning "
                f"answer_tokens={_answer_tokens(result.answer)} "
                f"elapsed={elapsed:.2f}s"
            )
            return {"answer": result.answer}
        except Exception as exc:
            elapsed = time.monotonic() - started
            _log(f"research failed elapsed={elapsed:.2f}s error={exc!r}")
            raise
  • agentic_run() is the core pipeline function: performs DuckDuckGo search, ranks results with dense+BM25 hybrid RRF, crawls kept URLs, chunks pages, re-ranks chunks, and builds a grounded answer prompt.
    async def agentic_run(
        query: str,
        *,
        search_top_k: int = 10,
        search_rrf_cutoff: float = 0.0,
        search_dense_weight: float = 0.5,
        search_max_results_to_keep: int = 5,
        chunk_rrf_cutoff: float = 0.0,
        chunk_dense_weight: float = 0.5,
        chunk_max_results_to_keep: int = 2,
        max_concurrent_crawls: int = 5,
        max_concurrent_embedding_calls: int = 3,
        embedding_timeout_seconds: float = 60.0,
        embedding_timeout_retries: int = 2,
        crawl_max_chunk_tokens: int = 300,
        crawl_overlap_tokens: int = 80,
        crawl_max_page_tokens: int = 0,
        crawl_fit_markdown_mode: str = "off",
        crawl_fit_min_chars: int = 200,
        crawl_bm25_threshold: float = 1.5,
        crawl_bm25_language: str = "english",
        crawl_pruning_threshold: float = 0.48,
        chunk_rank_oversample: int = 3,
        chunk_dedupe_jaccard_threshold: float = 0.92,
        chunk_max_per_source_url: int = 4,
        encoding_name: str | None = None,
        embedding_backend: str | None = None,
        embedding_model: str | None = None,
        embedding_openai_env_file: str | None = None,
        dense_query_prefix: str = DEFAULT_DENSE_QUERY_PREFIX,
        dense_document_prefix: str = DEFAULT_DENSE_DOCUMENT_PREFIX,
        dense_document_embed_batch_size: int | None = 32,
        trace_path: str | Path | None = None,
        progress_callback: ProgressCallback | None = None,
        embedder: EmbeddingFn | None = None,
        search_fn: SearchFn = search,
        crawl_fn: CrawlFn = crawl,
        # Backwards-compatible aliases accepted by older callers.
        search_limit: int | None = None,
        max_urls: int | None = None,
        crawl_top_k: int | None = None,
        **_: Any,
    ) -> AgenticResult:
        query = query.strip()
        if not query:
            raise ValueError("query must not be empty")
    
        if search_limit is not None:
            search_top_k = search_limit
        if max_urls is not None:
            search_max_results_to_keep = max_urls
        if crawl_top_k is not None:
            chunk_max_results_to_keep = crawl_top_k
        embedding_backend = embedding_backend or DEFAULT_EMBEDDING_BACKEND
        embedding_backend = normalize_embedding_backend(embedding_backend)
        embedding_model = (
            str(embedding_model).strip()
            if embedding_model and str(embedding_model).strip()
            else DEFAULT_EMBEDDING_MODEL
        )
        env_file = embedding_openai_env_file
        if not (env_file and str(env_file).strip()):
            env_file = DEFAULT_EMBEDDING_OPENAI_ENV_FILE
        else:
            env_file = str(env_file).strip()
        if search_dense_weight <= 0.0 or chunk_dense_weight <= 0.0:
            raise ValueError(
                "local dense embeddings are required; search_dense_weight and "
                "chunk_dense_weight must both be greater than 0"
            )
        local_model_spec = (
            resolve_local_embedding_model_spec(embedding_model)
            if embedding_backend == "onnx"
            else None
        )
        started_at = datetime.now(UTC).isoformat()
        trace: dict[str, Any] = {
            "query": query,
            "started_at": started_at,
            "finished_at": None,
            "status": "running",
            "config": {
                "search_top_k": search_top_k,
                "search_rrf_cutoff": search_rrf_cutoff,
                "search_dense_weight": search_dense_weight,
                "search_max_results_to_keep": search_max_results_to_keep,
                "chunk_rrf_cutoff": chunk_rrf_cutoff,
                "chunk_dense_weight": chunk_dense_weight,
                "chunk_max_results_to_keep": chunk_max_results_to_keep,
                "max_concurrent_crawls": max_concurrent_crawls,
                "max_concurrent_embedding_calls": max_concurrent_embedding_calls,
                "embedding_timeout_seconds": embedding_timeout_seconds,
                "embedding_timeout_retries": embedding_timeout_retries,
                "crawl_max_chunk_tokens": crawl_max_chunk_tokens,
                "crawl_overlap_tokens": crawl_overlap_tokens,
                "crawl_max_page_tokens": crawl_max_page_tokens,
                "crawl_fit_markdown_mode": crawl_fit_markdown_mode,
                "crawl_fit_min_chars": crawl_fit_min_chars,
                "crawl_bm25_threshold": crawl_bm25_threshold,
                "crawl_bm25_language": crawl_bm25_language,
                "crawl_pruning_threshold": crawl_pruning_threshold,
                "chunk_rank_oversample": chunk_rank_oversample,
                "chunk_dedupe_jaccard_threshold": chunk_dedupe_jaccard_threshold,
                "chunk_max_per_source_url": chunk_max_per_source_url,
                "encoding_name": encoding_name or "embedding",
                "tokenizer_name": None,
                "embedding_backend": embedding_backend,
                "embedding_model": embedding_model,
                "embedding_model_repo_id": (
                    local_model_spec.repo_id if local_model_spec is not None else None
                ),
                "embedding_model_local_dir": (
                    str(local_model_spec.local_dir) if local_model_spec is not None else None
                ),
                "embedding_openai_env_file": env_file,
                "dense_query_prefix": dense_query_prefix,
                "dense_document_prefix": dense_document_prefix,
                "dense_document_embed_batch_size": dense_document_embed_batch_size,
            },
            "web_search": [],
            "ranked_search_results": [],
            "crawl_results": [],
            "ranked_chunk_pool": [],
            "final_prompt": "",
            "crawl_errors": [],
        }
    
        async def emit(event: str, **payload: Any) -> None:
            if progress_callback is not None:
                await progress_callback(event, payload)
    
        def finish(status: str, answer: str, crawl_errors: Sequence[str]) -> AgenticResult:
            trace["status"] = status
            trace["finished_at"] = datetime.now(UTC).isoformat()
            trace["final_prompt"] = answer
            trace["crawl_errors"] = list(crawl_errors)
            _write_trace(trace_path, trace)
            return AgenticResult(answer=answer)
    
        _agentic_log(f"start query={query!r}")
        await emit("start", query=query)
        await emit("search_start", query=query, search_top_k=search_top_k)
        _agentic_log(f"search start top_k={search_top_k}")
        results = [result for result in search_fn(query, max(1, search_top_k)) if _is_http_url(result.url)]
        _agentic_log(f"search done results={len(results)}")
        trace["web_search"] = [asdict(result) for result in results]
        await emit("search_results", results_count=len(results))
    
        if not results:
            prompt = _format_results_prompt(question=query, results=[])
            return finish("no_search_results", prompt, [])
    
        tokenizer_name = (
            str(encoding_name).strip()
            if encoding_name is not None and str(encoding_name).strip().lower() != "embedding"
            else resolve_embedding_tokenizer_name(
                backend=embedding_backend,
                embedding_model=embedding_model,
                openai_env_file=env_file if embedding_backend == "openai_compatible" else None,
            )
        )
        trace["config"]["tokenizer_name"] = tokenizer_name
    
        if embedder is None:
            embedder = create_embedder(
                backend=embedding_backend,
                embedding_model=embedding_model,
                openai_env_file=env_file if embedding_backend == "openai_compatible" else None,
            )
        embedding_semaphore = asyncio.Semaphore(max(1, max_concurrent_embedding_calls))
    
        search_chunks = [_search_chunk(result) for result in results]
        await emit("search_embed_ranking", snippets=len(search_chunks))
        _agentic_log(f"search rank start snippets={len(search_chunks)}")
        ranked_search_chunks = await _rank(
            query=query,
            chunks=search_chunks,
            dense_weight=search_dense_weight,
            rrf_similarity_cutoff=search_rrf_cutoff,
            max_results=search_max_results_to_keep,
            embedder=embedder,
            semaphore=embedding_semaphore,
            timeout_seconds=embedding_timeout_seconds,
            timeout_retries=embedding_timeout_retries,
            dense_query_prefix=dense_query_prefix,
            dense_document_prefix=dense_document_prefix,
            dense_document_embed_batch_size=dense_document_embed_batch_size,
        )
        _agentic_log(f"search rank done kept={len(ranked_search_chunks)}")
        trace["ranked_search_results"] = ranked_search_chunks
        await emit("search_ranked", kept_results=len(ranked_search_chunks))
    
        crawl_semaphore = asyncio.Semaphore(max(1, max_concurrent_crawls))
    
        async def crawl_result(search_doc: dict[str, Any]) -> dict[str, Any]:
            url = str(search_doc["url"])
            async with crawl_semaphore:
                await emit("crawl_start", url=url)
                try:
                    crawled = await crawl_fn(
                        url=url,
                        encoding_name=tokenizer_name,
                        user_query=query,
                        fit_markdown_mode=crawl_fit_markdown_mode,
                        fit_min_chars=crawl_fit_min_chars,
                        bm25_threshold=crawl_bm25_threshold,
                        bm25_language=crawl_bm25_language,
                        pruning_threshold=crawl_pruning_threshold,
                    )
                except Exception as exc:
                    error = f"{url}: {exc}"
                    await emit("crawl_error", url=url, error=str(exc))
                    return {
                        **search_doc,
                        "ranked_chunks": [],
                        "chunks_total": 0,
                        "crawl_error": error,
                    }
                markdown = str(
                    crawled.get("markdown") or crawled.get("markdown_raw") or ""
                ).strip()
                markdown = truncate_text_to_max_tokens(
                    markdown,
                    crawl_max_page_tokens,
                    tokenizer_name,
                )
                chunks = chunk_text(
                    markdown,
                    max_chunk_tokens=crawl_max_chunk_tokens,
                    overlap_tokens=crawl_overlap_tokens,
                    encoding_name=tokenizer_name,
                )
                source_chunks = [
                    {
                        **chunk,
                        "source_url": url,
                        "source_title": str(search_doc["title"]),
                        "source_result_id": search_doc["result_id"],
                        "source_chunk_id": chunk.get("chunk_id"),
                        "chunk_id": f"{search_doc['result_id']}:{chunk.get('chunk_id')}",
                    }
                    for chunk in chunks
                ]
                await emit("crawl_done", url=url, chunks=len(chunks), kept_chunks=0)
                return {
                    **search_doc,
                    "chunks": source_chunks,
                    "ranked_chunks": [],
                    "chunks_total": len(chunks),
                    "crawl_error": None,
                }
    
        crawled_results = await asyncio.gather(
            *(crawl_result(search_doc) for search_doc in ranked_search_chunks)
        )
        chunk_pool = [
            chunk
            for result in crawled_results
            for chunk in result.get("chunks", [])
            if not result.get("crawl_error")
        ]
        oversample = max(1, chunk_rank_oversample)
        chunk_rank_pool_cap = max(
            1,
            min(len(chunk_pool), chunk_max_results_to_keep * oversample),
        )
        await emit("chunk_embed_ranking", chunks=len(chunk_pool), rank_pool_cap=chunk_rank_pool_cap)
        ranked_wide = await _rank(
            query=query,
            chunks=chunk_pool,
            dense_weight=chunk_dense_weight,
            rrf_similarity_cutoff=chunk_rrf_cutoff,
            max_results=chunk_rank_pool_cap,
            embedder=embedder,
            semaphore=embedding_semaphore,
            timeout_seconds=embedding_timeout_seconds,
            timeout_retries=embedding_timeout_retries,
            dense_query_prefix=dense_query_prefix,
            dense_document_prefix=dense_document_prefix,
            dense_document_embed_batch_size=dense_document_embed_batch_size,
        )
        ranked_chunk_pool = select_chunks_with_quota_and_fill(
            ranked_wide,
            final_limit=chunk_max_results_to_keep,
            max_per_source_url=chunk_max_per_source_url,
            dedupe_jaccard_threshold=chunk_dedupe_jaccard_threshold,
        )
        chunks_by_url: dict[str, list[dict[str, Any]]] = {}
        for chunk in ranked_chunk_pool:
            chunks_by_url.setdefault(str(chunk.get("source_url") or ""), []).append(chunk)
        for result in crawled_results:
            result["ranked_chunks"] = chunks_by_url.get(str(result["url"]), [])
        trace["crawl_results"] = crawled_results
        trace["ranked_chunk_pool"] = ranked_chunk_pool
        crawl_errors = [
            str(result["crawl_error"])
            for result in crawled_results
            if result.get("crawl_error")
        ]
        await emit(
            "pages_indexed",
            urls_read=len(ranked_search_chunks),
            chunks_extracted=len(chunk_pool),
            chunks_in_prompt=len(ranked_chunk_pool),
            crawl_errors_count=len(crawl_errors),
        )
        prompt = _format_results_prompt(question=query, results=crawled_results)
        await emit("done", results_count=len(crawled_results), crawl_errors_count=len(crawl_errors))
        _agentic_log(f"done results={len(crawled_results)} crawl_errors={len(crawl_errors)}")
        return finish("ok", prompt, crawl_errors)
  • DEFAULT_RESEARCH_CONFIG defines the default configuration parameters for the research pipeline (search top-k, dense weights, crawling settings, etc.).
    DEFAULT_RESEARCH_CONFIG: dict[str, Any] = {
        "search_top_k": 10,
        "search_rrf_cutoff": 0.0,
        "search_dense_weight": 0.5,
        "search_max_results_to_keep": 5,
        "chunk_rrf_cutoff": 0.0,
        "chunk_dense_weight": 0.5,
        "chunk_max_results_to_keep": 2,
        "chunk_rank_oversample": 3,
        "chunk_dedupe_jaccard_threshold": 0.92,
        "chunk_max_per_source_url": 4,
        "max_concurrent_crawls": 5,
        "max_concurrent_embedding_calls": 3,
        "embedding_timeout_seconds": 60.0,
        "embedding_timeout_retries": 2,
        "crawl_fit_markdown_mode": "bm25",
        "crawl_fit_min_chars": 200,
        "crawl_bm25_threshold": 1.5,
        "crawl_bm25_language": "english",
        "crawl_pruning_threshold": 0.48,
        "crawl_max_chunk_tokens": 300,
        "crawl_overlap_tokens": 80,
        "crawl_max_page_tokens": 0,
        "encoding_name": "o200k_base",
        "embedding_backend": DEFAULT_EMBEDDING_BACKEND,
        "embedding_model": DEFAULT_EMBEDDING_MODEL,
        "embedding_openai_env_file": DEFAULT_EMBEDDING_OPENAI_ENV_FILE,
        "dense_query_prefix": "Instruct: Given a web search query, retrieve relevant passages that answer the query\nQuery:",
        "dense_document_prefix": "",
        "dense_document_embed_batch_size": 32,
        "trace_path": "trace_logs/agentic_trace.json",
    }
  • research_run_kwargs() extracts the research config dict into keyword arguments compatible with agentic_run(). Called by _research_settings() in mcp_server.py.
    def research_run_kwargs(config: dict[str, Any] | None = None) -> dict[str, Any]:
        config = load_research_config() if config is None else config
        keys = (
            "search_top_k",
            "search_rrf_cutoff",
            "search_dense_weight",
            "search_max_results_to_keep",
            "chunk_rrf_cutoff",
            "chunk_dense_weight",
            "chunk_max_results_to_keep",
            "chunk_rank_oversample",
            "chunk_dedupe_jaccard_threshold",
            "chunk_max_per_source_url",
            "max_concurrent_crawls",
            "max_concurrent_embedding_calls",
            "embedding_timeout_seconds",
            "embedding_timeout_retries",
            "crawl_fit_markdown_mode",
            "crawl_fit_min_chars",
            "crawl_bm25_threshold",
            "crawl_bm25_language",
            "crawl_pruning_threshold",
            "crawl_max_chunk_tokens",
            "crawl_overlap_tokens",
            "crawl_max_page_tokens",
            "encoding_name",
            "embedding_backend",
            "embedding_model",
            "embedding_openai_env_file",
            "dense_query_prefix",
            "dense_document_prefix",
            "dense_document_embed_batch_size",
        )
        return {key: config[key] for key in keys}
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations provided, so description carries full burden. It mentions 'crawl ranked pages' and 'grounded answer prompt,' implying search and synthesis behaviors, but lacks details on rate limits, auth needs, or internal processes. Adequate but not thorough.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences, no fluff. The first sentence conveys the core action, the second explains the input schema. Every word adds value; perfect conciseness.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity (search, crawl, answer), the description covers the main functionality and input. The presence of an output schema partially offsets the need to describe returns. Minor gaps in behavior details (e.g., crawling depth, error handling) but overall complete enough for typical use.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, but the description explicitly explains that the only field is 'query' and instructs to pass the question as-is. This adds significant meaning beyond the schema's title 'Query'.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description clearly states the tool searches the web, crawls pages, and returns a grounded answer. Verb and resource are specific, and it includes how to use the input. No sibling tools to differentiate, so it's complete.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly instructs to pass the user's question as-is. While no when-not-to-use or alternative guidance is given, the absence of sibling tools reduces the need for such differentiation. The usage context is clear.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/MarcellM01/TinySearch'

If you have feedback or need assistance with the MCP directory API, please join our Discord server