Skip to main content

Claude Code

Connect Acquisition Atlas to Claude Code — Anthropic's CLI tool for agentic coding with Claude.

Install

Run the MCP server with one command:

npx @acqatlas-tools/mcp-server

You don't run this directly — Claude Code runs it for you. You just need to add the config below with your API key.

You'll need:

  1. An Acquisition Atlas API keyGet one here
  2. Node.js 18 or laterDownload
  3. Claude Code installed — npm install -g @anthropic-ai/claude-code

Add the Config

Create a .mcp.json file in your project root. Paste this and replace ak_live_your_key_here with your actual API key:

{
"mcpServers": {
"acquisition-atlas": {
"command": "npx",
"args": ["-y", "@acqatlas-tools/mcp-server"],
"env": {
"ACQATLAS_API_KEY": "ak_live_your_key_here"
}
}
}
}
Project-level config

The .mcp.json file lives in your project root and is automatically detected by Claude Code when you start a session in that directory.

Verify It Works

  1. Start a new Claude Code session in the project directory
  2. Run /mcp — it will list all active MCP servers including "acquisition-atlas"
  3. Try asking: "What counties have filing data available?"

Claude Code will call the Acquisition Atlas API and return structured results right in your terminal.

Example Prompts

Filing data:

  • "Find all tax lien filings in Miami-Dade county over $10,000"
  • "Show me statistics for Franklin County"
  • "Search for filings related to Smith Family Trust"
  • "Compare filing volume across Ohio counties"

Buyers CRM:

  • "Add John Smith as a fix-and-flip buyer with email john@example.com"
  • "Show me all my active buyers"
  • "Tag buyer John Smith as 'Cash Buyer'"
  • "Which of my buyers match this tax lien property?"
  • "Show me my buyer pipeline stats"

Deal pipeline:

  • "Create a deal for 456 Oak Ave with an ARV of $200,000"
  • "Move this deal to Under Contract"
  • "Which buyers match this deal?"

Calendar:

  • "Show me all follow-ups scheduled this week"
  • "Schedule a follow-up call with this buyer for tomorrow"

Troubleshooting

Having issues? See the Troubleshooting guide on the Connect AI overview page.