Skip to main content
Glama
WGalyean50

Salesloft MCP Demo Server

by WGalyean50

Salesloft MCP Demo Server

An MCP (Model Context Protocol) server that exposes sales call transcripts to Claude, enabling AI-powered analysis of customer conversations.

What This Demo Shows

This demo illustrates how AI can transform raw sales call data into actionable intelligence. Instead of manually reviewing hours of call recordings, sales leaders can ask natural language questions and get instant answers.

Example queries you can ask Claude:

  • "What calls do we have available?"

  • "Show me all discovery calls"

  • "What are the common objections we're hearing?"

  • "Find mentions of procurement or budget delays"

  • "Summarize the TeleCom Nexus interview"

  • "Which companies are concerned about migration?"

Related MCP server: sales-intelligence

Quick Start

Prerequisites

  • Python 3.11+

  • uv package manager

  • Claude Code or Claude Desktop with MCP support

Installation

  1. Clone or download this repository:

cd salesloft_mcp_demo
  1. Install dependencies:

uv sync
  1. Verify installation:

uv run salesloft-mcp --help

Configure Claude Code

Add to your Claude Code settings (.claude/settings.local.json):

{
  "mcpServers": {
    "salesloft": {
      "type": "stdio",
      "command": "uv",
      "args": [
        "--directory",
        "/path/to/salesloft_mcp_demo",
        "run",
        "salesloft-mcp"
      ]
    }
  }
}

Replace /path/to/salesloft_mcp_demo with the actual path to this directory.

Run the Demo

  1. Restart Claude Code to load the MCP server

  2. Ask Claude about your call data:

    • "What calls do we have?"

    • "Search for mentions of pricing"

    • "Tell me about the TeleCom Nexus call"

Available Tools

list_calls

List available call transcripts with optional filtering.

Parameters:

  • company (optional): Filter by company name (partial match)

  • deal_stage (optional): Filter by stage (Discovery, Demo, Negotiation)

  • limit (optional): Max results to return (default: 50)

get_call

Get the full transcript content for a specific call.

Parameters:

  • call_id (required): The unique identifier for the call

search_calls

Search for keywords across all transcripts.

Parameters:

  • query (required): Search terms

  • limit (optional): Max excerpts to return (default: 10)

Available Resources

  • transcripts://list - Get all call metadata

  • transcripts://call/{call_id} - Get full transcript content

Sample Transcripts

The demo includes 40+ sample interview transcripts covering:

  • Telecom: Pipeline visibility, 5G budget competition

  • Legal Tech: Law firm adoption, procurement complexity

  • E-commerce: Shopify competition, migration concerns

  • HR Tech: Multi-stakeholder buying committees

  • And more...

Testing

Run the test suite:

uv run pytest tests/ -v

Project Structure

salesloft_mcp_demo/
├── src/salesloft_mcp/
│   ├── server.py           # MCP server with tools/resources
│   ├── transcript_loader.py # File parsing utilities
│   └── search.py           # Search functionality
├── transcripts/            # Call transcript files
├── tests/                  # Test suite
├── docs/                   # Documentation
└── .claude/               # Claude Code configuration

Troubleshooting

Server not appearing in Claude Code

  1. Check that the path in settings.local.json is correct

  2. Ensure uv is in your PATH

  3. Restart Claude Code

No transcripts loading

  1. Verify the transcripts/ directory exists

  2. Check that .md files are present

  3. Run uv run python -c "from salesloft_mcp.transcript_loader import load_all_transcripts; print(len(load_all_transcripts()))" to verify

Import errors

Run uv sync to ensure all dependencies are installed.

Future Enhancements

This MVP demonstrates core value. Future versions could add:

  • Real SalesLoft API integration

  • Sentiment analysis per speaker

  • Objection detection and categorization

  • Deal health scoring based on call signals

  • Competitive intelligence extraction

Available Tools

3 tools
get_callA

Get the full transcript content for a specific call.

Args:
    call_id: The unique identifier for the call

Returns:
    Full transcript content including metadata and transcript text
ParametersJSON Schema
NameRequiredDescriptionDefault
call_idYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A3.8/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It states what the tool returns ('Full transcript content including metadata and transcript text'), which is helpful, but doesn't cover other important aspects like whether this is a read-only operation, potential rate limits, authentication needs, error conditions, or what happens if the call_id is invalid. For a tool with zero annotation coverage, this leaves significant gaps.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well-structured and front-loaded with the core purpose in the first sentence, followed by clear sections for Args and Returns. Every sentence earns its place by providing essential information without redundancy, 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.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's low complexity (1 parameter, no nested objects) and the presence of an output schema (which handles return values), the description is mostly complete. It covers the purpose, parameter meaning, and return content. However, it lacks behavioral details like error handling or operational constraints, which would be beneficial even with an output schema.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The description adds meaningful context for the single parameter by explaining that call_id is 'The unique identifier for the call', which clarifies its purpose beyond what the schema provides (schema coverage is 0%, so the schema only gives the title 'Call Id' and type). This adequately compensates for the low schema coverage, though it doesn't detail format or constraints.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the specific action ('Get the full transcript content') and resource ('for a specific call'), distinguishing it from sibling tools like list_calls and search_calls which handle multiple calls or search operations rather than retrieving detailed content for a single call.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage by specifying it's for 'a specific call' with a call_id, suggesting it should be used when you have the identifier for a particular call. However, it doesn't explicitly state when to use this versus alternatives like list_calls or search_calls, nor does it mention prerequisites or exclusions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_callsA

List available call transcripts with optional filtering.

Args:
    company: Filter by company name (partial match, case-insensitive)
    deal_stage: Filter by deal stage (Discovery, Demo, Negotiation, etc.)
    limit: Maximum results to return (default: 50, max: 100)

Returns:
    JSON array of call summaries with metadata
ParametersJSON Schema
NameRequiredDescriptionDefault
companyNo
deal_stageNo
limitNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A3.5/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It indicates this is a read operation ('List') and specifies default and max values for 'limit', which adds useful context. However, it lacks details on permissions, rate limits, pagination, or error handling, leaving gaps in behavioral understanding for a tool with filtering capabilities.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well-structured and front-loaded with the core purpose, followed by clear sections for arguments and returns. Every sentence adds value without redundancy, and the bullet-point style in the text enhances readability. It efficiently conveys necessary information in a compact format.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's moderate complexity (3 parameters, filtering functionality) and the presence of an output schema (implied by 'Returns: JSON array'), the description is reasonably complete. It covers input semantics and output format, but lacks behavioral context like error cases or usage comparisons with siblings, which holds it back from a perfect score.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema description coverage is 0%, so the description must compensate. It adds meaningful semantics beyond the schema: it explains that 'company' uses partial match and is case-insensitive, 'deal_stage' includes example values, and 'limit' has a default and max. This clarifies usage significantly, though it doesn't cover all potential nuances like format constraints for parameters.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: 'List available call transcripts with optional filtering.' It specifies the verb ('List') and resource ('call transcripts'), making the function unambiguous. However, it doesn't explicitly differentiate from sibling tools like 'get_call' (likely for single call) or 'search_calls' (possibly more advanced search), so it doesn't reach the highest score.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives like 'search_calls' or 'get_call'. It mentions optional filtering but doesn't specify scenarios where this tool is preferred over siblings, leaving the agent to guess based on tool names alone. This lack of comparative context reduces its effectiveness.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_callsA

Search for keywords across all call transcripts.

Args:
    query: Search terms (case-insensitive, searches all transcript content)
    limit: Maximum excerpts to return (default: 10, max: 50)

Returns:
    JSON array of matching excerpts with call context
ParametersJSON Schema
NameRequiredDescriptionDefault
queryYes
limitNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A3.7/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It adds some context: the search is case-insensitive and covers all transcript content, and it specifies default and max values for 'limit'. However, it lacks details on permissions, rate limits, or error handling, which are important for a search operation.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well-structured and front-loaded with the purpose, followed by clear sections for 'Args' and 'Returns'. Each sentence adds value without waste, making it easy for an agent to parse and understand quickly.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's moderate complexity (2 parameters, no annotations), the description is fairly complete. It covers purpose, parameter semantics, and return format. However, it lacks usage guidelines and some behavioral details like error handling. The presence of an output schema reduces the need to explain return values, but gaps remain.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The description adds significant meaning beyond the input schema, which has 0% description coverage. It explains that 'query' is case-insensitive and searches all transcript content, and specifies 'limit' as maximum excerpts with default and max values. This fully compensates for the schema's lack of documentation.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: 'Search for keywords across all call transcripts.' It specifies the verb ('search') and resource ('call transcripts') with scope ('all'). However, it doesn't explicitly differentiate from sibling tools like 'get_call' or 'list_calls', which prevents a score of 5.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives like 'get_call' or 'list_calls'. It mentions searching 'all call transcripts' but doesn't clarify use cases, prerequisites, or exclusions, leaving the agent without contextual direction.

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.

  1. 3 tool updates
    • First observedget_call
    • First observedlist_calls
    • First observedsearch_calls

TDQS

A3.7/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose with no ambiguity: get_call retrieves a specific transcript, list_calls provides filtered summaries, and search_calls finds keywords across content. The descriptions reinforce these distinct roles, making misselection unlikely.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern (get_call, list_calls, search_calls) with snake_case throughout. The naming is predictable and readable, with no deviations in style or convention.

Tool Count3/5

With only 3 tools, the server feels thin for a Salesloft domain that likely involves more operations like creating or updating calls. While the tools cover core retrieval and search, the count is borderline for a comprehensive CRM or sales tool integration.

Completeness2/5

The tool surface is significantly incomplete for a Salesloft demo server, lacking essential CRUD operations such as creating, updating, or deleting calls. There are also gaps in related functionalities like managing deals or contacts, which agents might expect in this domain.

Maintenance

ActivityInactive
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • F
    license
    Not graded
    quality
    Not graded
    maintenance
    A natural language interface for Salesforce data that allows users to query accounts, opportunities, contacts, leads, and activities through conversational prompts. It supports SOQL queries and provides tools for data retrieval and analysis without requiring technical Salesforce knowledge.
    42
    -
  • A
    license
    A
    quality
    D
    maintenance
    Enables research on prospects, pull call transcripts, and enrich leads using Gong, ZoomInfo, Clay, and LinkedIn Sales Navigator through natural language.
    16
    1
    MIT
  • A
    license
    A
    quality
    A
    maintenance
    Enables AI-powered interaction with Salesforce, providing opportunity intelligence, engagement analysis, business case generation, and standard CRUD operations through natural language.
    18
    60
    5
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    Provides 48 revenue intelligence tools that let AI assistants search deals, forecast revenue, analyze pipeline risk, manage outreach, and track value delivery via natural language.
    67
    -

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/WGalyean50/salesloft-mcp-demo1'

If you have feedback or need assistance with the MCP directory API, please join our Discord server