Scry lets your AI agent query the internet like a database.
Scry is an MCP server. Connect it to ChatGPT, Claude, Cursor, or any MCP client, and your agent can run read-only SQL over billions of public documents: Reddit, Hacker News, LessWrong, arXiv, Stack Exchange, Wikipedia, and the prediction markets. Millions of new posts and comments land every day.
Why
A search engine hands an agent ten links. Scry hands it the records. A question like every page that mentions this compound but not that patent, grouped by domain, since March is one query, and the answer is computed over every document that matches.
An example
Which papers cite both Scaling Laws and Chinchilla?
SELECT id, title, publication_year, cited_by_count
FROM openalex.works
WHERE id IN (
SELECT citing_work_id FROM openalex.cited_by
WHERE cited_work_id IN ('https://openalex.org/W3001279689', -- Scaling Laws, 2020
'https://openalex.org/W4225591000') -- Chinchilla, 2022
GROUP BY citing_work_id HAVING uniqExact(cited_work_id) = 2)
ORDER BY cited_by_count DESC
LIMIT 10; Large language models encode clinical knowledge 2023 3,194 Can LLMs Transform Computational Social Science? 2023 429 ProGen2: boundaries of protein language models 2023 426
195 papers cite both; the query ran in 0.1 s (measured 2026-09-07). Your agent writes the SQL. You ask the question. More examples.
Install
Add https://mcp.scry.io as an MCP server in ChatGPT or Claude. In Claude Code:
claude mcp add --transport http scry https://mcp.scry.io
The sign-in creates your account. Nothing runs on your machine. Steps for each client.
Price
Researchers $0. Patrons $100 a month. Teams from $2,000 a month. Agents $0.05 per second of the time box they declare, charged at admission. Every account starts with $5 of credit and no card. Price list.
Evidence
On Google's DeepSearchQA, 900 research questions graded exact-set, an agent researching through Scry answers 71.8% fully correct. Google's Kaggle leaderboard reports its Gemini Deep Research Agent at 66.1%. Every question, grade and transcript is on the DeepSearchQA page.
More
The full page · Sources · Docs · Measured performance · Principles · hi@scry.io