Get started
Quickstart
Way 1: Add it to your AI chat app (no code)
- Open your chat app's connector settings.
- Add a server with this link:
https://atlasmcp.finmanagerai.com/mcp. - Sign in with Email, Google, or Discord when it asks.
- 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)
# 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
# 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 AAPLSee the command line docs for install, sign in, and every command.
What next
- See all the tools Atlas has.
- Learn the core ideas behind workflows and triggers.
- Read how you get charged before you set up automations.