FutureSearch Logofuturesearch
  • Blog
  • Solutions
  • Research
  • Docs
  • Evals
  • Company
  • Get Researchers
FutureSearch Logo

General inquiry? You can reach us at hello@futuresearch.ai.

Company

Team & CareersPressPrivacy PolicyTerms of Service

Developers

SDK DocsAPI ReferenceCase StudiesGitHub

Follow Us

X (Twitter)@dschwarz26LinkedIn
FutureSearchdocs
Your research team
Installation
  • All install methods
  • Claude.ai
  • Claude Cowork
  • Claude Code
  • Web App
  • Python SDK
  • Skill
  • MCP Server
Reference
  • API Key
  • classify
  • dedupe
  • forecast
  • merge
  • rank
  • agent_map
  • screen
  • Progress Monitoring
  • Chaining Operations
Guides
  • LLM-Powered Data Labeling
  • Add a Column via Web Research
  • Classify and Label Rows
  • Deduplicate Training Data
  • Filter a Dataset Intelligently
  • Join Tables Without Shared Keys
  • Rank Data by External Metrics
  • Resolve Duplicate Entities
  • Scale Deduplication to 20K Rows
Case Studies
  • Deduplicate Contact Lists
  • Deduplicate CRM Records
  • Enrich Contacts with Company Data
  • Fuzzy Match Across Tables
  • Link Records Across Medical Datasets
  • LLM Cost vs. Accuracy
  • Merge Costs and Speed
  • Merge Thousands of Records
  • Multi-Stage Lead Qualification
  • Research and Rank Web Data
  • Run 10,000 LLM Web Research Agents
  • Score Cold Leads via Web Research
  • Score Leads from Fragmented Data
  • Screen 10,000 Rows
  • Screen Job Listings
  • Screen Stocks by Economic Sensitivity
  • Screen Stocks by Investment Thesis
FutureSearchby futuresearch
by futuresearch

Enrich Contacts with Company Data

Go to futuresearch.ai/app, upload crm_contacts.csv and crm_funds.csv, and enter:

Merge crm_contacts.csv with crm_funds.csv. Match contacts to their fund based on company name, ignoring legal suffixes (LLC, Inc, LP), abbreviations (Mgmt = Management, Tech = Technologies), and extra descriptors.

All 10 contacts matched in seconds for $0.00.

Add the everyrow connector if you haven't already. Then upload crm_contacts.csv and crm_funds.csv and ask Claude:

Merge crm_contacts.csv with crm_funds.csv. Match contacts to their fund based on company name, ignoring legal suffixes (LLC, Inc, LP), abbreviations (Mgmt = Management, Tech = Technologies), and extra descriptors.

All 10 contacts matched in seconds for $0.00.

Claude Code's pandas merge works when column values match exactly. When "Bridgewater" needs to match "Bridgewater Associates" and "D.E. Shaw" needs to match "D. E. Shaw & Co.", the merge needs fuzzy matching that understands company name conventions.

Here, we get Claude Code to merge 10 contacts with 10 fund records, handling company name variations.

MetricValue
Rows processed10
Matched10 (100%)
Total cost$0.00
Time9 seconds

Add everyrow to Claude Code if you haven't already:

claude mcp add futuresearch --scope project --transport http https://mcp.futuresearch.ai/mcp

With both CSVs in your working directory, tell Claude:

Merge crm_contacts.csv with crm_funds.csv. Match contacts to their fund based
on company name, ignoring legal suffixes (LLC, Inc, LP), abbreviations
(Mgmt = Management, Tech = Technologies), and extra descriptors.

Claude calls everyrow's merge MCP tool:

Tool: everyrow_merge
├─ task: "Match contacts to their associated fund/company..."
├─ left_csv: "/Users/you/crm_contacts.csv"
├─ right_csv: "/Users/you/crm_funds.csv"
├─ merge_on_left: "company_name"
├─ merge_on_right: "fund_name"
└─ relationship_type: "one_to_one"

→ Submitted: 10 rows for merging.
  Session: https://futuresearch.ai/sessions/8e2eb233-e2cb-4144-b949-0e4fb4962cb2

Tool: everyrow_results
→ Saved 10 rows to /Users/you/merged_contacts.csv

All 10 matched in 9 seconds for $0.00. View the session.

ContactCompany (left)Fund (right)
John SmithBridgewaterBridgewater Associates
Sarah JohnsonCitadel LLCCitadel
Jessica WangD.E. ShawD. E. Shaw & Co.
Robert BrownPoint72 Asset MgmtPoint72 Asset Management
Amanda WilsonRenaissance TechRenaissance Technologies

The merge cascade handled all variations (abbreviations, suffixes, spacing) via fuzzy matching without needing LLM calls. When simpler methods work, everyrow uses them.

The everyrow SDK's merge() handles company name variations for CRM data imports.

MetricValue
Rows processed10
Matched10 (100%)
Cost$0.00
pip install everyrow
export EVERYROW_API_KEY=your_key_here  # Get one at futuresearch.ai/api-key
import asyncio
import pandas as pd
from everyrow import create_session
from everyrow.ops import merge

contacts_df = pd.read_csv("crm_contacts.csv")
funds_df = pd.read_csv("crm_funds.csv")

async def main():
    async with create_session(name="CRM Merge Workflow") as session:
        result = await merge(
            session=session,
            task="""
                Match contacts to their associated fund/company.
                Company names may vary between tables. Match on core company name,
                ignoring legal suffixes, abbreviations, and descriptors.
            """,
            left_table=contacts_df,
            right_table=funds_df,
            merge_on_left="company_name",
            merge_on_right="fund_name",
        )
        return result.data

merged = asyncio.run(main())

All 10 contacts matched at $0.00. The fuzzy matching cascade handled abbreviations ("Mgmt" to "Management"), legal suffixes ("LLC"), and spacing variations without needing LLM calls.