New:Socket for Asana Is Now Available.Learn more
Get Started

@leadloadz/mcp-server

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@leadloadz/mcp-server

MCP server for Leadloadz B2B lead search and email verification

Source
npmnpm
Version
1.0.4
Version published
Maintainers
1
Created
Source

@leadloadz/mcp-server

A Model Context Protocol (MCP) server that connects AI assistants to the Leadloadz B2B lead generation platform.

Features

  • Search Leads — Find verified B2B leads using natural language queries
  • Verify Email — Real-time email verification with deliverability scoring
  • Get Stats — Check your usage and remaining quotas

Installation

No installation required. AI clients can run the server directly:

npx -y @leadloadz/mcp-server

Via npm

npm install -g @leadloadz/mcp-server
leadloadz-mcp

Configuration

You need a Leadloadz API key to use this server.

  • Sign up at leadloadz.com
  • Go to Dashboard → API Tokens
  • Generate a new token
  • Copy the token value

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "leadloadz": {
      "command": "npx",
      "args": ["-y", "@leadloadz/mcp-server"],
      "env": {
        "LEADLOADZ_API_KEY": "your-api-key-here"
      }
    }
  }
}

Cline (VS Code)

Add to your Cline MCP settings:

{
  "mcpServers": {
    "leadloadz": {
      "command": "npx",
      "args": ["-y", "@leadloadz/mcp-server"],
      "env": {
        "LEADLOADZ_API_KEY": "your-api-key-here"
      }
    }
  }
}

Other Clients

Any MCP client that supports stdio transport can use:

{
  "command": "npx",
  "args": ["-y", "@leadloadz/mcp-server"],
  "env": {
    "LEADLOADZ_API_KEY": "your-api-key-here"
  }
}

Environment Variables

VariableRequiredDefaultDescription
LEADLOADZ_API_KEYYesYour Leadloadz API token
LEADLOADZ_API_BASENohttps://www.leadloadz.com/api/mcpAPI base URL
LEADLOADZ_TIMEOUT_MSNo30000Request timeout in milliseconds

Development

# Install dependencies
npm install

# Build
npm run build

# Type check
npm run typecheck

# Test locally
node dist/index.js

Security

  • Your API key is never logged or exposed in error messages
  • All errors are sanitized to prevent information leakage
  • The server communicates directly with Leadloadz APIs over HTTPS
  • Rate limits are enforced by the Leadloadz API

Support

License

MIT

Keywords

mcp

FAQs

Package last updated on 10 May 2026

Related posts