Loading
Loading
Not a chatbot demo. It searches the open web, reads the sources, cross-checks claims against a knowledge graph it builds as it works, and writes you a cited report. One download, ~2 minutes, no account.
Windows: just run the .exe, nothing to install · macOS/Linux: the .zip (Docker or Python) · bring your own key or run local Ollama.
First launch: the app is unsigned, so Windows may show “Windows protected your PC” — click More info → Run anyway. Unsigned, not unsafe.
Search → read → cite → PDF, with a live “tokens used vs. saved by memory” meter.
Run the Windows .exe (nothing to install), or unzip and `docker compose up` / `./start.sh` on macOS & Linux.
The browser opens; pick Anthropic / OpenAI / DeepSeek and paste your API key — or choose local Ollama. Stored locally.
Hit a one-click research prompt and watch it search, cite sources, and produce a downloadable report.
Multiple web searches per question, reads primary sources, refuses to state anything it didn’t retrieve. Every claim has a link.
Findings compound in a local knowledge graph. Ask a follow-up and it reuses what it learned — watch the “tokens saved” meter climb.
“…and give me a PDF” produces a sourced report (PDF / DOCX / Markdown) you download from the page.
The same tools are exposed at localhost:8130/mcp — point Claude Desktop or Cursor at it and use them in your own agent.
Runs on your own key or fully local with Ollama. No Aitherium account, no middleman, no telemetry.
The whole app is a pack applied to aither-adk — the open agent SDK. pip install aither-adk to build your own.
While the app runs, its tools (web_search, fetch_url, knowledge_graph, recall, generate_pdf…) are a standard MCP server at http://localhost:8130/mcp. Point any MCP client at it:
# Cursor — ~/.cursor/mcp.json
{ "mcpServers": { "deep-research": { "url": "http://localhost:8130/mcp" } } }
# Claude Desktop — claude_desktop_config.json
{ "mcpServers": { "deep-research": {
"command": "npx", "args": ["-y", "mcp-remote", "http://localhost:8130/mcp"] } } }With a cloud key, your queries go only to the AI provider you choose (Anthropic / OpenAI / DeepSeek) plus the web searches the agent runs — never to us. Choose local Ollama and nothing leaves your machine at all.
Powered by aither-adk — the open agent SDK. Build your own: pip install aither-adk.