Give your AI a research team. Forecast, score, classify, or research every row of a dataset.
{
"mcpServers": {
"io-github-futuresearch-everyrow-mcp": {
"args": [
"futuresearch"
],
"command": "uvx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Deploy a team of researchers to forecast, score, classify, or gather data. Use yourself in the app, or give your team of researchers to your AI wherever you use it (Claude.ai, Claude Cowork, Claude Code, or Gemini/Codex/other AI surfaces), or point them to this Python SDK.
Is it safe?
No known CVEs for futuresearch.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 2 days ago. 28 stars.
Will it work with my client?
Transport: sse, http. Compatibility not confirmed.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
uvx 'futuresearch' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
No known vulnerabilities.
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Dynamic problem-solving through sequential thought chains
A Model Context Protocol server for searching and analyzing arXiv papers
An open-source AI agent that brings the power of Gemini directly into your terminal.
The official Python SDK for Model Context Protocol servers and clients
MCP Security Weekly
Get CVE alerts and security updates for Everyrow MCP Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Deploy a team of researchers to forecast, score, classify, or gather data. Use yourself in the app, or give your team of researchers to your AI wherever you use it (Claude.ai, Claude Cowork, Claude Code, or Gemini/Codex/other AI surfaces), or point them to this Python SDK.
Requires Google sign in, no credit card required.
Claude.ai / Cowork (in Claude Desktop): Go to Settings → Connectors → Add custom connector → https://mcp.futuresearch.ai/mcp
Claude Code:
claude mcp add futuresearch --scope project --transport http https://mcp.futuresearch.ai/mcp
Then sign in with Google.
Spin up a team of:
| Role | What it does | Cost | Scales To | | ---- | ------------ | ---- | --------- | | Agents | Research, then analyze | 1–3¢/researcher | 10k rows | | Forecasters | Predict outcomes | 20-50¢/researcher | 10k rows | | Scorers | Research, then score | 1-5¢/researcher | 10k rows | | Classifiers | Research, then categorize | 0.1-0.7¢/researcher | 10k rows | | Matchers | Find matching rows | 0.2-0.5¢/researcher | 20k rows |
See the full API reference, guides, and case studies, (for example, see our case study running a Research task on 10k rows, running agents that used 120k LLM calls.)
Or just ask Claude in your interface of choice:
Label this 5,000 row CSV with the right categories.
Find the rows in this 10,000 row pandas dataframe that represent good opportunities.
Rank these 2,000 people from Wikipedia on who is the most bullish on AI.
The base operation is agent_map: one web research agent per row. The other operations (rank, classify, forecast, merge, dedupe) use the agents under the hood as necessary. Agents are tuned on Deep Research Bench, our benchmark for questions that need extensive searching and cross-referencing, and tuned to get correct answers at minimal cost.
Under the hood, Claude will:
from futuresearch.ops import single_agent, agent_map
from pandas import DataFrame
from pydantic import BaseModel
class CompanyInput(BaseModel):
company: str
# Single input, run one web research agent
result = await single_agent(
task="Find this company's latest funding round and lead investors",
input=CompanyInput(company="Anthropic"),
)
print(result.data.head())
# Map input, run a set of web research agents in parallel
result = await agent_map(
task="Find this company's latest funding round and lead investors",
input=DataFrame([
{"company": "Anthropic"},
{"company": "OpenAI"},
{"company": "Mistral"},
]),
)
print(re
... [View full README on GitHub](https://github.com/futuresearch/everyrow-sdk#readme)