A Model Context Protocol (MCP) server that provides AI agents with secure access to Salesforce data and operations. Built for sales, marketing, and executive teams to interact with their Salesforce CRM through natural language.
- π Search & Query: Search records across multiple objects, execute SOQL queries, and perform global searches
- π Read Operations: Retrieve specific records and navigate relationships
- π Security-First: Starts in read-only mode by default for safe testing
- π Secure Authentication: OAuth 2.0 integration with proper token management
- β‘ Error Handling: Comprehensive error handling with detailed feedback
- Read-Only by Default: Server starts in safe read-only mode
- Configurable Write Access: Enable write operations only when ready with
SALESFORCE_READ_ONLY_MODE=false
- Clear Operation Indicators: Write tools clearly marked in descriptions
- Accounts: Company and organization records
- Contacts: Individual contact information
- Leads: Prospective customer records
- Opportunities: Sales pipeline and deals
- Cases: Customer service and support tickets
- Activities: Tasks and events
π For complete setup instructions, see SETUP.md
This includes:
- Salesforce Connected App configuration
- Claude Desktop integration
- Step-by-step screenshots and troubleshooting
Option 1: NPX from GitHub
npx github:tomnagengast/mcp-server-salesforce
Option 2: Clone and Build
git clone https://github.com/tomnagengast/mcp-server-salesforce.git
cd mcp-server-salesforce
npm install
npm run build
Configuration: See SETUP.md for complete setup instructions including Salesforce Connected App configuration.
Create a .env
file with the following configuration:
# Salesforce Configuration
SALESFORCE_LOGIN_URL=https://login.salesforce.com
SALESFORCE_CLIENT_ID=your_connected_app_client_id
SALESFORCE_CLIENT_SECRET=your_connected_app_client_secret
SALESFORCE_USERNAME=your_salesforce_username
SALESFORCE_PASSWORD=your_salesforce_password
SALESFORCE_SECURITY_TOKEN=your_security_token
# For Sandbox (optional)
# SALESFORCE_LOGIN_URL=https://test.salesforce.com
# Server Configuration
PORT=3000
LOG_LEVEL=info
# Security - Server starts in READ-ONLY mode by default
SALESFORCE_READ_ONLY_MODE=true
π Security Note: The server starts in read-only mode by default. Set
SALESFORCE_READ_ONLY_MODE=false
only when you're comfortable with write operations.
Add this to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json
on macOS):
For NPX installation:
{
"mcpServers": {
"salesforce": {
"command": "npx",
"args": ["github:tomnagengast/mcp-server-salesforce"],
"env": {
"SALESFORCE_CLIENT_ID": "your_client_id",
"SALESFORCE_CLIENT_SECRET": "your_client_secret",
"SALESFORCE_USERNAME": "your_username",
"SALESFORCE_PASSWORD": "your_password",
"SALESFORCE_SECURITY_TOKEN": "your_token",
"SALESFORCE_READ_ONLY_MODE": "true"
}
}
}
}
For local installation:
{
"mcpServers": {
"salesforce": {
"command": "node",
"args": ["/path/to/your/mcp-server-salesforce/dist/index.js"],
"cwd": "/path/to/your/mcp-server-salesforce"
}
}
}
See SETUP.md for complete integration instructions.
# Development mode with hot reload
npm run dev
# Production mode
npm run start
search_records - Search across multiple Salesforce objects
{
"query": "Acme Corp",
"objects": ["Account", "Contact", "Lead"],
"limit": 20
}
soql_query - Execute custom SOQL queries
{
"query": "SELECT Id, Name, Email FROM Contact WHERE Account.Name = 'Acme Corp'"
}
global_search - Global search across all objects
{
"searchTerm": "[email protected]",
"limit": 20
}
get_record - Retrieve a specific record
{
"objectType": "Account",
"recordId": "001XXXXXXXXXX",
"fields": ["Name", "Type", "Industry"]
}
get_related_records - Get related records
{
"objectType": "Account",
"recordId": "001XXXXXXXXXX",
"relationship": "Contacts",
"limit": 20
}
get_record_history - View field history
{
"objectType": "Opportunity",
"recordId": "006XXXXXXXXXX",
"limit": 20
}
β οΈ These operations modify your Salesforce data. Only enable when you're comfortable with the server's behavior.
create_record - Create a new record
{
"objectType": "Contact",
"data": {
"FirstName": "John",
"LastName": "Doe",
"Email": "[email protected]"
}
}
update_record - Update an existing record
{
"objectType": "Account",
"recordId": "001XXXXXXXXXX",
"data": {
"Phone": "+1-555-0123"
}
}
delete_record - Delete a record
{
"objectType": "Lead",
"recordId": "00QXXXXXXXXXX"
}
When you're ready to enable write operations:
-
Update environment:
# In your .env file SALESFORCE_READ_ONLY_MODE=false
-
Or in Claude Desktop config:
{ "mcpServers": { "salesforce": { "command": "node", "args": ["/path/to/your/mcp-server-salesforce/dist/index.js"], "env": { "SALESFORCE_READ_ONLY_MODE": "false", // ... other env vars } } } }
-
Restart the server and Claude Desktop
- Pipeline Management: "Show me all opportunities closing this quarter"
- Account Research: "Find all contacts at Acme Corp with their recent activities"
- Lead Follow-up: "Find all leads from yesterday's trade show" (read-only) or "Create tasks for all leads from yesterday's trade show" (write mode)
- Campaign Analysis: "Show ROI for Q4 digital campaigns"
- Lead Scoring: "Find high-score leads that haven't been contacted"
- Content Performance: "Which campaigns generated the most qualified leads?"
- Revenue Forecasting: "What's our pipeline by region for next quarter?"
- Performance Metrics: "Show top performers by closed revenue this month"
- Customer Health: "List top 20 accounts and their recent engagement"
npm run build # Build TypeScript
npm run dev # Development with hot reload
npm run start # Start production server
npm run lint # Run ESLint
npm run test # Run tests (when implemented)
src/
βββ auth/ # Salesforce authentication
βββ tools/ # MCP tool implementations
β βββ search-tools.ts # Search and query tools
β βββ crud-tools.ts # CRUD operations
β βββ relationship-tools.ts # Relationship navigation
βββ types/ # TypeScript type definitions
βββ utils/ # Utilities and helpers
β βββ config.ts # Configuration management
β βββ logger.ts # Logging utilities
β βββ error-handler.ts # Error handling
βββ index.ts # Main server entry point
- OAuth 2.0: Secure authentication with Salesforce
- Permission Respect: All operations respect Salesforce user permissions
- Input Validation: SOQL injection prevention and input sanitization
- Error Handling: Secure error messages without sensitive data exposure
Authentication Failed
- Verify your Salesforce credentials
- Check if your IP is allowlisted in Salesforce
- Ensure the security token is current
Permission Denied
- Verify user has appropriate object permissions
- Check field-level security settings
- Ensure profile has API access enabled
API Limits
- Monitor API usage in Salesforce Setup
- Implement rate limiting if needed
- Consider using bulk operations for large datasets
- Fork the repository
- Create a feature branch
- Make your changes
- Run tests and linting
- Submit a pull request
MIT License - see LICENSE file for details.