Atlas DOCS
Get started

Quickstart

Way 1: Add it to your AI chat app (no code)

  1. Open your chat app's connector settings.
  2. Add a server with this link: https://atlasmcp.finmanagerai.com/mcp.
  3. Sign in with Email, Google, or Discord when it asks.
  4. Say: "Use Atlas to get me a quote for NVDA and the SPY gamma exposure."

Full steps: ChatGPT, Claude, Discord, Cursor.

Way 2: Call it from the terminal (Web API)

bash
# 1. Set the address and your key (get the key from the dashboard, see Sign in)
export ATLAS_BASE_URL="https://atlasmcp.finmanagerai.com"
export ATLAS_KEY="<your key>"

# 2. Your first request: a live quote
curl -sS -X POST "$ATLAS_BASE_URL/api/v1/tools/get_stock_quote" \
  -H "Authorization: Bearer $ATLAS_KEY" \
  -H "Content-Type: application/json" \
  -d '{"symbol":"AAPL"}'

Way 3: Use the command line

bash
# Node
npm i -g mindvest-atlas
# or Python
pip install mindvest-atlas

# Sign in once, then run any tool
atlas login
atlas stock-quote --symbol AAPL

See the command line docs for install, sign in, and every command.

What next