# io.github.dylanc1317-create/leadcloser-mcp (npm · @dylanc1317/leadcloser-mcp)

Manage leads and insights for NZ trade businesses via LeadCloser AI.

- Trust score: 68/100 (medium)
- Change this week: +44
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- npm · `@dylanc1317/leadcloser-mcp`: 68/100 (this document), [markdown](https://verifymcp.io/servers/dylanc1317-create-leadcloser-mcp/dylanc1317-leadcloser-mcp.md), [page](https://verifymcp.io/servers/dylanc1317-create-leadcloser-mcp/dylanc1317-leadcloser-mcp)

## Channel facts

- Registry: `npm`
- Package: `@dylanc1317/leadcloser-mcp`
- Version: `1.0.1`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Supply Chain Security**: 87/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (95 of 99), so this covers what we could see, not the whole tree.
  - No install/post-install scripts declared.
  - Only part of the dependency tree could be resolved (95 of 99), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 45/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 118 days ago).
  - Security-disclosure policy not yet verified: we couldn't inspect the source repository.
- **Schema Quality & AI Usability**: 70/100
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 340 tokens (~68/item across 5 items; 5 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 27/100
  - Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add dylanc1317-create-leadcloser-mcp -- npx -y @dylanc1317/leadcloser-mcp
```

### Codex

```bash
codex mcp add dylanc1317-create-leadcloser-mcp -- npx -y @dylanc1317/leadcloser-mcp
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "dylanc1317-create-leadcloser-mcp": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@dylanc1317/leadcloser-mcp"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add dylanc1317-create-leadcloser-mcp --command npx --arg -y --arg @dylanc1317/leadcloser-mcp
```

### Hermes

```yaml
mcp_servers:
  dylanc1317-create-leadcloser-mcp:
    command: "npx"
    args: ["-y", "@dylanc1317/leadcloser-mcp"]
```

### Other

```json
{
  "mcpServers": {
    "dylanc1317-create-leadcloser-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@dylanc1317/leadcloser-mcp"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-02 (score 68, +48)

- [security regression] Provenance: unverified → fail
- [security regression] Malware scan: pass → unverified
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Install scripts: unverified → pass
- [functional improvement] Schema quality: unverified → good
- [functional improvement] Stability: unverified → 0.23
- [functional improvement] MCP protocol: unverified → pass
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] License: unverified → pass
- [functional improvement] Tool coverage: unverified → 100
- [functional] Licence: MIT

### 2026-08-01 (score 20, −8)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-31 (score 28, +4)

- [security regression] Malware scan: pass → unverified
- [functional improvement] Tool coverage: unverified → 100

### 2026-07-30 (score 24, −22)

- [functional regression] Tool coverage: 100 → unverified

### 2026-07-28 (score 46, +22)

- [functional improvement] Tool coverage: unverified → 100
- [functional] First check of Schema quality: fail
- [functional] First check of Tool coverage: 100
- [functional] First check of Schema quality: unverified
- [functional] First check of Schema quality: pass

### 2026-07-27 (score 24)

First indexed and scored.

## MCP tools (5)

### `leadcloser_get_leads` (~83 tokens)

Get Leads

Get recent leads from LeadCloser. Returns lead name, phone, service, score, status and outcome.

Input parameters:

- `limit` (integer): Number of leads to return
- `outcome` (string): Filter by outcome: won, lost, no_show, in_progress
- `status` (string): Filter by status: new, qualifying, quoted, won

### `leadcloser_create_lead` (~96 tokens)

Create Lead

Manually add a new lead to LeadCloser.

Input parameters:

- `email` (string): Lead's email address
- `initial_message` (string): Initial message or notes about the lead
- `name` (string, required): Lead's full name
- `phone` (string): Lead's phone number
- `service_requested` (string): Service the lead is interested in
- `source` (string): Where the lead came from

### `leadcloser_update_outcome` (~73 tokens)

Update Lead Outcome

Mark a lead as won, lost, or no-show. Optionally record the job value if won.

Input parameters:

- `job_value` (number): Job value in NZD if outcome is won
- `lead_id` (string, required): The lead's ID
- `outcome` (string, required): The outcome to set

### `leadcloser_add_note` (~44 tokens)

Add Note to Lead

Add or update a private note on a lead.

Input parameters:

- `lead_id` (string, required): The lead's ID
- `note` (string, required): The note to add

### `leadcloser_get_insights` (~44 tokens)

Get Insights

Get performance insights — total leads, close rate, average score, and best lead source.

Input parameters:

- `period_days` (integer): Number of days to look back

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/dylanc1317-create-leadcloser-mcp/dylanc1317-leadcloser-mcp#diagnostics

## Score history

- 2026-08-03: 68
- 2026-08-02: 68
- 2026-08-01: 20
- 2026-07-31: 28
- 2026-07-30: 24
- 2026-07-28: 46
- 2026-07-27: 24

## Links

- npm package: https://www.npmjs.com/package/@dylanc1317/leadcloser-mcp
- Socket report: https://socket.dev/npm/package/@dylanc1317/leadcloser-mcp
- Repository: https://github.com/dylanc1317-create/leadcloser-mcp
- Changelog RSS feed: https://verifymcp.io/servers/dylanc1317-create-leadcloser-mcp/dylanc1317-leadcloser-mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/dylanc1317-create-leadcloser-mcp/dylanc1317-leadcloser-mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/dylanc1317-create-leadcloser-mcp/dylanc1317-leadcloser-mcp
