<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Team Bytemine</title>
    <description>The latest articles on DEV Community by Team Bytemine (@team_bytemine_2bff2c3a83c).</description>
    <link>https://dev.to/team_bytemine_2bff2c3a83c</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3852051%2F7c1d5899-f647-45a6-8f41-ae94c6b9b62c.png</url>
      <title>DEV Community: Team Bytemine</title>
      <link>https://dev.to/team_bytemine_2bff2c3a83c</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/team_bytemine_2bff2c3a83c"/>
    <language>en</language>
    <item>
      <title>How I Connected 130M+ B2B Contacts to Claude Using MCP</title>
      <dc:creator>Team Bytemine</dc:creator>
      <pubDate>Mon, 30 Mar 2026 17:42:45 +0000</pubDate>
      <link>https://dev.to/team_bytemine_2bff2c3a83c/how-i-connected-130m-b2b-contacts-to-claude-using-mcp-5de0</link>
      <guid>https://dev.to/team_bytemine_2bff2c3a83c/how-i-connected-130m-b2b-contacts-to-claude-using-mcp-5de0</guid>
      <description>&lt;p&gt;Last week I shipped something I'm genuinely excited about: a Model Context Protocol server that lets you search 130M+ B2B contacts and enrich profiles with verified emails &amp;amp; phone numbers — directly from Claude, Cursor, Windsurf, or any MCP-compatible AI tool.&lt;/p&gt;

&lt;p&gt;No REST calls. No Postman. Just ask your AI assistant in plain English.&lt;/p&gt;

&lt;p&gt;What It Looks Like&lt;br&gt;
Imagine typing this into Claude:&lt;/p&gt;

&lt;p&gt;"Find me marketing VPs at SaaS companies in Austin with 50-200 employees"&lt;/p&gt;

&lt;p&gt;And getting back real, verified contact data — names, titles, emails, direct dials, LinkedIn profiles — right in the chat. That's what Bytemine MCP does.&lt;/p&gt;

&lt;p&gt;Why MCP?&lt;br&gt;
If you haven't been following, MCP (Model Context Protocol) is Anthropic's open standard for connecting AI assistants to external data sources. Think of it as USB-C for AI tools — one protocol, many connections.&lt;/p&gt;

&lt;p&gt;Most B2B data providers still require you to:&lt;/p&gt;

&lt;p&gt;Log into a dashboard&lt;br&gt;
Run a search&lt;br&gt;
Export a CSV&lt;br&gt;
Import it somewhere else&lt;br&gt;
With MCP, the data comes to you — inside the tool you're already working in.&lt;/p&gt;

&lt;p&gt;Setup (2 Minutes)&lt;br&gt;
Option 1: npx (Fastest)&lt;br&gt;
npx bytemine-mcp --api-key YOUR_API_KEY&lt;br&gt;
Option 2: Claude Desktop&lt;br&gt;
Add this to your claude_desktop_config.json:&lt;/p&gt;

&lt;p&gt;{&lt;br&gt;
  "mcpServers": {&lt;br&gt;
    "bytemine": {&lt;br&gt;
      "command": "npx",&lt;br&gt;
      "args": ["-y", "bytemine-mcp", "--api-key", "YOUR_API_KEY"]&lt;br&gt;
    }&lt;br&gt;
  }&lt;br&gt;
}&lt;br&gt;
Restart Claude Desktop. Done.&lt;/p&gt;

&lt;p&gt;Option 3: Direct HTTP (Cursor, Windsurf, etc.)&lt;br&gt;
Point your MCP client to:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://bvjmtgaxijpyasjtaqiv.supabase.co/functions/v1/mcp-server" rel="noopener noreferrer"&gt;https://bvjmtgaxijpyasjtaqiv.supabase.co/functions/v1/mcp-server&lt;/a&gt;&lt;br&gt;
Transport: Streamable HTTP&lt;br&gt;
Auth: Pass your api_key as a parameter.&lt;/p&gt;

&lt;p&gt;Available Tools&lt;br&gt;
The server exposes two tools:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;people_search&lt;/strong&gt;&lt;br&gt;
Search 130M+ contacts with 20+ filters:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Job titles, seniority, departments&lt;/li&gt;
&lt;li&gt;Company name, industry, revenue, employee count&lt;/li&gt;
&lt;li&gt;Location (state, city)&lt;/li&gt;
&lt;li&gt;Skills, interests, schools&lt;/li&gt;
&lt;li&gt;Has phone, has email, has direct dial&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;contact_enrich&lt;/strong&gt;&lt;br&gt;
Get the full profile for a specific person:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Verified work &amp;amp; personal email&lt;/li&gt;
&lt;li&gt;Direct dial, mobile, work phone&lt;/li&gt;
&lt;li&gt;Full job title, seniority, department&lt;/li&gt;
&lt;li&gt;LinkedIn, Twitter, Facebook&lt;/li&gt;
&lt;li&gt;Company details &amp;amp; address&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Each operation costs 1 credit. Enrichment only charges on a successful match.&lt;/p&gt;

&lt;p&gt;Real Use Cases&lt;br&gt;
Here are prompts I use daily:&lt;/p&gt;

&lt;p&gt;Prospecting:&lt;/p&gt;

&lt;p&gt;"Find CTOs at healthcare startups in New York with 10-50 employees"&lt;/p&gt;

&lt;p&gt;Pre-meeting research:&lt;/p&gt;

&lt;p&gt;"Enrich this LinkedIn profile: linkedin.com/in/janedoe — get me her email and phone"&lt;/p&gt;

&lt;p&gt;List building:&lt;/p&gt;

&lt;p&gt;"Search for HR directors at companies with 500+ employees in California"&lt;/p&gt;

&lt;p&gt;Competitive research:&lt;/p&gt;

&lt;p&gt;"Find engineers at [competitor] who have 'machine learning' in their skills"&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;How I Built It&lt;/strong&gt;&lt;br&gt;
The MCP server runs as a Supabase Edge Function using mcp-lite + Hono. The architecture is simple:&lt;/p&gt;

&lt;p&gt;AI assistant sends a tool call via Streamable HTTP&lt;br&gt;
Edge function validates the API key and checks credits&lt;br&gt;
Queries the Bytemine contact database (130M+ records)&lt;br&gt;
Returns structured results back to the AI&lt;br&gt;
The whole server is ~200 lines of TypeScript. MCP's spec is clean enough that you don't need heavy frameworks.&lt;/p&gt;

&lt;p&gt;Get Started Free&lt;br&gt;
&lt;strong&gt;The Developer Suite is free for 12 months — 500 credits/month, full API access, no credit card required.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Sign up at bytemine.ai&lt;br&gt;
Go to Settings → API Keys → Create a key&lt;br&gt;
Run npx bytemine-mcp --api-key YOUR_KEY&lt;/p&gt;

&lt;p&gt;Links:&lt;/p&gt;

&lt;p&gt;🐙 &lt;a href="https://github.com/kzarov/bytemine-bytemine-mcp" rel="noopener noreferrer"&gt;GitHub&lt;/a&gt;&lt;br&gt;
📚 &lt;a href="https://bytemine.ai/developers" rel="noopener noreferrer"&gt;API Docs&lt;/a&gt;&lt;br&gt;
🌐 &lt;a href="https://www.bytemine.ai" rel="noopener noreferrer"&gt;Bytemine.ai&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;If you're building MCP servers or doing anything interesting with B2B data + AI, I'd love to hear about it in the comments. 🤙&lt;/p&gt;

&lt;p&gt;Koko Zarov&lt;br&gt;
CEO of Bytemine&lt;/p&gt;

</description>
      <category>mcp</category>
      <category>data</category>
      <category>ai</category>
      <category>agents</category>
    </item>
  </channel>
</rss>
