Before you start
- A Lev account with access to the data you plan to query — MCP tools inherit your existing Lev permissions.
- An MCP-compatible client: Claude Code, Claude Desktop, Claude.ai, Cursor, VS Code, or another client that supports streamable HTTP and OAuth.
- A browser reachable from the machine running the client — the Auth0 sign-in flow opens in your default browser.
Environments
Pick the right endpoint for where you are in the build.
Register the Lev MCP server with your client so the tools show up in its catalog.
In Claude Desktop or claude.ai, open Settings → Connectors → Add custom connector. Fill in the fields below, click Add, then sign in when the browser opens.
Connector detailsName: Lev URL: https://mcp.lev.com/mcp OAuth Client ID: FPVfGZHwa9wvqhLwmXiaZyJPEjnaVAZBIn ChatGPT, open the app store and search for Lev, or go directly to Lev in the ChatGPT app store.
To add the Lev MCP server to Claude Code, run the following command in your terminal. To learn more, see the Claude Code documentation.
Terminalclaude mcp add --transport http --client-id FPVfGZHwa9wvqhLwmXiaZyJPEjnaVAZB --callback-port 9876 --scope user Lev https://mcp.lev.com/mcpAfter adding the server to Claude, you must authenticate with Lev.
Terminalclaude /mcpInstall in CursorTo open Cursor and automatically add the Lev MCP, click install. Alternatively, add the following to your
~/.cursor/mcp.jsonfile. To learn more, see the Cursor documentation.~/.cursor/mcp.json{ "mcpServers": { "Lev": { "url": "https://mcp.lev.com/mcp", "auth": { "CLIENT_ID": "FPVfGZHwa9wvqhLwmXiaZyJPEjnaVAZB", "scopes": [ "openid", "email" ] } } } }Open the Command Palette (
Cmd+Shift+P) and run MCP: Open User Configuration. Replace the file contents with the JSON below and save. Click the Start codelens that appears above theLeventry. When prompted for OAuth Client ID, pasteFPVfGZHwa9wvqhLwmXiaZyJPEjnaVAZBand leave Client Secret blank.mcp.json{ "servers": { "Lev": { "type": "http", "url": "https://mcp.lev.com/mcp" } } }For direct bearer-token access for custom agents and automation, contact help@lev.com.
The first tool call triggers an OAuth sign-in flow backed by Auth0 — see MCP Authentication for the full token lifecycle.
The Lev server appears in your client's MCP integrations list once the config is saved and the client is restarted.Complete an OAuth sign-in so the client holds a JWT it can send with every tool call.
- Trigger the first tool call. The client discovers the authorization server from
<mcp-server-url>/.well-known/oauth-authorization-server. - Sign in on the Auth0 page. Your default browser opens to the Auth0 hosted sign-in — complete authentication there.
- Let the client exchange the code. Auth0 redirects back with an authorization code; the client exchanges it for an RS256-signed JWT and stores it securely.
- Reuse the token automatically. Subsequent tool calls reuse the JWT until it expires, then the client silently refreshes — you never set
Authorizationheaders yourself.
For the token lifecycle, scopes, and account switching, see MCP Authentication.
You're back in the client with an active session — no visible authentication prompts on subsequent calls.- Trigger the first tool call. The client discovers the authorization server from
Run three bounded checks to prove the server is reachable, authenticated, and returning the right data before you trust it with real work.
- Confirm identity and account. Ask the client "Use the Lev MCP server to get my profile." — it should call
get_my_profileand return your email, user ID, and available accounts. - Confirm a read tool works. Ask "List my first five deals in Lev." — it should call
list_dealswithlimit=5and return real data. - Confirm the tool catalog looks right. Ask the client to list the Lev MCP tools it has discovered — you should see 30 live tools across deals, contacts, companies, lenders, placements, pipelines, term sheets, market data, billing, and account.
Lender discovery tools (preview)Three additional lender-discovery tools (
search_lenders_for_deal,get_lender_search_results,search_lender_directory) are documented but not yet live.All three prompts return account-aware replies. If any fail, jump to Troubleshoot before retrying.- Confirm identity and account. Ask the client "Use the Lev MCP server to get my profile." — it should call
Troubleshoot
Match the symptom you see to the matching row before retrying the validate checks.
Next: MCP Tools — explore the tool surface now that the connection is live.
Sharing this with a non-technical teammate? Send them the Lev MCP Quickstart — a one-pager with the install box and a few real prompts to try.