Skip to main content
Glama
abhilash2429

agentic-research

by abhilash2429

agentic-research

Eine agentische Web-Recherche-Pipeline. Stell eine Frage in natürlicher Sprache; sie durchsucht das Web, ruft Kandidatenseiten ab, zerlegt sie in Chunks und bettet sie ein, ruft nur die relevanten Textabschnitte ab und liefert eine Antwort mit Zitaten, die auf die genaue Quellenpassage verweisen.

Entwickelt, um sowohl von einem KI-Agenten als auch von einem Menschen aufgerufen zu werden. Der MCP-Server stellt es als deep_research-Tool bereit, sodass ein Coding-Agent auf aktuelle, zitierte Informationen zugreifen kann, anstatt aus Trainingsdaten zu raten.

Warum eine Retrieval-Schicht

Der übliche Agenten-Ansatz für das Web ist: suchen, die gesamte Seite abrufen, das Ganze in das Kontextfenster legen, antworten. Das begrenzt dich auf eine Handvoll Quellen und berechnet den vollen Token-Preis für Seiten, die sich als größtenteils irrelevant erweisen.

typical:   search -> fetch full page -> stuff into context -> answer
           ~5 sources, full token price per page, no span-level citation

here:      search -> fetch N pages -> parent/child chunk -> embed
           -> retrieve only relevant children -> expand parents on demand
           -> compress -> answer
           ~30 sources, lower token cost, structural citations

Related MCP server: Deep Research MCP Server

Status

Work in progress, in Phasen aufgebaut. Siehe docs/ für einen Hinweis zu jeder Schicht.

Phase

Schicht

Status

0

Grundlage, gemeinsame Verträge

erledigt

1

Konfiguration, rollenbasierte LLM-Factory

erledigt

2

Abruf und Extraktion

erledigt

3

Hierarchisches Chunking

erledigt

4

Index und Reranking

in Arbeit

5

Suchanbieter

erledigt

6

Einzelner Researcher-Loop

offen

7

Vollständiger Graph: Fan-out, Klärung, Kompression

offen

8

Eval-Harness

offen

9

Service-Schicht und API

offen

10

MCP-Server

offen

11

Web-UI

offen

Setup

python -m venv .venv
.venv/Scripts/python -m pip install -e ".[dev,api,mcp]"
cp .env.example .env      # fill in LiteLLM and search keys
docker compose up -d qdrant
ares doctor

CLI

Ein Befehl pro Schicht, damit du sehen kannst, was jede einzelne für sich tut.

ares doctor                        # proxy, models and Qdrant reachable
ares fetch <url> --show            # raw HTML to clean markdown
ares chunk <url>                   # the parent/child tree
ares index <url>                   # embed and store, or report a cache hit
ares search "..." --no-rerank      # retrieval without the reranker
ares search "..." --rerank         # and with it
ares websearch "..."               # provider results
ares research "..."                # the whole loop, cited answer
ares eval                          # scorecard against the committed baseline

Lizenz

MIT

F
license - not found
Not graded
quality - not tested
B
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • A
    license
    Not graded
    quality
    D
    maintenance
    Enables iterative deep research by integrating AI agents with search engines, web scraping, and large language models for efficient data gathering and comprehensive reporting.
    20
    321
    MIT
  • A
    license
    Not graded
    quality
    D
    maintenance
    An agent-based tool that provides web search and advanced research capabilities including document analysis, image description, and YouTube transcript retrieval.
    17
    Apache 2.0
  • A
    license
    Not graded
    quality
    C
    maintenance
    Enhances LLM applications with deep autonomous web research capabilities, delivering higher quality information than standard search tools by exploring and validating numerous trusted sources.
    364
    MIT
  • A
    license
    B
    quality
    D
    maintenance
    An automated research agent that leverages Google Gemini models and Google Search to perform deep, multi-step web research, generating sophisticated queries and producing citation-rich answers.
    1
    28
    MIT

View all related MCP servers

Related MCP Connectors

  • Web research for agents: quality-scored Google search, webpage extraction, and deep research.

  • Persistent memory and knowledge management for AI agents with semantic search and 50+ tools.

  • The best web search for your AI Agent

View all MCP Connectors

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/abhilash2429/agentic-research'

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