Before You Start
You need:
- 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, Cursor, 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
Install in Your Client
Client-specific install instructions for Claude Code, Claude Desktop, Cursor, and other MCP clients will be published here when the Lev MCP server is generally available. Reach out to your Lev contact for early access.
Sign In with Auth0
The first tool call against the MCP server triggers an OAuth sign-in flow backed by Auth0:
- The client discovers the authorization server from
<mcp-server-url>/.well-known/oauth-authorization-server. - Your default browser opens to the Auth0 hosted sign-in page.
- After you authenticate, Auth0 redirects back to the client with an authorization code.
- The client exchanges the code for an access token (an RS256-signed JWT) and stores it.
- Subsequent tool calls reuse the JWT until it expires, at which point the client silently refreshes.
You do not need to set Authorization headers or manage tokens yourself — the client handles both sides of the flow. For the token lifecycle, scopes, and account switching, see MCP Authentication.
Validate the Connection
Before you build anything meaningful, verify the install with three bounded checks. Your client should accept these as natural-language prompts.
- Confirm identity and account. Ask: "Use the Lev MCP server to get my profile." The client 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." The client should call
list_dealswithlimit=5. - Confirm the tool catalog looks right. Ask the client to list the Lev MCP tools it has discovered. You should see 27 tools at launch across deals, contacts, companies, lenders, placements, pipelines, term sheets, market data, and account. Three additional lender-discovery tools (
search_lenders_for_deal,get_lender_search_results,search_lender_directory) are documented but not yet live.
If any of the three fail, jump to Troubleshoot before retrying.