MCP Salesforce Lite MCP Server

Simple and lightweight Salesforce MCP server for connecting AI assistants to Salesforce data. Ideal for prototyping and small projects.

Local serverstdioPython

What is the MCP Salesforce Lite MCP server?

Simple and lightweight Salesforce MCP server for connecting AI assistants to Salesforce data. Ideal for prototyping and small projects. That is what the mcp salesforce lite mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.

The short version

This MCP (Model Context Protocol) server provides AI assistants like Claude with secure access to Salesforce data and operations. It implements the MCP standard to enable seamless integration between AI applications and Salesforce CRM.

  • 🔐 Secure Salesforce authentication via OAuth 2.0
  • 📊 Access to Salesforce objects (Accounts, Contacts, Opportunities, etc.)
  • 🔍 SOQL query execution
  • 📝 CRUD operations on Salesforce records
  • 🛡️ Built-in security and rate limiting
  • 🚀 Easy setup and configuration

The tools it exposes

The server publishes 7 tools. What each one is for:

  • soql_query — Execute SOQL queries (schema must be defined to carefully ask for confirmation of UPDATE and DELETE operations)
  • search_records — Search records across multiple objects with limit and pagination
  • get_record — Retrieve a specific record by ID with limit and pagination
  • describe_object_definition — Get object metadata and field information with pagination
  • list_avail_objects — List available Salesforce objects with limit and pagination
  • Installation — The Installation tool exposed by this server
  • Prerequisites — 1. Register for PyPI Production: Go to https://pypi.org/account/register/ 2. Enable 2FA: Set up two-factor authentication in your account

Getting it running

Installation goes through your MCP client rather than a global install: point it at mcp-salesforce-lite on PyPI and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.

What it needs from you

Configuration is passed through the environment: SALESFORCE_ACCESS_TOKEN, SALESFORCE_INSTANCE_URL. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

  • Python 3.10 or higher - Salesforce Developer/Production org - Connected App configured in Salesforce

How it compares

Plenty of developer tooling servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. MCP Salesforce Lite's toolset — soql_query, search_records, get_record and 4 more — is a fair guide to whether it matches your workflow. It is maintained by luvl; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Things to watch

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
soql_queryExecute SOQL queries (schema must be defined to carefully ask for confirmation of UPDATE and DELETE operations)
search_recordsSearch records across multiple objects with limit and pagination
get_recordRetrieve a specific record by ID with limit and pagination
describe_object_definitionGet object metadata and field information with pagination
list_avail_objectsList available Salesforce objects with limit and pagination
InstallationThe Installation tool exposed by this server.
Prerequisites1. **Register for PyPI Production**: Go to https://pypi.org/account/register/ 2. **Enable 2FA**: Set up two-factor authentication in your account settings 3. **Create API Token**: Go to https://pypi.org/manage/account/to

How to install the MCP Salesforce Lite MCP server

{
  "mcpServers": {
    "salesforce-lite": {
      "command": "python",
      "args": ["/ABSOLUTE/PATH/TO/mcp-salesforce-lite/src/mcp_salesforce_lite/server.py"],
      "env": {
        "SALESFORCE_ACCESS_TOKEN": "your_access_token",
        "SALESFORCE_INSTANCE_URL": "your_instance_url"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

  • Python 3.10 or higher - Salesforce Developer/Production org - Connected App configured in Salesforce
VariableDescriptionRequired
SALESFORCE_ACCESS_TOKENCredential the server authenticates with.Yes
SALESFORCE_INSTANCE_URLEndpoint or connection string the server talks to.Yes

Example prompts to try

  • Use MCP Salesforce Lite to soql query.
  • Use MCP Salesforce Lite to search records.
  • Use MCP Salesforce Lite to get record.

Frequently asked questions

It connects MCP Salesforce Lite to MCP-compatible AI assistants such as Claude and Cursor, exposing 7 tools (soql_query, search_records, get_record, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with MCP Salesforce Lite directly.