Skip to main content
Glama
aaronsb

Salesforce MCP Server

by aaronsb

đŸŒŠī¸ Salesforce MCP Server

This MCP (Model Context Protocol) server provides AI-powered tools for interacting with Salesforce, featuring opportunity intelligence, conversation analysis, business case generation, and standard CRUD operations. Built with pagination support and optimized response structures for AI workflows.

đŸŽ¯ What This Means for You

Imagine having a sales expert that instantly knows everything about your deals and can give you winning strategies. That's what this AI does with your Salesforce data.

đŸ’Ŧ Just Chat Naturally - No Technical Skills Needed

You say: "Show me all Microsoft deals over $100K in the proposal stage"
AI does: Searches your entire Salesforce database and returns matching opportunities

You say: "How's the engagement on the Acme deal? Are we talking to the right people?"
AI does: Analyzes all your calls, emails, and activities to give engagement insights

You say: "Find me deals similar to this opportunity that we won"
AI does: Scans your database for similar successful deals and success patterns

You say: "Create a business case document for this opportunity"
AI does: Generates a professional PDF ready for executives

🚀 Real Conversation Examples

Scenario: "I'm struggling with the Acme Corp deal. It's been stuck in negotiation for 2 months."

AI Response: "Let me analyze the Acme opportunity... I see limited engagement in the past 3 weeks. You've had 2 calls with procurement but haven't connected with the decision maker yet. Similar deals that got unstuck had executive sponsor engagement. I found 3 comparable deals where scheduling an executive briefing moved things forward. Here's a business case document you can use..."


Scenario: "My manager wants to know why our cloud migration deals are taking so long to close."

AI Response: "Analyzing your cloud migration opportunities... The average sales cycle is 40% longer than industry standard. The pattern shows deals stall in the technical evaluation stage. Successful cloud deals had solution architects engaged 2 weeks earlier on average. I recommend involving technical resources sooner..."

✨ What You Get

  • 🔍 Smart Search: Find any opportunity with natural language

  • đŸ’Ŧ Engagement Analysis: Know who you're talking to and who you're missing

  • 🧠 Strategic Insights: Get recommendations based on similar successful deals

  • 📊 Pipeline Intelligence: Understand your pipeline health and conversion patterns

  • 📋 Professional Documents: Generate business cases and executive summaries

  • 📈 Performance Analytics: See what's working and what needs attention

The Magic: You just chat naturally. The AI automatically connects to your Salesforce, analyzes millions of data points, finds patterns, and gives you actionable recommendations. It's like having a sales intelligence team, data analyst, and business consultant all rolled into one AI that knows your Salesforce inside and out.

đŸ’Ŧ Live Chat Example

👤 You

Can you look for any open salesforce opportunities where the solution engineer includes Aaron Rochelle?

🤖 AI Assistant

Let me help you search for Salesforce opportunities where Aaron Rochelle is involved as a Solution Engineer. I'll run a query in your Salesforce database to find opportunities matching that criteria...📊 Found 3 opportunities:â€ĸ Cloud Migration - Acme Corp ($250K, Proposal)â€ĸ Digital Transformation - TechFlow ($180K, Qualification)â€ĸ Infrastructure Upgrade - GlobalTech ($320K, Negotiation)


👤 You

Tell me more about the Acme Corp opportunity

🤖 AI Assistant

Here are the key details for the Acme Corp Cloud Migration opportunity:đŸ’ŧ Opportunity Details:â€ĸ Account: Acme Corpâ€ĸ Amount: $250,000â€ĸ Stage: Proposalâ€ĸ Close Date: 2024-03-15â€ĸ Decision Maker: Sarah Johnson (IT Director)🔍 Intelligence Insights:â€ĸ Similar cloud deals average 45 days in proposal stageâ€ĸ 73% win rate when executive sponsor engaged earlyâ€ĸ Competitor: AWS (primary threat)â€ĸ Next action: Schedule technical deep-dive


👤 You

What similar deals have we won? Show me the patterns

🤖 AI Assistant

I found 8 similar cloud migration deals you've won in the past 12 months. Here are the key patterns:đŸŽ¯ Success Patterns:â€ĸ Average deal size: $275K (vs $250K current)â€ĸ 67% had solution architect engaged by day 14â€ĸ 89% included a pilot/POC phaseâ€ĸ Executive sponsors attended 78% of demos📋 Recommendation: Schedule Aaron for a technical deep-dive with their DevOps team this week. Based on similar wins, proposing a 2-week pilot will increase close probability by 34%.📄 Would you like me to generate a business case document for this opportunity?

Related MCP server: MCP Salesforce Server

🤔 What is MCP?

The Model Context Protocol (MCP) is a standardized way for AI models to interact with external tools and resources. MCP servers provide specific capabilities that can be used by AI models through a consistent interface. This Salesforce MCP server allows AI models to interact with Salesforce data and operations in a structured way.

🚀 Installation

# Run directly with npx
npx salesforce-cloud

# Or install globally
npm install -g salesforce-cloud

From Source

git clone https://github.com/aaronsb/salesforce-cloud.git
cd salesforce-cloud
npm install
npm run build
node build/index.js

âš™ī¸ Configuration

The server requires configuration in your Claude desktop app's configuration file. On Linux, this is located at ~/.config/Claude/claude_desktop_config.json. On macOS, it's at ~/Library/Application Support/Claude/claude_desktop_config.json.

Add the following configuration to the mcpServers object in your config file:

{
  "mcpServers": {
    "salesforce-cloud": {
      "command": "node",
      "args": ["/path/to/salesforce-cloud/build/index.js"],
      "env": {
        "SF_CLIENT_ID": "your_client_id",
        "SF_CLIENT_SECRET": "your_client_secret",
        "SF_USERNAME": "your_salesforce_username",
        "SF_PASSWORD": "your_salesforce_password",
        "SF_LOGIN_URL": "https://login.salesforce.com"
      }
    }
  }
}

Required Environment Variables

  • SF_CLIENT_ID: Your Salesforce OAuth client ID

  • SF_CLIENT_SECRET: Your Salesforce OAuth client secret

  • SF_USERNAME: Your Salesforce username

  • SF_PASSWORD: Your Salesforce password

  • SF_LOGIN_URL: Salesforce login URL (optional, defaults to https://login.salesforce.com)

To obtain these credentials:

  1. Go to Setup in your Salesforce org

  2. Navigate to App Manager

  3. Create a new Connected App

  4. Enable OAuth settings

  5. Add necessary OAuth scopes

  6. Save and wait for activation

  7. Copy the generated Consumer Key (Client ID) and Consumer Secret (Client Secret)

đŸŽ¯ Working with Custom Fields

When constructing queries or working with Salesforce data, it's important to understand that many fields referenced may be custom fields specific to your Salesforce instance. Here's what you need to know:

Understanding Custom Fields

  • Custom fields in Salesforce end with __c in their API names

  • What appears as "Implementation Status" in the UI might be stored as "Implementation_Status__c"

  • Custom fields can represent organization-specific business concepts

Best Practices

  1. Object Metadata Analysis:

    • Use the describe_object tool with includeFields: true to examine both standard and custom fields

    • Look for fields that match your intent in both standard and custom field lists

    • Map user-friendly field names to their actual API names

  2. Field Type Consideration:

    • Custom fields can be various types (text, picklist, lookup, etc.)

    • Understanding field types helps construct appropriate queries

    • Custom fields might reference other custom objects through lookup relationships

  3. Query Construction:

    • Build queries that can handle both standard and custom fields

    • Use field metadata to validate field existence before querying

    • Consider relationships between objects, especially with custom lookup fields

Example

If searching for "Project Status":

  1. First, examine the object's fields to find the actual field name:

{
  "objectName": "Opportunity",
  "includeFields": true
}
  1. Look for fields like "Project_Status__c" or similar custom fields that match your intent

  2. Use the discovered field name in your queries:

{
  "query": "SELECT Id, Name, Project_Status__c FROM Opportunity"
}

đŸ› ī¸ Tools

Core Salesforce Operations

search_fields

Find the field(s) that carry a concept when you know what you want to query but not the API name. Searches the discovered field catalog (ADR-302) by keyword across field API names, labels, and help text, ranked by match strength.

{
  term: string;             // Required: matched against field name, label, help text
  objectName?: string;      // Optional: scope to one object (default: all core objects)
  includeValues?: boolean;  // Optional: return active picklist values for matches (default: false)
  minPopulationPct?: number;// Optional: drop fields below this population density (0-100)
  limit?: number;           // Optional: max matches (default: 25, max: 100)
}

Example:

{
  "term": "ai",
  "objectName": "Opportunity",
  "includeValues": true
}

The match is lexical, not semantic: it finds fields whose metadata contains the term, so a concept the schema names differently won't surface — read salesforce://field-catalog/{objectName}/all to browse everything.

execute_soql

Execute a SOQL query with pagination support.

{
  query: string;      // Required: SOQL query to execute
  pageSize?: number;  // Optional: Number of records per page (default: 25)
  pageNumber?: number; // Optional: Page number to retrieve (default: 1)
}

Example:

{
  "query": "SELECT Id, Name FROM Account",
  "pageSize": 10,
  "pageNumber": 1
}

describe_object

Get metadata about a Salesforce object with optional field information.

{
  objectName: string;    // Required: API name of the Salesforce object
  includeFields?: boolean; // Optional: Whether to include field metadata (default: false)
  pageSize?: number;     // Optional: Number of fields per page (default: 50)
  pageNumber?: number;   // Optional: Page number to retrieve (default: 1)
}

Example:

{
  "objectName": "Account",
  "includeFields": true
}

create_record

Create a new record in Salesforce.

{
  objectName: string;           // Required: API name of the Salesforce object
  data: Record<string, any>;    // Required: Record data as key-value pairs
}

Example:

{
  "objectName": "Account",
  "data": {
    "Name": "Test Account",
    "Industry": "Technology"
  }
}

update_record

Update an existing record in Salesforce.

{
  objectName: string;           // Required: API name of the Salesforce object
  recordId: string;            // Required: ID of the record to update
  data: Record<string, any>;    // Required: Record data to update
}

Example:

{
  "objectName": "Account",
  "recordId": "001XXXXXXXXXXXXXXX",
  "data": {
    "Name": "Updated Account Name"
  }
}

delete_record

Delete a record from Salesforce.

{
  objectName: string;    // Required: API name of the Salesforce object
  recordId: string;     // Required: ID of the record to delete
}

Example:

{
  "objectName": "Account",
  "recordId": "001XXXXXXXXXXXXXXX"
}

get_user_info

Get information about the current user. No parameters required.

{}

list_objects

List all available Salesforce objects with pagination support.

{
  pageSize?: number;   // Optional: Number of objects per page (default: 25)
  pageNumber?: number; // Optional: Page number to retrieve (default: 1)
}

Opportunity Management

search_opportunities

Search for Salesforce opportunities using flexible criteria and pattern matching.

{
  namePattern?: string;         // Optional: Pattern to match in Opportunity Name
  accountNamePattern?: string;  // Optional: Pattern to match in Account Name
  stage?: string;              // Optional: Exact match for opportunity stage
  pageSize?: number;           // Optional: Number of records per page (default: 25)
  pageNumber?: number;         // Optional: Page number to retrieve (default: 1)
}

get_opportunity_details

Get detailed information about a specific opportunity including all available fields and related records.

{
  opportunityId: string;   // Required: The ID of the Salesforce opportunity
}

🧠 Opportunity Intelligence

analyze_conversation

Analyze conversation activity and engagement patterns for an opportunity. Extracts insights from calls, emails, and other activities to provide engagement recommendations.

{
  opportunityId: string;   // Required: The ID of the Salesforce opportunity
}

Example:

{
  "opportunityId": "006XXXXXXXXXX"
}

enrich_opportunity

Enrich an opportunity with market intelligence, industry insights, and strategic recommendations based on similar deal patterns and best practices.

{
  opportunityId: string;              // Required: The ID of the Salesforce opportunity
  includeCompetitiveIntel?: boolean; // Optional: Include competitive analysis (default: false)
  includeBestPractices?: boolean;    // Optional: Include best practices (default: true)
}

Example:

{
  "opportunityId": "006XXXXXXXXXX",
  "includeCompetitiveIntel": true,
  "includeBestPractices": true
}

find_similar_opportunities

Find opportunities similar to a reference opportunity or based on specific criteria. Includes pattern analysis and similarity scoring.

{
  referenceOpportunityId?: string; // Optional: Reference opportunity for similarity matching
  industry?: string;               // Optional: Filter by industry
  minAmount?: number;             // Optional: Minimum opportunity amount
  maxAmount?: number;             // Optional: Maximum opportunity amount
  stage?: string;                 // Optional: Filter by opportunity stage
  isWon?: boolean;               // Optional: Filter by won/lost status
  closeDateStart?: string;       // Optional: Start date (YYYY-MM-DD)
  closeDateEnd?: string;         // Optional: End date (YYYY-MM-DD)
  includeAnalysis?: boolean;     // Optional: Include pattern analysis (default: true)
  limit?: number;                // Optional: Max results (default: 50)
}

Examples:

  1. Find similar to a reference opportunity:

{
  "referenceOpportunityId": "006XXXXXXXXXX",
  "includeAnalysis": true
}
  1. Find by criteria:

{
  "industry": "Information Technology & Services",
  "minAmount": 100000,
  "stage": "Closed Won",
  "limit": 20
}

opportunity_insights

Generate detailed insights and analytics from opportunity data including pipeline health, performance metrics, and trends.

{
  timeframe?: string;              // Optional: 'current_quarter', 'last_quarter', etc.
  includeStageAnalysis?: boolean;  // Optional: Stage distribution analysis (default: true)
  includeOwnerPerformance?: boolean; // Optional: Owner performance metrics (default: true)
  includeIndustryTrends?: boolean; // Optional: Industry trends (default: true)
  includePipelineHealth?: boolean; // Optional: Pipeline health analysis (default: true)
  includeConversionRates?: boolean; // Optional: Conversion rates (default: true)
  minAmount?: number;             // Optional: Minimum amount filter
  maxAmount?: number;             // Optional: Maximum amount filter
  industry?: string;              // Optional: Industry filter
  owner?: string;                 // Optional: Owner filter
}

Example:

{
  "timeframe": "current_quarter",
  "includeStageAnalysis": true,
  "includeOwnerPerformance": true,
  "minAmount": 50000
}

generate_business_case

Generate a professional business case document for an opportunity. Returns step-by-step instructions for creating a formatted business case using TeXFlow.

{
  opportunityId: string;    // Required: The ID of the Salesforce opportunity
  clientName?: string;      // Optional: Client name for the document title
  outputFormat?: string;    // Optional: 'pdf', 'docx', or 'markdown' (default: 'pdf')
}

Example:

{
  "opportunityId": "006XXXXXXXXXX",
  "clientName": "Acme Corporation",
  "outputFormat": "pdf"
}

đŸ“Ļ Response Formats

Paginated Response

Operations that return multiple records use this format:

{
  records: T[];           // Array of records for the current page
  totalSize: number;      // Total number of records
  pageInfo: {
    currentPage: number;  // Current page number
    totalPages: number;   // Total number of pages
    hasNextPage: boolean; // Whether there are more pages after this one
    hasPreviousPage: boolean; // Whether there are pages before this one
  }
}

Error Handling

All tools return errors in a consistent format:

{
  content: [{
    type: "text",
    text: "Error: [error message]"
  }],
  isError: true
}

đŸ’ģ Development

To run the server locally for development:

  1. Set up your environment variables in a .env file

  2. Build the project:

npm run build
  1. Start the server:

node build/index.js

✨ Key Features

  • 🧠 AI-Powered Intelligence: Advanced opportunity analysis, conversation insights, and market intelligence

  • 📊 Pattern Recognition: Identify similar opportunities and success patterns in your pipeline

  • 📋 Business Case Generation: Automated creation of professional business case documents using TeXFlow

  • 🔍 Smart Search: Flexible opportunity search with pattern matching and filtering

  • 📈 Pipeline Analytics: Detailed insights on pipeline health, conversion rates, and performance metrics

  • 🔧 Standard Operations: Full CRUD operations with custom field support

  • 📄 Document Integration: Seamless integration with TeXFlow MCP server for document generation

  • ⚡ Optimized for AI: Response structures designed for AI model consumption

🌟 Future Possibilities

The Salesforce API offers numerous expansion opportunities:

  • Support for more Salesforce objects (Leads, Cases, Contacts, etc.)

  • Integration with Salesforce Flow and Process Builder

  • Enhanced competitive intelligence features

  • Bulk API operations for large datasets

  • Chatter API integration and social selling insights

  • Custom report and dashboard access

  • Advanced forecasting and predictive analytics

We'd love to hear your ideas about what would be most valuable to add next!

🤝 Contributing

We welcome contributions from the community! Whether it's adding new features, improving documentation, or reporting bugs, your input helps make this project better for everyone. Feel free to submit a Pull Request or open an Issue to start a discussion.

📄 License

This project is licensed under the MIT License - see the LICENSE file for details.

Available Tools

11 tools
analyze_conversationB

Analyze conversation activity and engagement patterns for an opportunity. Extracts insights from Gong calls, emails, and other activities to provide engagement recommendations.

ParametersJSON Schema
NameRequiredDescriptionDefault
opportunityIdYesThe ID of the Salesforce opportunity to analyze conversation activity for

TDQS

B3.4/5.0
Behavior2/5

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

No annotations provided, so the description carries full burden. It states 'analyzes' and 'extracts insights' implying read-only behavior but doesn't disclose side effects, permissions, or output format.

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?

Two sentences with no wasted words; front-loaded with the core purpose and efficiently structured.

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 a single parameter and no output schema or annotations, the description covers the tool's purpose, data sources, and output type (engagement recommendations). Adequate for the complexity level.

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

Parameters3/5

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

Schema description coverage is 100% with a clear description for 'opportunityId'. The description adds no extra semantics beyond the schema, so baseline 3 is appropriate.

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 it analyzes conversation activity and extracts insights from specific sources (Gong calls, emails) for an opportunity, which is distinctive from generic siblings like 'analyze'. However, it does not explicitly differentiate from similar siblings like 'enrich_opportunity'.

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 when needing engagement insights for an opportunity, but lacks explicit guidance on when not to use it or mention of alternatives like 'enrich_opportunity'.

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

create_recordB

Create a new record in Salesforce. Supports both standard and custom fields in the data object.

ParametersJSON Schema
NameRequiredDescriptionDefault
dataYesRecord data as key-value pairs. For custom fields, use the API name with __c suffix (e.g., { "Name": "Test", "Custom_Field__c": "Value" })
objectNameYesAPI name of the Salesforce object

TDQS

B3.1/5.0
Behavior2/5

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

No annotations are provided, so the description must disclose behavioral traits. It only states the basic operation and field support, omitting important details like error handling, return value (e.g., record ID), or side effects. This is insufficient for a mutation tool.

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

Conciseness4/5

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

The description is a single sentence of 12 words, very concise. It front-loads the core purpose, but could be slightly more structured (e.g., separating supported fields). Still efficient and to the point.

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

Completeness2/5

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

Given the tool's complexity (create with nested object, no output schema), the description lacks completeness. It doesn't mention the return value (e.g., record ID), potential errors, or behavior for required fields beyond those in the schema. More context is needed for an agent to use this reliably.

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

Parameters3/5

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

Schema coverage is 100%, so the schema already documents both parameters thoroughly. The description adds minimal value by confirming support for custom fields, which is already implied in the schema's custom field example. Baseline 3 is appropriate.

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 specifies the action ('create') and the resource ('a new record in Salesforce'), and differentiates from sibling tools like delete_record or update_record. The mention of supporting both standard and custom fields adds specificity.

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 such as update_record or batch. No explicit when-to-use, prerequisites, or exclusions are stated.

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

delete_recordB

Delete a record from Salesforce

ParametersJSON Schema
NameRequiredDescriptionDefault
recordIdYesID of the record to delete
objectNameYesAPI name of the Salesforce object

TDQS

B3/5.0
Behavior2/5

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

The description only says 'Delete', implying destructive action, but without annotations it fails to disclose whether deletion is permanent, reversible, or has side effects on related data.

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

Conciseness3/5

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

The description is short and front-loaded, but it lacks important details that could be included without being verbose. It is adequately concise but incomplete.

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

Completeness2/5

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

With no output schema, the description fails to explain what the tool returns or what constitutes success/failure. It lacks completeness for a destructive operation.

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

Parameters3/5

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

Schema description coverage is 100%, so the schema already documents both parameters. The description adds no additional meaning beyond what is in the schema.

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 action (Delete) and the resource (a record from Salesforce), which is distinct from sibling tools like create_record or update_record.

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?

No guidance on when to use or when not to use this tool. It does not mention that deletion is permanent, nor does it suggest alternatives like update_record for soft-deletion.

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

execute_soqlA

Execute a SOQL query. Supports both standard and custom fields (custom fields end with __c in their API names). To see which fields this org actually populates on an object, read the salesforce://field-catalog/{objectName} resource — it is ranked, far smaller than a full schema, and works for any object. That catalog is a usage filter rather than a field list: standard fields remain queryable whether or not they appear in it. Use describe_object when you want an object's complete schema.

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYesSOQL query to execute. For custom fields, use the API name (e.g., Project_Status__c)
detailNoResponse detail level (default: summary)
pageSizeNoNumber of records per page (default: 25)
pageNumberNoPage number to retrieve (default: 1)

TDQS

A4.2/5.0
Behavior3/5

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

No annotations provided, so description bears full burden. It implies a read-only operation (query execution) but does not explicitly state it is non-destructive or safe. The description is not contradictory but lacks explicit behavioral disclosure.

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 front-loaded with the main action, uses exactly three sentences with no wasted words, and each sentence adds value (purpose, custom field handling, field discovery guidance).

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?

The tool has 4 parameters with full schema descriptions and no output schema. The description provides extra context about field discovery and alternatives, making it more complete. However, it does not explicitly state the return format or pagination behavior, a minor gap.

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

Parameters3/5

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

Schema description coverage is 100% so baseline is 3. The description adds context for the 'query' parameter regarding custom fields and field catalog, but does not significantly enhance understanding of other parameters beyond their schema descriptions.

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 'Execute a SOQL query' and specifies support for standard and custom fields, distinguishing it from sibling tools like search_fields or list_objects which serve different purposes.

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

Usage Guidelines5/5

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

Provides explicit guidance: to see populated fields, use the field-catalog resource; for complete schema, use describe_object. This clearly tells the agent when and when not to use this tool.

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

generate_business_caseA

Generate a markdown business case report for an opportunity. Fetches opportunity details, contacts, conversation insights, and similar won deals to produce a complete report.

ParametersJSON Schema
NameRequiredDescriptionDefault
clientNameNoOptional client name to override the account name in the report title
opportunityIdYesThe ID of the Salesforce opportunity to generate a business case for

TDQS

A3.8/5.0
Behavior3/5

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

With no annotations, the description carries full burden. It discloses that the tool fetches multiple data sources (read operations) to produce a report, but does not mention side effects, authorization needs, or potential performance implications. The behavior is fairly transparent but lacks detail on output handling or error states.

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 two sentences: first states the core purpose, second details the data sources. No extraneous information, front-loaded with the key verb and resource.

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 output schema, no annotations), the description covers the essential purpose and inputs. It lacks details on output format, error handling, or prerequisites, but overall is sufficiently complete for a straightforward report generator.

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

Parameters3/5

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

Schema coverage is 100% with clear parameter descriptions. The tool description adds context about overall data fetching but does not enhance parameter meaning beyond what the schema already provides. Per calibration, baseline is 3 when schema does the heavy lifting.

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 it generates a markdown business case report for an opportunity and lists the specific data sources (opportunity details, contacts, conversation insights, similar won deals). This distinguishes it from sibling tools like 'get_opportunity_details' (only details) or 'find_similar_opportunities' (only similar deals).

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 use when a complete business case report is needed but does not explicitly state when to use this tool versus alternatives (e.g., 'analyze', 'enrich_opportunity'). No when-not or exclusion criteria are provided.

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

get_opportunity_detailsA

Get detailed information about a Salesforce opportunity including all available fields (both standard and custom), related records, and metadata

ParametersJSON Schema
NameRequiredDescriptionDefault
detailNoResponse detail level (default: full)
fieldsNoExplicit field names to return. Overrides intent if both provided.
intentNoBusiness intent — selects relevant fields automatically. Omit for all fields.
opportunityIdYesThe ID of the Salesforce opportunity to retrieve details for

TDQS

A3.8/5.0
Behavior4/5

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

With no annotations, the description carries full burden. It discloses the tool returns fields, related records, and metadata, indicating a safe read operation. No side effects mentioned, but none expected.

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?

Single sentence, no redundant information, and directly states the tool's function.

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 no output schema, the description adequately outlines what is returned (fields, related records, metadata). Lacks specifics on structure but sufficient for understanding.

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

Parameters3/5

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

Schema has 100% coverage with clear parameter descriptions. The description adds no extra semantic value beyond the schema.

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 tool retrieves detailed information about a Salesforce opportunity, including fields, related records, and metadata. It distinguishes from sibling tools like search_opportunities (searching) and enrich_opportunity (modifying).

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?

No explicit when-to-use or when-not-to-use guidance is provided. The description implies read-only usage but does not address alternatives or prerequisites.

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

get_user_infoB

Get information about the current user

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

B3.2/5.0
Behavior2/5

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

No annotations exist, so the description carries full burden. It only says 'get information', implying a read operation, but does not explicitly state it is non-destructive or describe any other behavioral traits (e.g., no side effects, requires authentication).

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 a single, efficient sentence with no wasted words. It is front-loaded and appropriately sized for a parameterless tool.

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

Completeness3/5

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

Given no output schema and simple action, the description is minimal. It does not specify what fields are returned, leaving ambiguity about the tool's output. However, for a straightforward user info tool, it is passable.

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?

There are zero parameters, and the schema coverage is 100%. Per guidelines, no-parameter tools get a baseline of 4. The description adds no param-specific info, which is acceptable here.

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 retrieves information about the current user. It is specific and distinct from sibling tools, but could be improved by hinting at the type of information returned.

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?

No guidance is provided on when to use this tool vs alternatives, nor any context about prerequisites or typical use cases.

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

list_objectsB

List all available Salesforce objects, including both standard and custom objects

ParametersJSON Schema
NameRequiredDescriptionDefault
pageSizeNoNumber of objects per page (default: 25)
pageNumberNoPage number to retrieve (default: 1)

TDQS

B3.3/5.0
Behavior2/5

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

No annotations provided, so the description must fully disclose behavior. It only states the inclusion of standard and custom objects, omitting details like pagination limits, rate limits, or whether the list is exhaustive of all objects in the org.

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?

Single sentence, front-loaded with the core purpose. No extraneous information.

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

Completeness3/5

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

Given no output schema, the description could hint at the return format (e.g., list of object names or metadata). As is, it is minimally viable but lacks completeness for an agent to fully understand the tool's behavior.

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

Parameters3/5

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

Schema coverage is 100% and both parameters (pageSize, pageNumber) are described in the schema. The description does not add additional meaning beyond what the schema already provides.

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 tool lists all Salesforce objects (standard and custom), with a specific verb ('List') and resource ('available Salesforce objects'). This distinguishes it from sibling tools like 'create_record' or 'execute_soql'.

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?

No guidance on when to use this tool versus alternatives. It does not mention scenarios where it is preferable to use sibling tools like 'describe_object' or 'search_opportunities'.

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

opportunity_insightsC

Generate detailed insights and analytics from opportunity data including pipeline health, performance metrics, industry trends, and strategic recommendations.

ParametersJSON Schema
NameRequiredDescriptionDefault
ownerNoFilter analysis to specific owner
industryNoFilter analysis to specific industry
maxAmountNoMaximum opportunity amount for analysis
minAmountNoMinimum opportunity amount for analysis
timeframeNoTime period for analysis
includeStageAnalysisNoInclude stage distribution and conversion analysis (default: true)
includeIndustryTrendsNoInclude industry-specific performance trends (default: true)
includePipelineHealthNoInclude pipeline health and timing analysis (default: true)
includeConversionRatesNoInclude stage conversion rate analysis (default: true)
includeOwnerPerformanceNoInclude individual owner performance metrics (default: true)

TDQS

C2.8/5.0
Behavior1/5

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

No annotations exist, so the description must convey behavioral traits. It only states 'generate insights' without mentioning whether the tool is read-only, does it mutate data, require authentication, or has rate limits. Complete lack of transparency.

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

Conciseness4/5

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

The description is a single concise sentence that front-loads the key value proposition. It wastes no words, though it could benefit from bullet points or structured sections for clarity given the tool's complexity.

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

Completeness3/5

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

With 10 parameters and no output schema, the description provides a broad overview of capabilities but misses details like whether results are returned in real-time or stored, and how to optimally combine parameters. Moderately complete for a tool of this complexity.

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

Parameters3/5

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

Schema coverage is 100% with clear parameter descriptions. The description adds context by grouping parameters into categories (pipeline health, performance metrics, etc.), but does not elaborate on how parameters interact or specific formats. Adequate but not exceptional.

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?

Description clearly states the tool generates insights and analytics from opportunity data, listing specific categories like pipeline health and industry trends. However, it does not differentiate from siblings like 'analyze' or 'analyze_conversation', which may cause confusion.

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?

No usage guidelines are provided; the description does not indicate when to use this tool versus alternatives such as 'analyze' or 'get_opportunity_details'. The agent receives no context for decision-making.

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

search_fieldsA

Find the field(s) that carry a concept, when you know what you want to query but not the API name. Searches every scored field on the discovered objects — not just the promoted ones — across API names, labels, and help text, ranked by match strength. Searches the core objects by default; pass objectName to scope to one, which discovers it on demand. Set includeValues to get the value set for matched picklists, so you can write the WHERE clause without a second lookup. The match is lexical, not semantic: it finds fields whose name, label or help text contains the term, so a concept this org names differently will not surface, and an object that has not been discovered is not searched. Read salesforce://field-catalog/{objectName}/all to browse everything on an object.

ParametersJSON Schema
NameRequiredDescriptionDefault
termYesWhat to look for, matched against field API names, labels, and help text (e.g. "ai", "renewal date", "region")
limitNoMaximum matches to return (default: 25, max: 100)
objectNameNoRestrict the search to one object (e.g. Opportunity). Omit to search all discovered core objects.
includeValuesNoInclude the active value set for matched picklist fields (default: false). Free — the values come from metadata already discovered.
minPopulationPctNoDrop fields populated on fewer than this percent of records (0-100). Omit to include sparsely-populated fields, which is often where custom flags live.

TDQS

A4.8/5.0
Behavior5/5

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

No annotations provided, so description bears full burden. Fully discloses limitations: lexical match, only discovered objects, and that includeValues is free. 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.

Conciseness4/5

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

Single paragraph but well-organized with main purpose first. Each sentence adds value. Could be slightly more structured with bullet points, but still concise and clear.

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?

Covers behavior, limitations, and usage context thoroughly. Does not explicitly describe output format, but given no output schema, it mentions ranking. Slightly lacking in output details.

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?

Schema description coverage is 100%, but description adds meaning beyond schema (e.g., default behavior for objectName, cost-free for includeValues, clarification on minPopulationPct).

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?

Clearly states the tool's purpose: finding fields by concept when API name unknown. Describes what is searched (every scored field on discovered objects) and ranking. No sibling tool duplicates this function.

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

Usage Guidelines5/5

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

Explicitly states when to use: when you know what to query but not API name. Provides exclusions (lexical not semantic, only discovered objects). Includes alternative for browsing via field-catalog resource.

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

update_recordA

Update an existing record in Salesforce. Supports updating both standard and custom fields.

ParametersJSON Schema
NameRequiredDescriptionDefault
dataYesRecord data to update as key-value pairs. For custom fields, use the API name with __c suffix (e.g., { "Custom_Field__c": "New Value" })
recordIdYesID of the record to update
objectNameYesAPI name of the Salesforce object

TDQS

A4/5.0
Behavior3/5

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

No annotations provided, so description carries burden. It confirms mutation ('update') and mentions field support, but lacks disclosure of side effects, permissions, partial update behavior, or error handling.

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?

Single sentence, front-loaded with core action and resource. No wasted words; efficient.

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 no output schema or annotations, the description covers core purpose but omits return values, error conditions, and prerequisites. Sufficient for a simple mutation tool but could be more thorough.

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?

Schema coverage is 100%, baseline 3. Description adds value by explaining data as key-value pairs and providing example for custom fields with __c suffix, which aids correct invocation.

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 tool updates an existing record in Salesforce and supports standard and custom fields. This distinguishes it from sibling tools like create_record or delete_record.

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?

No explicit guidance on when to use this tool versus alternatives; it relies on agent knowledge of sibling tool names. Implicitly clear, but no exclusions or examples of situations.

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. 8 tool updatesv0.7.2
    • Removedanalyze
    • Removedbatch
    • Removeddescribe_object
    • Removeddownload_file
    • Removedenrich_opportunity
    • Removedfind_similar_opportunities
    • Addedsearch_fields
    • Removedsearch_opportunities
  2. 17 tool updatesv0.5.0
    • First observedanalyze
    • First observedanalyze_conversation
    • First observedbatch
    • First observedcreate_record
    • First observeddelete_record
    • First observeddescribe_object
    • First observeddownload_file
    • First observedenrich_opportunity
    • First observedexecute_soql
    • First observedfind_similar_opportunities
    • First observedgenerate_business_case
    • First observedget_opportunity_details
    • First observedget_user_info
    • First observedlist_objects
    • First observedopportunity_insights
    • First observedsearch_opportunities
    • First observedupdate_record

TDQS

A3.7/5.0
Disambiguation4/5

Most tools have distinct purposes (CRUD, SOQL, field search, user info). Opportunity-related tools (analyze_conversation, generate_business_case, get_opportunity_details, opportunity_insights) overlap in domain but differ in function; descriptions clarify each tool's specific role. Only minor potential confusion between analyzing conversation insights and generating a business case.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern using snake_case (e.g., create_record, execute_soql, search_fields). No mixed conventions or vague verbs.

Tool Count5/5

11 tools are well-scoped for a Salesforce MCP server, covering CRUD, querying, field search, and opportunity-specific insights. Not too few or too many for the domain.

Completeness4/5

The tool surface covers core CRUD (create, update, delete records) and SOQL for reading any object. Opportunity-specific tools add value. Minor gaps: no dedicated 'get_record' for arbitrary objects (though SOQL suffices) and no bulk operations, but overall sufficient for common Salesforce interactions.

Maintenance

ActivitySlowing
ResponsivenessSyncing

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

  • A
    license
    Not graded
    quality
    D
    maintenance
    Enables natural language interactions with Salesforce, allowing users to query and modify data, manage custom objects and fields, execute Apex code, and perform SOQL/SOSL searches across Salesforce organizations.
    1,965
    MIT
  • A
    license
    A
    quality
    C
    maintenance
    Enables AI assistants to interact with Salesforce through a secure interface for performing CRUD operations, executing SOQL queries, and managing schema discovery. It features a smart learning system that analyzes custom objects and fields to provide intelligent assistance tailored to specific Salesforce configurations.
    14
    19
    17
    BSD 2-Clause "Simplified"
  • A
    license
    A
    quality
    B
    maintenance
    Enables interaction with Salesforce orgs to perform operations like querying data with SOQL, managing records, and executing Apex code. It provides configurable access levels and support for both standard and Tooling APIs via natural language interfaces.
    11
    MIT
  • 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.
    37
    -

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/aaronsb/salesforce-cloud'

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