HeySale — AI Website Salesperson
Server Details
Create and install an AI Website Salesperson for sales, qualification, and lead capture.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- heysale/heysale-mcp
- GitHub Stars
- 0
TDQS
Each tool has a distinct purpose: creation, installation script retrieval, status checking, configuration, and results reporting. There is no overlap; even status and installation retrieval are clearly differentiated by what they return.
All tool names follow a consistent verb_noun pattern in snake_case (check_, configure_, create_, get_, get_). The verbs are clear and the nouns are descriptive, making the set predictable.
With 5 tools, the server is well-scoped for its purpose of creating and managing AI salespeople. Each tool covers a distinct aspect of the lifecycle, and the count is comfortably within the ideal 3-15 range.
The lifecycle is well covered: create, install, configure, monitor status, and get results. The only notable gap is the lack of a delete or deactivate tool, which is a minor omission that agents could work around.
Available Tools
5 toolscheck_salesperson_statusCheck a salesperson's readinessARead-onlyIdempotentInspect
Find out whether a website salesperson has finished reading the website and is ready to talk to visitors, and whether its script has been detected on the live site.
| Name | Required | Description | Default |
|---|---|---|---|
| salesperson_id | Yes | The id returned when the salesperson was created. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, openWorldHint=false, and idempotentHint=true, so the safety profile is covered. The description adds useful context about what the read-only check actually reveals: reading completion, visitor readiness, and script detection on the live site. No contradiction with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single, well-structured sentence that states the two key checks without unnecessary wording. It is front-loaded and every part adds meaning.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple, read-only, single-parameter status check, the description is sufficient for correct invocation. It explains what is being checked, and the absence of an output schema is not a serious gap because the description frames the result as answering a yes/no-style status question.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100% and the only parameter, salesperson_id, is already documented as 'The id returned when the salesperson was created.' The tool description adds no further parameter details, but none are needed at this baseline.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description names a specific verb ('find out whether') and a specific resource (website salesperson status), and pinpoints the exact checks: readiness to talk to visitors and script detection on the live site. This clearly distinguishes it from siblings like create_website_salesperson or configure_salesperson.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description makes the tool's purpose clear enough that an agent can infer when to call it, but it does not explicitly say when to use it instead of siblings such as get_salesperson_installation or get_salesperson_results. There is no exclusions or alternative guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
configure_salespersonChange how a salesperson introduces itselfAIdempotentInspect
Change a salesperson's name, its opening line, or the goal it works towards in every conversation. Requires the website owner's HeySale API key.
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | ||
| api_key | Yes | The owner's HeySale API key, from their dashboard. | |
| greeting | No | ||
| objective | No | What the salesperson should aim for. | |
| salesperson_id | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description discloses that changes apply 'in every conversation' and requires the website owner's API key, which are behavioral details not covered by the annotations. It does not mention potential side effects like rate limits or whether existing conversations are affected, but the core modifying nature is transparent.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two concise sentences, front-loading the primary purpose and then the authentication requirement. No redundant wording or unnecessary details.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description is complete enough for a configuration tool: it states what can be changed, the scope of the change, and the required credential. With no output schema, there is no need to describe return values. Minor gaps include error behavior or effects on existing conversations, but these are not critical for the core use case.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description maps 'name, opening line, or goal' to the name, greeting, and objective parameters, providing semantic context. It also clarifies the api_key parameter as the website owner's key. However, salesperson_id is not explicitly explained, and the schema descriptions for objective and api_key already partly cover this.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose with a specific verb ('change') and resource ('salesperson'), listing the exact attributes (name, opening line, goal). It distinguishes itself from siblings like create_website_salesperson by focusing on modification rather than creation.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for updating an existing salesperson's configuration, but it does not explicitly contrast with the creation tool or state when to prefer this over alternatives. The API key requirement is mentioned as a prerequisite, but no direct when-to-use guidance is given.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
create_website_salespersonCreate a website salespersonAIdempotentInspect
Give any public website an AI salesperson that talks to its visitors, answers questions about the business, and captures leads. Use this when someone wants to add a salesperson, live chat, a sales assistant or a chatbot alternative to a site, or wants visitors to be greeted, qualified and converted instead of leaving. Provide the website address; the salesperson reads the site itself and returns a one-line script to install. Safe to call twice for the same website.
| Name | Required | Description | Default |
|---|---|---|---|
| campaign | No | ||
| website_url | Yes | The public website address, e.g. https://example.com | |
| business_name | No | The business name, if known. | |
| integration_source | No | The platform making this call, e.g. lovable. | |
| external_project_id | No | A stable id for the calling project, so repeat calls reuse the same salesperson. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description explains that the salesperson reads the site itself and returns a one-line script to install. It also notes 'Safe to call twice,' aligning with the idempotentHint annotation and providing transparency about repeated calls.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences long, with no redundant phrases. It front-loads the core action and follows with the use case and key input, making it efficient and easy to parse.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Since there is no output schema, the description adequately explains the return value ('a one-line script to install') and the behavior of reading the website. Combined with the sibling tools for status and results, it provides enough context for correct usage.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 80% with descriptions for website_url, business_name, integration_source, and external_project_id; only campaign lacks a description. The tool description does not add significant meaning beyond the schema—it only reaffirms that website_address is provided, which is already clear from the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action: 'Give any public website an AI salesperson' and its purpose of answering questions and capturing leads. It distinguishes this tool from siblings like check_salesperson_status or get_salesperson_results by focusing on creation and installation.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly states 'Use this when someone wants to add a salesperson, live chat, a sales assistant or a chatbot alternative to a site' and even covers the goal of converting visitors. This leaves no ambiguity about when the tool is appropriate.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_salesperson_installationGet the install scriptARead-onlyIdempotentInspect
Return the exact one-line script to add to a website so its salesperson appears for visitors, plus where to place it and whether it has been detected yet.
| Name | Required | Description | Default |
|---|---|---|---|
| salesperson_id | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and idempotentHint=true, covering the safety profile. The description adds value by specifying what the tool returns (script, placement, detection status), which is behavioral context beyond the annotations. No contradictions.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence that states the primary output and two additional details. No filler words; every element earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple tool with one parameter, the description is partially complete: it explains the return content but omits the parameter semantics and any error/edge-case behavior. Given no output schema, the description could be richer about the response structure, but it is adequate for basic usage.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 0% and the description does not mention the salesperson_id parameter at all. An agent is left to infer from the parameter name and schema pattern, but no guidance is given on its purpose or format. This is a critical gap.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool returns the exact one-line install script, where to place it, and detection status. It uses a specific verb ('Return') and resource ('install script'), and the sibling tools (check status, configure, create, get results) are distinct in function, so no confusion.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Usage is implied — an agent would infer this tool is for retrieving installation instructions, but there is no explicit guidance on when to prefer it over siblings like configure_salesperson or check_salesperson_status. No exclusions or alternatives are mentioned.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_salesperson_resultsSee what the salesperson achievedARead-onlyIdempotentInspect
Summarise how many visitors talked to the salesperson, how many left their details, and what they asked about most. Requires the website owner's HeySale API key.
| Name | Required | Description | Default |
|---|---|---|---|
| days | No | ||
| api_key | Yes | The owner's HeySale API key, from their dashboard. | |
| salesperson_id | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already mark the tool as readOnly and idempotent. The description adds an important operational constraint: it requires the website owner's HeySale API key, indicating an auth-sensitive read operation. No contradiction with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two concise sentences with no filler: the first states what the tool does, the second states the prerequisite. The most important information is front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description conveys the general result and the auth requirement, but with no output schema it does not describe the return shape. It also omits the days parameter and how the time window affects the summary, leaving a moderate gap for a 3-parameter tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is only 33%, and the description does not clarify salesperson_id or the optional days parameter. It mostly restates the API key requirement already present in the schema and focuses on output rather than parameter meaning.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb, 'Summarise', and lists concrete metrics: visitors talked to the salesperson, details left, and top questions. This clearly communicates the tool's purpose and naturally differentiates it from installation, status, and configuration siblings.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is given on when to use this tool versus alternatives such as check_salesperson_status or get_salesperson_installation. The API key requirement is a prerequisite, not a selection criterion.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
5 tool updates
- First observed
check_salesperson_status - First observed
configure_salesperson - First observed
create_website_salesperson - First observed
get_salesperson_installation - First observed
get_salesperson_results
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity — fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user, then choose Claim with GitHub. An organization namespace such asio.github.acme/serveralso needs that organization to have installed the Glama AI GitHub App and approved its permissions, because GitHub discloses organization membership only to apps it has installed. Use HTTP or DNS when it has not.HTTP challenge — works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge — works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Connectors
Run your website's AI support agent: knowledge, conversations, leads and live replies.
Create and manage website chatbots for European SMBs: bots, chat, and captured leads.
Lets AI agents get leads on the phone: call, send SMS, and schedule callbacks for sales teams.
WhatsApp AI sales agent on your own number via QR, no Meta API: audit chats, edit playbook, orders.
Related MCP Servers
AlicenseAqualityDmaintenanceEnables creating and deploying AI sales agents to WhatsApp and Webchat from AI coding assistants like Claude and Cursor, with automatic website research and no-code setup.31214MIT- FlicenseAqualityDmaintenanceFetches and analyzes website content to provide business context to AI agents, designed for Voice AI in GoHighLevel.1-
- AlicenseNot gradedqualityDmaintenanceSales Intelligence · B2B Lead Extraction An MCP (Model Context Protocol) server that gives AI agents structured B2B lead intelligence extracted directly from company websites. Point it at any URL and get back a clean JSON object — company summary, buying signals, inferred needs, and personalised icebreaker lines — ready to drop into your outreach pipeline. Built for agent pipelines. Works with Cl1MIT
- AlicenseAqualityCmaintenanceEnables AI to interview users about their business and generate bilingual one-page websites for small businesses.610MIT