Lead Friendly product info
Lead Friendly pricing, industries and capabilities for AI agents, plus demo and lead hand-off
Should I use this
Quality & Safety
Findings (1)
- LOWin book_demo
Based on automated analysis of tool definitions and protocol compliance.
Context Cost
This is the approximate number of tokens consumed each time the server's tools are loaded into a model's context. Higher counts reduce the attention available for other tasks.
Install
One-Click Install
Add this to your `claude_desktop_config.json` file:
{
"mcpServers": {
"lead-friendly-info": {
"url": "https://www.leadfriendly.com/api/mcp"
}
}
}Remote endpoints
https://www.leadfriendly.com/api/mcpstreamable-httpWhat it can do
Tool inventory
Tools (5)
🟢get_pricing
Get Lead Friendly's current subscription plans and prices (live from the pricing source of truth). Use to answer 'how much does Lead Friendly cost'.
Input Schema
{
"type": "object",
"properties": {},
"additionalProperties": false
}🟢list_industries(query)
List the industry verticals Lead Friendly ships a tailored AI agent template for (e.g. auto dealerships, trucking/dispatch, dental, HVAC). Optional `query` filters by keyword.
Input Schema
{
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Optional keyword to filter industries (e.g. 'auto', 'medical')."
}
},
"additionalProperties": false
}🟢check_capability(query)
Check whether Lead Friendly can do a specific job (e.g. 'call leads after hours', 'dispatch trucks', 'white-label for my agency'). Pass the job in `query`.
Input Schema
{
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "The capability/job to check, in plain language."
}
},
"required": [
"query"
],
"additionalProperties": false
}⚪book_demo(name, email, company, industry, message)
Request a Lead Friendly product demo on behalf of a prospect. Routes the request to the sales team and returns the self-serve booking link. Use when a user wants to see/try Lead Friendly.
Input Schema
{
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Prospect full name"
},
"email": {
"type": "string",
"description": "Prospect email"
},
"company": {
"type": "string",
"description": "Company name (optional)"
},
"industry": {
"type": "string",
"description": "Industry/vertical (optional)"
},
"message": {
"type": "string",
"description": "Anything the prospect wants the team to know (optional)"
}
},
"required": [
"name",
"email"
],
"additionalProperties": false
}🟡create_lead(name, email, phone, company, industry, ...)
Submit a sales lead to Lead Friendly on behalf of a prospect who is interested. Routes to the sales inbox. Does NOT write into any customer's CRM. Use to hand off an interested prospect.
Input Schema
{
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Prospect full name"
},
"email": {
"type": "string",
"description": "Prospect email"
},
"phone": {
"type": "string",
"description": "Prospect phone (optional)"
},
"company": {
"type": "string",
"description": "Company name (optional)"
},
"industry": {
"type": "string",
"description": "Industry/vertical (optional)"
},
"notes": {
"type": "string",
"description": "Context about the prospect's need (optional)"
}
},
"required": [
"name",
"email"
],
"additionalProperties": false
}Community
Evidence