Lead Intelligence
Server Details
Analyze and score leads to identify high-potential prospects and prioritize sales outreach.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Tool Definition Quality
Average 4.7/5 across 2 of 2 tools scored.
Each tool has a clearly defined trigger: lead_pipeline for pipelines of 500 or fewer rows, and lead_pipeline_get_engine for larger pipelines. The descriptions explicitly reference each other and specify the exact size threshold, eliminating any ambiguity about which tool to use.
Both tool names share the 'lead_pipeline' prefix, but one is a bare noun phrase while the other appends 'get_engine'. This inconsistency in structure (no verb in 'lead_pipeline' vs. verb_noun in 'lead_pipeline_get_engine') makes the naming pattern slightly unpredictable, though still readable.
With only 2 tools, the server is on the lower end of the typical range, but each tool earns its place by addressing a distinct lead volume scenario. The small count feels reasonable given the narrow, specialized domain.
The server covers both direct scoring for standard pipelines and a script-based approach for large datasets, addressing all core lead scoring features (conversion probabilities, money layer, Shapley attribution, call queue). No obvious missing operations exist within its stated purpose.
Available Tools
2 toolslead_pipelineScore Lead PipelineARead-onlyInspect
Scores an open sales pipeline of 500 lead rows OR FEWER into conversion probabilities, money at risk / value of contact, funnel stage outlook, multi-touch Shapley attribution, and a daily CALL / NURTURE / VERIFY queue. Send the rows directly; this server scores them and returns the full result including the per-lead ledger. For pipelines LARGER than 500 leads use lead_pipeline_get_engine instead — sending thousands of rows as tool arguments is slow and risks truncated JSON. Needs lead rows (lead_id, created_date; optional stage, status, closed_date, deal_size, source) from CSV, Salesforce, HubSpot, or any CRM. Optional touches and stage_history improve uplift learning, Markov funnel, and attribution. Returns manager decisions (CALL TODAY / PUSH FORWARD / QUALIFY), call queue, pipeline exposure headline, per-lead money, and explanation traces. Do not invent scores — call this tool when lead data is available.
| Name | Required | Description | Default |
|---|---|---|---|
| as_of | No | Analysis date YYYY-MM-DD. | |
| leads | Yes | Raw lead rows. Each item needs lead_id and created_date. | |
| touches | No | Optional touch log [{lead_id, date, channel}, ...]. | |
| currency | No | ISO currency code for money display. No FX conversion. | USD |
| horizon_days | No | Window for P(convert) and expected days-to-convert. | |
| stage_history | No | Optional stage log [{lead_id, date, stage}, ...]. | |
| call_queue_size | No | Max length of the daily call queue. | |
| currency_symbol | No | Override display symbol (e.g. ₹, $). | |
| cold_threshold_days | No | Days of silence before a lead counts as going cold. | |
| include_diagnostics | No | If true, include Cox/logistic fit diagnostics. | |
| annual_discount_rate | No | Annual discount rate for pipeline value. | |
| min_closed_for_model | No | Below this, Cox / Shapley refuse to fit. | |
| shapley_max_channels | No | Top N−1 channels kept for exact Shapley. | |
| contact_effectiveness | No | Fallback uplift when learned data is too thin. | |
| min_conversions_for_model | No | Below this, Cox refuses. |
Output Schema
| Name | Required | Description |
|---|---|---|
| leads | Yes | List from the upstream lead pipeline API. |
| alerts | No | List from the upstream lead pipeline API. |
| status | Yes | 1 = success, 0 = error |
| message | No | |
| metadata | No | Upstream lead pipeline API payload. |
| decisions | Yes | Ranked plain-language manager cards (CALL TODAY / PUSH FORWARD / QUALIFY). Money, days, lead names only — no Cox / survival / Shapley jargon. |
| call_queue | Yes | |
| attribution | No | |
| funnel_model | No | |
| survival_model | No | |
| pipeline_summary | No | Upstream lead pipeline API payload. |
| money_assumptions | No | |
| pipeline_exposure | No | |
| data_quality_report | No | Upstream lead pipeline API payload. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare read-only, non-destructive behavior, and the description adds substantial context beyond that: the hard size limit and its rationale, the fact that rows are sent directly and scored server-side with the full result returned, the optional touches/stage_history improving model quality, and the 'do not invent scores' constraint. This gives the agent clear operational expectations.
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 dense and front-loaded with purpose, then size constraints, data requirements, and return outputs. It is longer than average but the tool is complex with 15 parameters; however, it slightly repeats the 500-lead limit across two sentences and could be trimmed without losing 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?
Given the tool's complexity (15 params) and the presence of an output schema, the description provides the essential context: data prerequisites, size limit with alternative tool, optional inputs that improve quality, and a summary of returned artifacts. It explains when not to use it and what behavior to expect, making it complete for an agent.
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?
Input schema coverage is 100%, so parameters are already well-documented. The description adds minor semantic value by naming the essential lead fields (lead_id, created_date) and noting that touches and stage_history improve attribution, but it largely repeats schema information. Baseline 3 is appropriate.
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 opens with a specific verb 'Scores' and names the exact resource ('open sales pipeline of 500 lead rows OR FEWER'), followed by the concrete outputs: conversion probabilities, money at risk, funnel stage outlook, Shapley attribution, and a CALL/NURTURE/VERIFY queue. It also distinguishes itself from the sibling lead_pipeline_get_engine by explicitly noting the size boundary for direct-row scoring.
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?
Provides explicit when-to-use guidance: pipelines ≤500 leads. It names the alternative (`lead_pipeline_get_engine`) for larger pipelines and explains why (slow, truncated JSON). It also states prerequisites (lead rows with lead_id and created_date), compatible data sources, and an explicit instruction not to invent scores when data is unavailable.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
lead_pipeline_get_engineLead Pipeline — Get Scoring Script (large pipelines)ARead-onlyInspect
For pipelines LARGER than 500 lead rows. Returns a complete, runnable Python script that loads the lead export in your sandbox and scores it locally (conversion probabilities, money layer, Shapley attribution, CALL / NURTURE / VERIFY queue). Makes no network calls — same shape as Customer Tiering — so Copilot Studio works even when outbound POST is blocked. The rows never pass through you as tokens. Needs numpy. Prints ranked decisions and headline figures; writes the full per-lead ledger to lead_pipeline_result.json. SAVE AND RUN THE RETURNED SCRIPT VERBATIM — do not retype, shorten, reformat, or reimplement it; only PATH / TOUCHES / STAGE_HISTORY / AS_OF / CURRENCY / OUT may be edited. Optionally takes touches_path and stage_history_path for engagement and funnel history.
| Name | Required | Description | Default |
|---|---|---|---|
| as_of | No | Analysis date YYYY-MM-DD. Defaults to latest in file. | |
| currency | No | ISO currency code for display (INR, USD, EUR...). | USD |
| file_path | Yes | Path to the lead export (CSV/TSV/JSON) inside your sandbox. Needs lead_id + created_date per row; optional stage, status, closed_date, deal_size, source. | |
| touches_path | No | Optional path to a touch / activity log (lead_id, date, optional channel). | |
| stage_history_path | No | Optional path to stage-change history (lead_id, date, stage). |
Output Schema
| Name | Required | Description |
|---|---|---|
| notes | No | |
| script | Yes | The runnable scoring script. |
| currency | No | |
| language | No | |
| requires | No | |
| writes_file | No | |
| instructions | Yes | |
| code_integrity | Yes | |
| engine_version | Yes | |
| file_path_used | No | |
| scipy_required | No | |
| data_requirements | No | |
| touches_path_used | No | |
| network_access_required | No | |
| stage_history_path_used | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description discloses that the tool makes no network calls, does not pass rows as tokens, requires numpy, writes to lead_pipeline_result.json, and must be run verbatim. This adds substantial context beyond the annotations (readOnlyHint=true, openWorldHint=true), covering side effects and operational requirements.
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 longer than ideal, but each sentence carries important operational detail (size threshold, network behavior, verbatim instruction, file output). It is well-structured and front-loaded with the key use case, though could be tightened by removing the repetition about row tokens.
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?
Given the tool's complexity, the description is remarkably complete: it covers the purpose, output artifacts, constraints, dependencies, and exact usage instructions. The presence of an output schema means return values need no further explanation, and the description covers everything else an agent would need.
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 100%, so baseline is 3. The description adds value by explaining which parameters are safe to edit (PATH, TOUCHES, STAGE_HISTORY, AS_OF, CURRENCY, OUT) and noting that touches_path and stage_history_path are optional for engagement and funnel history, reinforcing schema semantics.
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 a runnable Python script for scoring large lead pipelines, with specific output (conversion probabilities, money layer, Shapley attribution, queue). It explicitly distinguishes itself from the sibling tool by targeting pipelines larger than 500 rows.
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 opens with the explicit condition 'For pipelines LARGER than 500 lead rows,' and notes it is useful when outbound POST is blocked. This gives clear when-to-use guidance and implies the sibling handles smaller pipelines, though it doesn't name the sibling directly.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
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 or an account that owns the GitHub organization, then choose Claim with GitHub.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
B2B lead generation — prospect discovery, ICP scoring, outreach, and pipeline management.
Sales intelligence for B2B SMEs — lead scoring, ICP fit, CRM enrichment & writeback.
Score, rank and prioritize an existing Italian B2B lead list into explained JSON decisions.
AI sales — prospect discovery, ICP scoring, outreach generation.
Related MCP Servers
- AlicenseNot gradedqualityAmaintenanceLead Scoring AI - MCP server providing AI-powered tools and automation by MEOK AI Labs21MIT
- AlicenseNot gradedqualityFmaintenanceValidates email deliverability, assesses domain credibility, and scores B2B leads from A-F to help prioritize outreach, with batch processing and a free tier.MIT
- AlicenseNot gradedqualityBmaintenanceSales intelligence for DACH & EU SMEs — lead scoring, ICP fit, CRM enrichment & writeback.MIT
- AlicenseNot gradedqualityBmaintenanceAnalyze LinkedIn & email outreach campaigns, track pipeline performance, and review lead conversations for RevOps, Sales Managers, and SDR teams.Apache 2.0