Releases: futuresearch/futuresearch-python
v0.4.0
What's Changed
- Refactor: split server.py into app, models, and tools modules by @RafaelPo in #171
- Include version number in MCPB file by @rgambee in #174
- Add everyrow_single_agent MCP tool by @RafaelPo in #173
- Edits for clinical trials case study by @mckenna-futuresearch in #170
- Change input CSV for classification guide by @rgambee in #177
- Put more Claude emphasis in README by @dschwarz26 in #178
- Add foundation utility modules for HTTP transport by @RafaelPo in #179
- Add Redis infrastructure and state management by @RafaelPo in #180
- Add OAuth 2.1 authorization module by @RafaelPo in #181
- Add Claude Code tabs to all guides and case studies by @dschwarz26 in #185
- Add forecast endpoint by @dschwarz26 in #184
- everyrow-cc-CLAUDE: Add everyrow_cancel MCP tool for task cancellation by @nikosbosse in #186
- Add Claude code review workflow by @RafaelPo in #191
- Add HTTP transport with OAuth, Redis state, and deploy config by @RafaelPo in #183
- Redesign results widget: row numbers, cell copy, linkification by @RafaelPo in #192
- Harden MCP server: auth, CORS, Redis, widgets, and review fixes by @RafaelPo in #196
- Bump version number to 0.4.0 by @rgambee in #197
Full Changelog: v0.3.4...v0.4.0
v0.3.4
What's Changed
- Fix merge parameter descriptions to prevent CC misuse by @petermuehlbacher in #156
- Add notebook pattern validation and standardize setup cells by @petermuehlbacher in #163
- Validate response schema by @rgambee in #166
- Update MCPB manifest by @rgambee in #167
- Update Claude Desktop installation instructions by @rgambee in #169
- Bump version number to 0.3.4 by @rgambee in #168
Full Changelog: v0.3.3...v0.3.4
v0.3.3
What's Changed
- Change cache dependency for mcp-checks in CI by @rgambee in #158
- Rename include_research to include_reasoning in SDK (Phase 2) by @RafaelPo in #159
- Add notebook source links and Run in Colab buttons by @nikosbosse in #152
- add CC v. CC+ER comparison notebook by @petermuehlbacher in #154
- Document boolean property requirement for screen by @RafaelPo in #160
- Change Screen progress message by @rgambee in #161
- Bump version number to 0.3.3 by @rgambee in #162
Full Changelog: v0.3.2...v0.3.3
v0.3.2
What's Changed
- Add redirect from /docs/installation to /docs/ by @jackwildman in #155
- Update tool definitions by @dschwarz26 in #153
- Bump version to 0.3.2 by @rgambee in #157
Full Changelog: v0.3.1...v0.3.2
v0.3.1
What's Changed
- Rename Notebooks to Case Studies (FST-2287) by @nikosbosse in #139
- Fix claude code plugin by @rgambee in #150
Full Changelog: v0.3.0...v0.3.1
v0.3.0
What's Changed
- Regenerate code based on OpenAPI spec by @rgambee in #129
- Add hub pages for notebooks, guides, and api reference by @dschwarz26 in #130
- Add ground truth labels for CRM dedup dataset by @nikosbosse in #132
- Fix broken docs links and add CI link checker by @CallumMcMahon in #116
- Add CI check to detect terms in PR content by @CallumMcMahon in #134
- Add relationship_type by @straeter in #123
- Add ruff format to CI checks by @rgambee in #128
- Add typed MergeBreakdownResponse and Claude 4.6 LLM variants by @nikosbosse in #117
- Update README.md by @dschwarz26 in #131
- Remove editable source override from everyrow-mcp by @CallumMcMahon in #135
- quick fix for agent default behaviour by @petermuehlbacher in #136
- Fix up README and docs homepage by @dschwarz26 in #137
- add agent-map notebook by @petermuehlbacher in #138
- Fix docs deploy deadlock for new pages by @petermuehlbacher in #140
- Fix agent_map code example in notebook by @petermuehlbacher in #142
- Add scale deduplication and active learning docs by @RafaelPo in #124
- Fix docs images not rendering by @RafaelPo in #143
- Fix docs images by enabling LFS in checkout by @RafaelPo in #144
- Add borders to prose tables in docs by @petermuehlbacher in #141
- Regenerate code from OpenAPI spec by @rgambee in #145
- Point MCP project to local SDK project by @rgambee in #146
- Implement MCP and SDK streaming messages by @dschwarz26 in #114
- Fix Claude plugin command path by @rgambee in #147
- MCP documentation improvements by @rgambee in #148
Full Changelog: v0.2.1...v0.3.0
v0.2.1
New Features
-
Claude Opus 4.6 model support: Added support for Claude Opus 4.6 and its variants:
CLAUDE_4_6_OPUS_HIGHCLAUDE_4_6_OPUS_LOWCLAUDE_4_6_OPUS_MAXCLAUDE_4_6_OPUS_MEDIUMCLAUDE_4_6_OPUS_NT
-
Dedupe strategy options (#110): Added
strategyandstrategy_promptparameters todedupe()/dedupe_async(). Thestrategyparameter supports three modes:"identify"- Only identify duplicates without removing"select"(default) - Select one representative from each duplicate group"combine"- Merge duplicate records into a single combined record
The
strategy_promptparameter allows custom guidance for LLM selection/combining behavior. -
MergeResult with match breakdown (#94): Merge operations now return a
MergeResultobject that includes detailed match breakdown information, making it easier to understand how records were matched. -
Package version access (#125): Added
everyrow.__version__to expose the package version at runtime.
Bug Fixes
- MCP server fixes (#120, #105): Fixed MCP server functionality by updating the whoami endpoint and improving publish workflow.
Documentation
- Fixed docs site mobile layout with collapsible navigation (#127)
- Adopted product fonts and added links to other landing pages (#121)
- Improved getting started guide and chaining operations documentation (#112)
- Added canonical URLs and Open Graph tags (#102)
- Various other documentation improvements and fixes
v0.2.0
What's New
This is a major release with significant new features and a switch to our public API.
Public API
- Switched to the public API: The SDK now uses our public API, simplifying the codebase and improving stability
New SDK Features
- Custom agent parameters: Control agent behavior with
llm,iteration_budget, andinclude_research
parameters instead of justeffort_levelpresets enforce_row_independence: New parameter foragent_mapto run N independent agents with no coordination or
awareness of each otheruse_web_searchfor merge: Control web search behavior with"auto"(default),"yes"(force), or"no"
(skip)get_billing_balance(): New function to check your account balance
Documentation & Tooling
- New documentation site: Comprehensive docs with guides and interactive notebooks
- Cursor MCP setup: One-click configuration button for Cursor IDE
Upgrading
pip install --upgrade everyrowCustom Agent Parameters Example
from everyrow.task import LLM, single_agent
result = await agent_map(
task="...",
effort_level=None, # Set to None when using custom params
llm=LLM.CLAUDE_4_5_HAIKU,
iteration_budget=5,
include_research=True,
)v0.1.10
What's New
- MCPB Bundle for Claude Desktop: Download the
.mcpbfile below and double-click to install in Claude Desktop - Fixed MCP server logging: Prevented httpx/rich logging from corrupting the JSON-RPC stream
- CI/CD: Automated MCPB bundle builds attached to releases
Installation
Claude Desktop
Download everyrow-mcp.mcpb from the assets below and double-click to install.
Note: Works in Claude Desktop Chat mode. Cowork mode is not yet supported.
Claude Code / Manual
uvx everyrow-mcpSee README for full setup instructions.
v0.1.9
What's New
- Add MCP registry publishing support with
server.json - Add
mcp-namemetadata to everyrow-mcp README for PyPI ownership validation - Add server.json schema validation test
- Add version consistency checks for server.json
Publishing to MCP Registry
After this release, the everyrow-mcp server can be published to the MCP registry:
mcp-publisher publish