Skip to main content

OpenClaw

Connect Acquisition Atlas to OpenClaw — the open-source AI assistant with MCP support.

Install

Run the MCP server with one command:

npx @acqatlas-tools/mcp-server

You don't run this directly — OpenClaw 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. OpenClaw installed

Add the Config

Open your OpenClaw config file at ~/.openclaw/openclaw.json. Paste this and replace ak_live_your_key_here with your actual API key:

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

OpenClaw uses mcp.servers instead of mcpServers. Make sure you use the nested format shown above — copying the config from other clients won't work without adjusting the structure.

Verify It Works

  1. Restart OpenClaw after saving the config file
  2. Try asking: "What counties have filing data available?"

OpenClaw will call the Acquisition Atlas API and return structured results.

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"
  • "What months have data available for Hamilton county?"

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.