> ## Documentation Index
> Fetch the complete documentation index at: https://mcp.klark.app/llms.txt
> Use this file to discover all available pages before exploring further.

# Prospecting

> 6 tools — Sales pipeline and conversion to clients

## get\_prospecting\_stats

`Read-only`

Get sales prospecting pipeline KPIs: total, by status, by heat score, conversion rate

## list\_prospects

`Read-only`

List prospects with pagination, search and filters

<ParamField body="page" type="number" default="1">
  Page number
</ParamField>

<ParamField body="limit" type="number" default="20">
  Items per page (max 50)
</ParamField>

<ParamField body="status" type="string">
  Filter by status — Values: nouveau | contacté | répondu | qualifié | perdu
</ParamField>

<ParamField body="heatScore" type="string">
  Filter by heat score — Values: cold | warm | hot
</ParamField>

<ParamField body="channel" type="string">
  Filter by channel — Values: linkedin | whatsapp | instagram | email | autre
</ParamField>

<ParamField body="search" type="string">
  Search by name, email or company
</ParamField>

## create\_prospect

`Write`

Create a new prospect in the sales pipeline

<ParamField body="fullName" type="string" required>
  Full name (required)
</ParamField>

<ParamField body="email" type="string" required>
  Email (required)
</ParamField>

<ParamField body="company" type="string" required>
  Company name (required)
</ParamField>

<ParamField body="role" type="string">
  Role/title
</ParamField>

<ParamField body="phone" type="string">
  Phone number
</ParamField>

<ParamField body="channel" type="string">
  Acquisition channel — Values: linkedin | whatsapp | instagram | email | autre
</ParamField>

<ParamField body="heatScore" type="string">
  Lead temperature — Values: cold | warm | hot
</ParamField>

<ParamField body="tags" type="array">
  Tags
</ParamField>

<ParamField body="notes" type="string">
  Notes
</ParamField>

## update\_prospect

`Write`

Update a prospect (status, heat score, notes, etc.)

<ParamField body="prospectId" type="string" required>
  The prospect ID
</ParamField>

<ParamField body="fullName" type="string">
  Full name
</ParamField>

<ParamField body="email" type="string">
  Email
</ParamField>

<ParamField body="company" type="string">
  Company name
</ParamField>

<ParamField body="role" type="string">
  Role/title
</ParamField>

<ParamField body="phone" type="string">
  Phone number
</ParamField>

<ParamField body="status" type="string">
  Pipeline status — Values: nouveau | contacté | répondu | qualifié | perdu
</ParamField>

<ParamField body="heatScore" type="string">
  Lead temperature — Values: cold | warm | hot
</ParamField>

<ParamField body="channel" type="string">
  Channel — Values: linkedin | whatsapp | instagram | email | autre
</ParamField>

<ParamField body="tags" type="array">
  Tags
</ParamField>

<ParamField body="notes" type="string">
  Notes
</ParamField>

## delete\_prospect

`Write — destructive`

Permanently delete a prospect from the pipeline

<ParamField body="prospectId" type="string" required>
  The prospect ID to delete
</ParamField>

## convert\_prospect

`Write`

Convert a prospect into a CRM client

<ParamField body="prospectId" type="string" required>
  The prospect ID to convert
</ParamField>
