> ## 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.

# Prospection

> 6 outils — Pipeline de prospection et conversion en clients

## get\_prospecting\_stats

`Lecture seule`

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

## list\_prospects

`Lecture seule`

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 — Valeurs : nouveau | contacté | répondu | qualifié | perdu
</ParamField>

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

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

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

## create\_prospect

`Écriture`

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 — Valeurs : linkedin | whatsapp | instagram | email | autre
</ParamField>

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

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

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

## update\_prospect

`Écriture`

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 — Valeurs : nouveau | contacté | répondu | qualifié | perdu
</ParamField>

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

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

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

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

## delete\_prospect

`Écriture — destructif`

Permanently delete a prospect from the pipeline

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

## convert\_prospect

`Écriture`

Convert a prospect into a CRM client

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