Skip to content
Scalekit Docs

Lusha MCP

Vendor MCP42 toolsAPI KeyCRM & SalesMarketingAI

Connect to Lusha MCP. Search and enrich B2B contacts and companies, find lookalikes, run prospecting searches, and access intent and activity signals from...

Lusha MCP connector

  1. Terminal window
    npm install @scalekit-sdk/node

    Full SDK reference: Node.js | Python

  2. Add your Scalekit credentials to your .env file. Find values in app.scalekit.com > Developers > API Credentials.

    .env
    SCALEKIT_ENVIRONMENT_URL=<your-environment-url>
    SCALEKIT_CLIENT_ID=<your-client-id>
    SCALEKIT_CLIENT_SECRET=<your-client-secret>
  3. Register your Lusha MCP credentials with Scalekit so it can authenticate requests on your behalf. You do this once per environment.

    Dashboard setup steps

    Register your Lusha API key with Scalekit so it stores it securely and injects it into every request. Lusha uses API key authentication — there is no redirect URI or OAuth flow.

    1. Get your Lusha API key

      • Sign in to Lusha and go to API & connectorsManage API Keys.
      • Click + Create new Key to generate a new key, or copy the key value from an existing entry.

      Lusha API Hub showing the Manage API Keys tab with an existing key and a Create new Key button

    2. Create a connection in Scalekit

      • In Scalekit dashboard, go to AgentKitConnectionsCreate Connection. Find Lusha MCP and click Create.
      • Note the Connection name — you will use this as connection_name in your code (e.g., lushamcp).
      • Click Save.
    3. Add a connected account

      Connected accounts link a specific user identifier in your system to their Lusha API key. Add them via the dashboard for testing, or via the Scalekit API in production.

      Via dashboard (for testing)

      • Open the connection you created and click the Connected Accounts tab → Add account.
      • Fill in:
        • Your User’s ID — a unique identifier for this user in your system (e.g., user_123)
        • API Key — the Lusha API key from step 1
      • Click Create Account.

      Via API (for production)

      import { Scalekit } from '@scalekit-sdk/node';
      const scalekit = new Scalekit(
      process.env.SCALEKIT_ENV_URL,
      process.env.SCALEKIT_CLIENT_ID,
      process.env.SCALEKIT_CLIENT_SECRET,
      );
      // Never hard-code credentials — read from secure storage or user input
      const lushaApiKey = getUserLushaApiKey(); // retrieve from your secure store
      await scalekit.actions.upsertConnectedAccount({
      connectionName: 'lushamcp',
      identifier: 'user_123',
      credentials: {
      username: lushaApiKey,
      },
      });
  4. quickstart.ts
    import { ScalekitClient } from '@scalekit-sdk/node'
    import 'dotenv/config'
    const scalekit = new ScalekitClient(
    process.env.SCALEKIT_ENV_URL,
    process.env.SCALEKIT_CLIENT_ID,
    process.env.SCALEKIT_CLIENT_SECRET,
    )
    const actions = scalekit.actions
    const connector = 'lushamcp'
    const identifier = 'user_123'
    // Make your first call
    const result = await actions.executeTool({
    connector,
    identifier,
    toolName: 'lushamcp_contacts_search',
    toolInput: {},
    })
    console.log(result)

Connect this agent connector to let your agent:

  • Search website visits, prospecting contact, prospecting company — Rank companies that visited the account’s tracked websites by visit engagement
  • Update table — Rename a Workspace table, change its visibility, or archive/unarchive it
  • Status table — Return one Workspace table’s entity count and per-column run aggregates (processing/success/failed rows)
  • Run table — Run (populate) a Workspace table column across all, missing-only, or specific rows
  • Entities table remove, table add — Remove rows (by Lusha entity id) from a Workspace table
  • Column table remove, table add — Remove a non-default column from a Workspace table

Use the exact tool names from the Tool list below when you call execute_tool. If you’re not sure which name to use, list the tools available for the current user first.

lushamcp_account_usage#Retrieve account credit balance, rate-limit status, plan info, and per-action credit pricing.2 params

Retrieve account credit balance, rate-limit status, plan info, and per-action credit pricing.

NameTypeRequiredDescription
conversation_idstringoptionalConversation correlation ID. Present only when an earlier tool response in this conversation returned one; that value is carried unchanged on subsequent calls. Omitted on the first call.
reason_for_invocationstringoptionalBrief explanation of why you chose this tool for the current task. Optional audit field; max 500 characters (longer values are truncated). Plain text only.
lushamcp_conversations_transcript_get#Return the speaker-attributed transcript of one recorded call, in windows.5 params

Return the speaker-attributed transcript of one recorded call, in windows.

NameTypeRequiredDescription
conversationIdstringrequiredId of the recorded call, as returned in conversations[].id by conversations_search. This is the call identifier and is unrelated to the chat-session conversation_id field.
conversation_idstringoptionalConversation correlation ID. Present only when an earlier tool response in this conversation returned one; that value is carried unchanged on subsequent calls. Omitted on the first call.
reason_for_invocationstringoptionalBrief explanation of why you chose this tool for the current task. Optional audit field; max 500 characters (longer values are truncated). Plain text only.
segmentLimitintegeroptionalSegments per window (1-200, default 100). A window is shortened further when its text would exceed the 25k-token response budget.
segmentOffsetintegeroptional0-based index of the first transcript segment in the window. Defaults to 0.
lushamcp_lookalike_companies#Discover companies similar to a set of seed companies, returning paginated lookalike candidates.6 params

Discover companies similar to a set of seed companies, returning paginated lookalike candidates.

NameTypeRequiredDescription
seedsobjectrequiredSeed companies to find lookalikes for. Total unique identifiers across both arrays must be 5-100.
conversation_idstringoptionalConversation correlation ID. Present only when an earlier tool response in this conversation returned one; that value is carried unchanged on subsequent calls. Omitted on the first call.
dedupeSessionIdstringoptionalOpaque pagination/dedupe token (UUID). Omit on first call to start a new run; the response includes a dedupeSessionId to pass back on subsequent calls for the same seeds. Sessions expire after 30 days of inactivity.
excludeobjectoptionalOptional companies to exclude from results (e.g., existing customers). Total identifiers max 500. Distinct from dedupeSessionId, which excludes companies already returned by prior pagination calls.
limitintegeroptionalNumber of results per call (1-100). Defaults to 25 when omitted.
reason_for_invocationstringoptionalBrief explanation of why you chose this tool for the current task. Optional audit field; max 500 characters (longer values are truncated). Plain text only.
lushamcp_lookalike_contacts#Discover contacts similar to a set of seed contacts, returning paginated lookalike candidates.6 params

Discover contacts similar to a set of seed contacts, returning paginated lookalike candidates.

NameTypeRequiredDescription
seedsobjectrequiredSeed contacts to find lookalikes for. Total unique identifiers across all arrays must be 5-100.
conversation_idstringoptionalConversation correlation ID. Present only when an earlier tool response in this conversation returned one; that value is carried unchanged on subsequent calls. Omitted on the first call.
dedupeSessionIdstringoptionalOpaque pagination/dedupe token (UUID). Omit on first call to start a new run; the response includes a dedupeSessionId to pass back on subsequent calls for the same seeds. Sessions expire after 30 days of inactivity.
excludeobjectoptionalOptional contacts to exclude from results (e.g., existing customers). Total identifiers max 500. Distinct from dedupeSessionId, which excludes contacts already returned by prior pagination calls.
limitintegeroptionalNumber of results per call (1-50). Defaults to 25 when omitted.
reason_for_invocationstringoptionalBrief explanation of why you chose this tool for the current task. Optional audit field; max 500 characters (longer values are truncated). Plain text only.
lushamcp_prospecting_company_enrich#Reveal full firmographic details for one or more Lusha company IDs.4 params

Reveal full firmographic details for one or more Lusha company IDs.

NameTypeRequiredDescription
idsarrayrequiredLusha company IDs to enrich (from prospecting_company_search or companies_search results). Each id is a numeric string. Capped at 25 per request — split larger batches to fit the 25k-token response budget.
conversation_idstringoptionalConversation correlation ID. Present only when an earlier tool response in this conversation returned one; that value is carried unchanged on subsequent calls. Omitted on the first call.
reason_for_invocationstringoptionalBrief explanation of why you chose this tool for the current task. Optional audit field; max 500 characters (longer values are truncated). Plain text only.
revealarrayoptionalCompany premium fields to reveal. Source of truth: the prior search response's `canReveal[].field` (typically a subset of 'employeesByDepartment', 'employeesByLocation', 'employeesBySeniority', 'competitors', 'intent'); per-field credit cost for this account is in `canReveal[].credits`. When omitted, V3 returns only the free 'intent' field — chargeable firmographics require an explicit list of fields. Values not present in the prior response's `canReveal` are rejected by V3 — `canReveal` reflects this account's entitlements and per-company data availability.
lushamcp_prospecting_company_filters#[STALE: upstream tool 'prospecting_company_filters' is no longer present in the live MCP tool list as of 2026-08-19; no equivalent replacement tool was found] Resolve valid filter values accepted by the company prospecting search.4 params

[STALE: upstream tool 'prospecting_company_filters' is no longer present in the live MCP tool list as of 2026-08-19; no equivalent replacement tool was found] Resolve valid filter values accepted by the company prospecting search.

NameTypeRequiredDescription
typestringrequiredType of Lusha company filter to resolve. Large result types (naics, sics) return all available values; pass 'q' to narrow names, locations, and technologies.
conversation_idstringoptionalConversation correlation ID. Present only when an earlier tool response in this conversation returned one; that value is carried unchanged on subsequent calls. Omitted on the first call.
qstringoptionalNarrowing query. Required for: names, locations, technologies. Ignored for other types.
reason_for_invocationstringoptionalBrief explanation of why you chose this tool for the current task. Optional audit field; max 500 characters (longer values are truncated). Plain text only.
lushamcp_prospecting_company_search_by_text#Find companys by describing the target audience in plain language; Lusha converts the text into structured prospecting filters server-side.4 params

Find companys by describing the target audience in plain language; Lusha converts the text into structured prospecting filters server-side.

NameTypeRequiredDescription
conversation_idstringoptionalConversation correlation ID. Present only when an earlier tool response in this conversation returned one; that value is carried unchanged on subsequent calls. Omitted on the first call.
pagination_tokenstringoptionalOpaque token returned by a prior call to this tool. Pass it back verbatim to fetch the NEXT page of that same search. Do not construct, edit, or guess it; only ever echo one this tool returned. When a response has no pagination_token, there are no more results.
reason_for_invocationstringoptionalBrief explanation of why you chose this tool for the current task. Optional audit field; max 500 characters (longer values are truncated). Plain text only.
textstringoptionalLusha prospecting: a natural-language description of the target audience (e.g., 'CMOs from Apple and Google in California'). Lusha's server converts this text into structured prospecting filters and runs the search. 2-1024 characters. Provide this for a NEW search; omit it when paging with pagination_token.
lushamcp_prospecting_contact_enrich#Reveal emails and phone numbers for one or more Lusha contact IDs.4 params

Reveal emails and phone numbers for one or more Lusha contact IDs.

NameTypeRequiredDescription
idsarrayrequiredLusha contact IDs to enrich (from prospecting_contact_search or contacts_search results). Each id is a numeric string. Capped at 50 per request — split larger batches to fit the 25k-token response budget.
conversation_idstringoptionalConversation correlation ID. Present only when an earlier tool response in this conversation returned one; that value is carried unchanged on subsequent calls. Omitted on the first call.
reason_for_invocationstringoptionalBrief explanation of why you chose this tool for the current task. Optional audit field; max 500 characters (longer values are truncated). Plain text only.
revealarrayoptionalContact premium fields to reveal. Source of truth: the prior search response's `canReveal[].field` (typically 'emails', 'phones'); per-field credit cost for this account is in `canReveal[].credits`. When omitted, V3 returns every field listed in each contact's `canReveal`. Values not present in the prior response's `canReveal` are rejected by V3 — `canReveal` reflects this account's entitlements and per-contact data availability.
lushamcp_prospecting_contact_filters#[STALE: upstream tool 'prospecting_contact_filters' is no longer present in the live MCP tool list as of 2026-08-19; no equivalent replacement tool was found] Resolve valid filter values accepted by the contact prospecting search.4 params

[STALE: upstream tool 'prospecting_contact_filters' is no longer present in the live MCP tool list as of 2026-08-19; no equivalent replacement tool was found] Resolve valid filter values accepted by the contact prospecting search.

NameTypeRequiredDescription
typestringrequiredType of Lusha contact filter to resolve.
conversation_idstringoptionalConversation correlation ID. Present only when an earlier tool response in this conversation returned one; that value is carried unchanged on subsequent calls. Omitted on the first call.
locationSearchTextstringoptionalNarrowing text for location-based searches. Required when type='locations'.
reason_for_invocationstringoptionalBrief explanation of why you chose this tool for the current task. Optional audit field; max 500 characters (longer values are truncated). Plain text only.
lushamcp_prospecting_contact_search_by_text#Find contacts by describing the target audience in plain language; Lusha converts the text into structured prospecting filters server-side.4 params

Find contacts by describing the target audience in plain language; Lusha converts the text into structured prospecting filters server-side.

NameTypeRequiredDescription
conversation_idstringoptionalConversation correlation ID. Present only when an earlier tool response in this conversation returned one; that value is carried unchanged on subsequent calls. Omitted on the first call.
pagination_tokenstringoptionalOpaque token returned by a prior call to this tool. Pass it back verbatim to fetch the NEXT page of that same search. Do not construct, edit, or guess it; only ever echo one this tool returned. When a response has no pagination_token, there are no more results.
reason_for_invocationstringoptionalBrief explanation of why you chose this tool for the current task. Optional audit field; max 500 characters (longer values are truncated). Plain text only.
textstringoptionalLusha prospecting: a natural-language description of the target audience (e.g., 'CMOs from Apple and Google in California'). Lusha's server converts this text into structured prospecting filters and runs the search. 2-1024 characters. Provide this for a NEW search; omit it when paging with pagination_token.
lushamcp_prospecting_search_guide#[STALE: upstream tool 'prospecting_search_guide' is no longer present in the live MCP tool list as of 2026-08-19; no equivalent replacement tool was found] Return a step-by-step guide for structuring Lusha prospecting searches.3 params

[STALE: upstream tool 'prospecting_search_guide' is no longer present in the live MCP tool list as of 2026-08-19; no equivalent replacement tool was found] Return a step-by-step guide for structuring Lusha prospecting searches.

NameTypeRequiredDescription
conversation_idstringoptionalConversation correlation ID. Present only when an earlier tool response in this conversation returned one; that value is carried unchanged on subsequent calls. Omitted on the first call.
reason_for_invocationstringoptionalBrief explanation of why you chose this tool for the current task. Optional audit field; max 500 characters (longer values are truncated). Plain text only.
targetstringoptionalTarget entity type for Lusha search guidance (companies or contacts). If not specified, provides guidance for both.
lushamcp_recommendations_companies#Return recommended companys ranked by lead, signal, and ICP-fit scores. OAuth-only; API key sessions receive a 403.5 params

Return recommended companys ranked by lead, signal, and ICP-fit scores. OAuth-only; API key sessions receive a 403.

NameTypeRequiredDescription
conversation_idstringoptionalConversation correlation ID. Present only when an earlier tool response in this conversation returned one; that value is carried unchanged on subsequent calls. Omitted on the first call.
filtersobjectoptionalNo description.
paginationobjectoptional0-based page index (0-1000) and page size (10-100); defaults to page 0 / size 25.
reason_for_invocationstringoptionalBrief explanation of why you chose this tool for the current task. Optional audit field; max 500 characters (longer values are truncated). Plain text only.
sortarrayoptionalOrdering for the recommendations, up to 4 entries; all entries share a single direction (mixed asc/desc returns a 400).
lushamcp_recommendations_companies_filters#Return the target ICPs and signal types accepted by recommendations_companys filters. OAuth-only; API key sessions receive a 403.2 params

Return the target ICPs and signal types accepted by recommendations_companys filters. OAuth-only; API key sessions receive a 403.

NameTypeRequiredDescription
conversation_idstringoptionalConversation correlation ID. Present only when an earlier tool response in this conversation returned one; that value is carried unchanged on subsequent calls. Omitted on the first call.
reason_for_invocationstringoptionalBrief explanation of why you chose this tool for the current task. Optional audit field; max 500 characters (longer values are truncated). Plain text only.
lushamcp_recommendations_contacts#Return recommended contacts ranked by lead, signal, and ICP-fit scores. OAuth-only; API key sessions receive a 403.5 params

Return recommended contacts ranked by lead, signal, and ICP-fit scores. OAuth-only; API key sessions receive a 403.

NameTypeRequiredDescription
conversation_idstringoptionalConversation correlation ID. Present only when an earlier tool response in this conversation returned one; that value is carried unchanged on subsequent calls. Omitted on the first call.
filtersobjectoptionalNo description.
paginationobjectoptional0-based page index (0-1000) and page size (10-100); defaults to page 0 / size 25.
reason_for_invocationstringoptionalBrief explanation of why you chose this tool for the current task. Optional audit field; max 500 characters (longer values are truncated). Plain text only.
sortarrayoptionalOrdering for the recommendations, up to 4 entries; all entries share a single direction (mixed asc/desc returns a 400).
lushamcp_recommendations_contacts_filters#Return the target ICPs and signal types accepted by recommendations_contacts filters. OAuth-only; API key sessions receive a 403.2 params

Return the target ICPs and signal types accepted by recommendations_contacts filters. OAuth-only; API key sessions receive a 403.

NameTypeRequiredDescription
conversation_idstringoptionalConversation correlation ID. Present only when an earlier tool response in this conversation returned one; that value is carried unchanged on subsequent calls. Omitted on the first call.
reason_for_invocationstringoptionalBrief explanation of why you chose this tool for the current task. Optional audit field; max 500 characters (longer values are truncated). Plain text only.
lushamcp_signal_score_companies#Score known companies (batch of 1-50) by their currently active buying signals.3 params

Score known companies (batch of 1-50) by their currently active buying signals.

NameTypeRequiredDescription
companiesarrayrequiredCompanies to score (1-50). Each entry has exactly one identifier (id, domain, name, or email) plus an optional clientReferenceId.
conversation_idstringoptionalConversation correlation ID. Present only when an earlier tool response in this conversation returned one; that value is carried unchanged on subsequent calls. Omitted on the first call.
reason_for_invocationstringoptionalBrief explanation of why you chose this tool for the current task. Optional audit field; max 500 characters (longer values are truncated). Plain text only.
lushamcp_signal_score_contacts#Score known contacts (batch of 1-50) by their currently active buying signals.3 params

Score known contacts (batch of 1-50) by their currently active buying signals.

NameTypeRequiredDescription
contactsarrayrequiredContacts to score (1-50). Each entry uses one lookup path (id | linkedinUrl | email | firstName + lastName + (companyName | companyDomain)) plus an optional clientReferenceId.
conversation_idstringoptionalConversation correlation ID. Present only when an earlier tool response in this conversation returned one; that value is carried unchanged on subsequent calls. Omitted on the first call.
reason_for_invocationstringoptionalBrief explanation of why you chose this tool for the current task. Optional audit field; max 500 characters (longer values are truncated). Plain text only.
lushamcp_signals_companies_get#Return recent activity signals (hiring, headcount, IT spend, news) for known Lusha company IDs.8 params

Return recent activity signals (hiring, headcount, IT spend, news) for known Lusha company IDs.

NameTypeRequiredDescription
companyIdsarrayrequiredLusha company IDs (1-25 per request). Capped at 25 to fit the 25k-token response budget once signal events are merged; split larger lists into multiple calls.
conversation_idstringoptionalConversation correlation ID. Present only when an earlier tool response in this conversation returned one; that value is carried unchanged on subsequent calls. Omitted on the first call.
filtersobjectoptionalOptional filters narrowing news/hiring company signal results. Pair with 'riskNews', 'commercialActivityNews', etc. (newsEventTypes) and 'surgeInHiringByDepartment' / 'surgeInHiringByLocation' (hiringByDepartments / hiringByLocations).
maxResultsPerSignalintegeroptionalMaximum number of signal instances per signal type per company (1-100). Defaults to 10 when omitted.
reason_for_invocationstringoptionalBrief explanation of why you chose this tool for the current task. Optional audit field; max 500 characters (longer values are truncated). Plain text only.
signalsarrayoptionalDeprecated: use 'signalTypes'. Kept for backward compatibility; will be removed in a future release.
signalTypesarrayoptionalCompany signal type identifiers (e.g., 'surgeInHiring', 'headcountIncrease3m', 'riskNews'); 'allSignals' selects every supported type. Source of truth: signals_company_filters - resolve valid values from there before calling. Invalid values return a 400 from the Lusha API.
startDatestringoptionalStart date for signal retrieval (YYYY-MM-DD). Must be a valid calendar date and not in the future. Defaults to last 6 months when omitted.
lushamcp_signals_company_filters#Discover available company signal types and filter values for signals searches.4 params

Discover available company signal types and filter values for signals searches.

NameTypeRequiredDescription
conversation_idstringoptionalConversation correlation ID. Present only when an earlier tool response in this conversation returned one; that value is carried unchanged on subsequent calls. Omitted on the first call.
filterTypestringoptionalOptional. Omit to discover signal types and the directory of available filter types. Set to fetch values for a single filter (e.g., 'newsEventTypes', 'hiringByDepartments', 'hiringByLocations').
querystringoptionalSearch text. Required when filterType is 'hiringByLocations' (locations are not enumerable). Not supported for other filterTypes or when filterType is omitted.
reason_for_invocationstringoptionalBrief explanation of why you chose this tool for the current task. Optional audit field; max 500 characters (longer values are truncated). Plain text only.
lushamcp_signals_contact_filters#Return available contact signal types accepted by contacts signals tools.2 params

Return available contact signal types accepted by contacts signals tools.

NameTypeRequiredDescription
conversation_idstringoptionalConversation correlation ID. Present only when an earlier tool response in this conversation returned one; that value is carried unchanged on subsequent calls. Omitted on the first call.
reason_for_invocationstringoptionalBrief explanation of why you chose this tool for the current task. Optional audit field; max 500 characters (longer values are truncated). Plain text only.
lushamcp_signals_contacts_get#Return recent activity signals (promotions, company changes) for known Lusha contact IDs.7 params

Return recent activity signals (promotions, company changes) for known Lusha contact IDs.

NameTypeRequiredDescription
contactIdsarrayrequiredLusha contact IDs (1-25 per request). Capped at 25 to fit the 25k-token response budget once signal events are merged; split larger lists into multiple calls.
conversation_idstringoptionalConversation correlation ID. Present only when an earlier tool response in this conversation returned one; that value is carried unchanged on subsequent calls. Omitted on the first call.
maxResultsPerSignalintegeroptionalMaximum number of signal instances per signal type per contact (1-100). Defaults to 10 when omitted.
reason_for_invocationstringoptionalBrief explanation of why you chose this tool for the current task. Optional audit field; max 500 characters (longer values are truncated). Plain text only.
signalsarrayoptionalDeprecated: use 'signalTypes'. Kept for backward compatibility; will be removed in a future release.
signalTypesarrayoptionalContact signal type identifiers (e.g., 'allSignals', 'promotion', 'companyChange'). Source of truth: signals_contact_filters - resolve valid values from there before calling. Invalid values return a 400 from the Lusha API.
startDatestringoptionalStart date for signal retrieval (YYYY-MM-DD). Must be a valid calendar date and not in the future. Defaults to last 6 months when omitted.
lushamcp_table_add_column#Add a column (Lusha datapoint, CRM, signal, AI, or score) to a Workspace table, optionally running it immediately.11 params

Add a column (Lusha datapoint, CRM, signal, AI, or score) to a Workspace table, optionally running it immediately.

NameTypeRequiredDescription
entity_typestringrequiredWhich Lusha entity the table holds: 'contacts' or 'companies'. Routes the call to /v3/contacts/* or /v3/companies/*; a table only ever holds one entity type.
namestringrequiredDisplay name of the column (1-255 chars).
table_idstringrequiredTarget Workspace table id (UUID). Resolve it from table_list or a create response.
typestringrequiredColumn category: 'lusha' (a Lusha datapoint via `key`), 'crm', 'signal', 'ai' (prompt in `meta`), or 'score'.
conversation_idstringoptionalConversation correlation ID. Present only when an earlier tool response in this conversation returned one; that value is carried unchanged on subsequent calls. Omitted on the first call.
emailstringoptionalOwner email: the user in the account that owns the table (the API resolves it to a userId). Needed only when the credential has no associated user, such as an API key that does not resolve to a specific user. With OAuth, or an API key already scoped to a user, the caller's own userId identifies the owner and email can be omitted; it may still be passed to act on behalf of another owner.
entity_idsarrayoptionalEntity ids to run when run_scope='specific'.
keystringoptionalData key/datapoint for a 'lusha' column (e.g. 'jobTitle', 'emailAddress').
metaobjectoptionalExtra column configuration (AI prompt, signal id, score config, etc.).
reason_for_invocationstringoptionalBrief explanation of why you chose this tool for the current task. Optional audit field; max 500 characters (longer values are truncated). Plain text only.
run_scopestringoptionalRun the column immediately after creation (defaults to 'none').
lushamcp_table_add_entities#Add known Lusha entity ids (contacts or companies) to a Workspace table; duplicates are deduped.7 params

Add known Lusha entity ids (contacts or companies) to a Workspace table; duplicates are deduped.

NameTypeRequiredDescription
entity_idsarrayrequiredLusha entity ids to add (deduped automatically). Up to 500 per call.
entity_typestringrequiredWhich Lusha entity the table holds: 'contacts' or 'companies'. Routes the call to /v3/contacts/* or /v3/companies/*; a table only ever holds one entity type.
table_idstringrequiredTarget Workspace table id (UUID). Resolve it from table_list or a create response.
company_idsarrayoptionalContacts tables only: lushaCompanyId per contact, index-aligned with entity_ids, so the workspace can enrich the contact (person + company pair). Ignored for companies tables.
conversation_idstringoptionalConversation correlation ID. Present only when an earlier tool response in this conversation returned one; that value is carried unchanged on subsequent calls. Omitted on the first call.
emailstringoptionalOwner email: the user in the account that owns the table (the API resolves it to a userId). Needed only when the credential has no associated user, such as an API key that does not resolve to a specific user. With OAuth, or an API key already scoped to a user, the caller's own userId identifies the owner and email can be omitted; it may still be passed to act on behalf of another owner.
reason_for_invocationstringoptionalBrief explanation of why you chose this tool for the current task. Optional audit field; max 500 characters (longer values are truncated). Plain text only.
lushamcp_table_create#Create an empty Workspace table (contacts or companies) to collect and enrich saved records.6 params

Create an empty Workspace table (contacts or companies) to collect and enrich saved records.

NameTypeRequiredDescription
entity_typestringrequiredWhich Lusha entity the table holds: 'contacts' or 'companies'. Routes the call to /v3/contacts/* or /v3/companies/*; a table only ever holds one entity type.
namestringrequiredTable name (1-255 chars).
conversation_idstringoptionalConversation correlation ID. Present only when an earlier tool response in this conversation returned one; that value is carried unchanged on subsequent calls. Omitted on the first call.
emailstringoptionalOwner email: the user in the account that owns the table (the API resolves it to a userId). Needed only when the credential has no associated user, such as an API key that does not resolve to a specific user. With OAuth, or an API key already scoped to a user, the caller's own userId identifies the owner and email can be omitted; it may still be passed to act on behalf of another owner.
reason_for_invocationstringoptionalBrief explanation of why you chose this tool for the current task. Optional audit field; max 500 characters (longer values are truncated). Plain text only.
visibilitystringoptionalTable visibility: 'private' (default) or 'shared' with the account.
lushamcp_table_delete#Permanently delete a Workspace table and its rows/columns.5 params

Permanently delete a Workspace table and its rows/columns.

NameTypeRequiredDescription
entity_typestringrequiredWhich Lusha entity the table holds: 'contacts' or 'companies'. Routes the call to /v3/contacts/* or /v3/companies/*; a table only ever holds one entity type.
table_idstringrequiredTarget Workspace table id (UUID). Resolve it from table_list or a create response.
conversation_idstringoptionalConversation correlation ID. Present only when an earlier tool response in this conversation returned one; that value is carried unchanged on subsequent calls. Omitted on the first call.
emailstringoptionalOwner email: the user in the account that owns the table (the API resolves it to a userId). Needed only when the credential has no associated user, such as an API key that does not resolve to a specific user. With OAuth, or an API key already scoped to a user, the caller's own userId identifies the owner and email can be omitted; it may still be passed to act on behalf of another owner.
reason_for_invocationstringoptionalBrief explanation of why you chose this tool for the current task. Optional audit field; max 500 characters (longer values are truncated). Plain text only.
lushamcp_table_get_entities#Read a page of a Workspace table's rows, including populated column values.7 params

Read a page of a Workspace table's rows, including populated column values.

NameTypeRequiredDescription
entity_typestringrequiredWhich Lusha entity the table holds: 'contacts' or 'companies'. Routes the call to /v3/contacts/* or /v3/companies/*; a table only ever holds one entity type.
table_idstringrequiredTarget Workspace table id (UUID). Resolve it from table_list or a create response.
conversation_idstringoptionalConversation correlation ID. Present only when an earlier tool response in this conversation returned one; that value is carried unchanged on subsequent calls. Omitted on the first call.
emailstringoptionalOwner email: the user in the account that owns the table (the API resolves it to a userId). Needed only when the credential has no associated user, such as an API key that does not resolve to a specific user. With OAuth, or an API key already scoped to a user, the caller's own userId identifies the owner and email can be omitted; it may still be passed to act on behalf of another owner.
pageintegeroptionalPage number (0-based, max 100).
page_sizeintegeroptionalItems per page (1-100, default 100).
reason_for_invocationstringoptionalBrief explanation of why you chose this tool for the current task. Optional audit field; max 500 characters (longer values are truncated). Plain text only.
lushamcp_table_list#List the caller's Workspace contacts or companies tables with pagination and name/status filters.8 params

List the caller's Workspace contacts or companies tables with pagination and name/status filters.

NameTypeRequiredDescription
entity_typestringrequiredWhich Lusha entity the table holds: 'contacts' or 'companies'. Routes the call to /v3/contacts/* or /v3/companies/*; a table only ever holds one entity type.
conversation_idstringoptionalConversation correlation ID. Present only when an earlier tool response in this conversation returned one; that value is carried unchanged on subsequent calls. Omitted on the first call.
emailstringoptionalFilter to tables owned by this email. REQUIRED when authenticating with an API key (there is no signed-in user to default to); with OAuth the caller is identified by the token, so it is optional and defaults to the caller.
namestringoptionalFilter by name (substring match).
pageintegeroptionalPage number (0-based, max 100).
page_sizeintegeroptionalItems per page (1-100, default 100).
reason_for_invocationstringoptionalBrief explanation of why you chose this tool for the current task. Optional audit field; max 500 characters (longer values are truncated). Plain text only.
statusstringoptionalFilter tables by lifecycle status.
lushamcp_table_list_columns#List a Workspace table's columns with per-status row counts.5 params

List a Workspace table's columns with per-status row counts.

NameTypeRequiredDescription
entity_typestringrequiredWhich Lusha entity the table holds: 'contacts' or 'companies'. Routes the call to /v3/contacts/* or /v3/companies/*; a table only ever holds one entity type.
table_idstringrequiredTarget Workspace table id (UUID). Resolve it from table_list or a create response.
conversation_idstringoptionalConversation correlation ID. Present only when an earlier tool response in this conversation returned one; that value is carried unchanged on subsequent calls. Omitted on the first call.
emailstringoptionalOwner email: the user in the account that owns the table (the API resolves it to a userId). Needed only when the credential has no associated user, such as an API key that does not resolve to a specific user. With OAuth, or an API key already scoped to a user, the caller's own userId identifies the owner and email can be omitted; it may still be passed to act on behalf of another owner.
reason_for_invocationstringoptionalBrief explanation of why you chose this tool for the current task. Optional audit field; max 500 characters (longer values are truncated). Plain text only.
lushamcp_table_remove_column#Remove a non-default column from a Workspace table.6 params

Remove a non-default column from a Workspace table.

NameTypeRequiredDescription
column_idstringrequiredColumn id to remove (from table_list_columns).
entity_typestringrequiredWhich Lusha entity the table holds: 'contacts' or 'companies'. Routes the call to /v3/contacts/* or /v3/companies/*; a table only ever holds one entity type.
table_idstringrequiredTarget Workspace table id (UUID). Resolve it from table_list or a create response.
conversation_idstringoptionalConversation correlation ID. Present only when an earlier tool response in this conversation returned one; that value is carried unchanged on subsequent calls. Omitted on the first call.
emailstringoptionalOwner email: the user in the account that owns the table (the API resolves it to a userId). Needed only when the credential has no associated user, such as an API key that does not resolve to a specific user. With OAuth, or an API key already scoped to a user, the caller's own userId identifies the owner and email can be omitted; it may still be passed to act on behalf of another owner.
reason_for_invocationstringoptionalBrief explanation of why you chose this tool for the current task. Optional audit field; max 500 characters (longer values are truncated). Plain text only.
lushamcp_table_remove_entities#Remove rows (by Lusha entity id) from a Workspace table.6 params

Remove rows (by Lusha entity id) from a Workspace table.

NameTypeRequiredDescription
entity_idsarrayrequiredLusha entity ids to remove. Up to 500 per call.
entity_typestringrequiredWhich Lusha entity the table holds: 'contacts' or 'companies'. Routes the call to /v3/contacts/* or /v3/companies/*; a table only ever holds one entity type.
table_idstringrequiredTarget Workspace table id (UUID). Resolve it from table_list or a create response.
conversation_idstringoptionalConversation correlation ID. Present only when an earlier tool response in this conversation returned one; that value is carried unchanged on subsequent calls. Omitted on the first call.
emailstringoptionalOwner email: the user in the account that owns the table (the API resolves it to a userId). Needed only when the credential has no associated user, such as an API key that does not resolve to a specific user. With OAuth, or an API key already scoped to a user, the caller's own userId identifies the owner and email can be omitted; it may still be passed to act on behalf of another owner.
reason_for_invocationstringoptionalBrief explanation of why you chose this tool for the current task. Optional audit field; max 500 characters (longer values are truncated). Plain text only.
lushamcp_table_run_column#Run (populate) a Workspace table column across all, missing-only, or specific rows.8 params

Run (populate) a Workspace table column across all, missing-only, or specific rows.

NameTypeRequiredDescription
column_idstringrequiredColumn id to run (from table_list_columns).
entity_typestringrequiredWhich Lusha entity the table holds: 'contacts' or 'companies'. Routes the call to /v3/contacts/* or /v3/companies/*; a table only ever holds one entity type.
run_scopestringrequiredWhich rows to run: 'all', 'missing', or 'specific' (requires entity_ids).
table_idstringrequiredTarget Workspace table id (UUID). Resolve it from table_list or a create response.
conversation_idstringoptionalConversation correlation ID. Present only when an earlier tool response in this conversation returned one; that value is carried unchanged on subsequent calls. Omitted on the first call.
emailstringoptionalOwner email: the user in the account that owns the table (the API resolves it to a userId). Needed only when the credential has no associated user, such as an API key that does not resolve to a specific user. With OAuth, or an API key already scoped to a user, the caller's own userId identifies the owner and email can be omitted; it may still be passed to act on behalf of another owner.
entity_idsarrayoptionalEntity ids to run when run_scope='specific'.
reason_for_invocationstringoptionalBrief explanation of why you chose this tool for the current task. Optional audit field; max 500 characters (longer values are truncated). Plain text only.
lushamcp_table_status#Return one Workspace table's entity count and per-column run aggregates (processing/success/failed rows).5 params

Return one Workspace table's entity count and per-column run aggregates (processing/success/failed rows).

NameTypeRequiredDescription
entity_typestringrequiredWhich Lusha entity the table holds: 'contacts' or 'companies'. Routes the call to /v3/contacts/* or /v3/companies/*; a table only ever holds one entity type.
table_idstringrequiredTarget Workspace table id (UUID). Resolve it from table_list or a create response.
conversation_idstringoptionalConversation correlation ID. Present only when an earlier tool response in this conversation returned one; that value is carried unchanged on subsequent calls. Omitted on the first call.
emailstringoptionalOwner email: the user in the account that owns the table (the API resolves it to a userId). Needed only when the credential has no associated user, such as an API key that does not resolve to a specific user. With OAuth, or an API key already scoped to a user, the caller's own userId identifies the owner and email can be omitted; it may still be passed to act on behalf of another owner.
reason_for_invocationstringoptionalBrief explanation of why you chose this tool for the current task. Optional audit field; max 500 characters (longer values are truncated). Plain text only.
lushamcp_table_update#Rename a Workspace table, change its visibility, or archive/unarchive it.8 params

Rename a Workspace table, change its visibility, or archive/unarchive it.

NameTypeRequiredDescription
entity_typestringrequiredWhich Lusha entity the table holds: 'contacts' or 'companies'. Routes the call to /v3/contacts/* or /v3/companies/*; a table only ever holds one entity type.
table_idstringrequiredTarget Workspace table id (UUID). Resolve it from table_list or a create response.
archivedbooleanoptionalArchive (true) or unarchive (false) the table.
conversation_idstringoptionalConversation correlation ID. Present only when an earlier tool response in this conversation returned one; that value is carried unchanged on subsequent calls. Omitted on the first call.
emailstringoptionalOwner email: the user in the account that owns the table (the API resolves it to a userId). Needed only when the credential has no associated user, such as an API key that does not resolve to a specific user. With OAuth, or an API key already scoped to a user, the caller's own userId identifies the owner and email can be omitted; it may still be passed to act on behalf of another owner.
namestringoptionalNew table name (1-255 chars).
reason_for_invocationstringoptionalBrief explanation of why you chose this tool for the current task. Optional audit field; max 500 characters (longer values are truncated). Plain text only.
visibilitystringoptionalTable visibility: 'private' (default) or 'shared' with the account.