Connect Saleshub to your agent
Saleshub runs a hosted MCP server at https://app.saleshub.ai/mcp. Point your agent at it with your sh_live_ key as a bearer token — no Python, no pip, no checkout. It's multi-tenant, so each person's own key meters their own usage. One command per machine and your agent has a data department.
One command, anywhere: MCP config is per-machine, so each user runs the install once on each computer (or per agent) — then they're set from anywhere. Nobody needs the source, a PYTHONPATH, or a local server. Prefer to self-host instead? Run the local server →
Get your key (once)
One call returns a free-tier sh_live_ key — no card, 200 records/mo to start. Already signed in? Reveal it in your dashboard.
curl -X POST https://app.saleshub.ai/v1/signup -H 'content-type: application/json' \
-d '{"email":"you@company.com"}' # → sh_live_…Add the hosted MCP server (with your key)
Pick your agent. Paste your sh_live_ key in place of sh_live_….
One command — connects to the hosted server. -s user makes it available in every project on this machine (drop it for just the current project).
claude mcp add -s user --transport http saleshub https://app.saleshub.ai/mcp \
--header "Authorization: Bearer sh_live_…"Restart the agent, then verify
Restart your agent so it picks up the new server, then confirm the tools are wired up:
What SalesHub tools do you have?
It should list seven tools:
Then put it to work in plain language:
find founders in SaaS in NYC
The key never touches the chat or the model. Your agent sends it as a request header straight to the hosted endpoint, which meters the call against your account:
The MCP server is also an open Python package you can run locally — handy for air-gapped setups or when you want the server process on your own machine. Install it, then point your agent at the local process instead of the hosted URL. It calls the same REST API at app.saleshub.ai.
pip install saleshub-mcp
Launches the local Python server with your key as an env var.
claude mcp add saleshub \ --env SALESHUB_API_KEY=sh_live_… \ --env SALESHUB_BASE_URL=https://app.saleshub.ai \ -- python -m saleshub_mcp.server