npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

salesforce-mcp-server

v0.2.1

Published

MCP server for Salesforce Tooling API integration

Readme

Salesforce Tooling API MCP Server

A Model Context Protocol (MCP) server that provides comprehensive access to Salesforce Tooling API functionality through Claude and other compatible AI assistants.

Features

🔧 Metadata Management

  • Apex Class Tools: CRUD operations for Apex classes
  • Apex Trigger Tools: CRUD operations for Apex triggers
  • Visualforce Tools: CRUD operations for Visualforce pages

🔍 Query & Search

  • SOQL Query Tools: Execute Tooling API queries with SOQL
  • Metadata Search: Search across different metadata types
  • Object Describe: Get schema information for Tooling API objects

📊 Code Analysis & Quality

  • Code Coverage Tools: Analyze test coverage for classes and triggers
  • Symbol Table Tools: Analyze code structure, dependencies, and get completion suggestions
  • Performance Tools: Analyze SOQL query performance

🐛 Development & Debugging

  • Debug Tools: Access debug logs and heap dumps
  • Test Execution: Run Apex tests and get results
  • Syntax Validation: Validate Apex code syntax

🔒 Security & Governance

  • Security Tools: Check Apex sharing declarations and permissions
  • Org Management: Get organization information and available objects

Installation

  1. Clone this repository:
git clone <repository-url>
cd salesforce-mcp
  1. Install dependencies:
npm install
  1. Build the project:
npm run build

Configuration

Configure your Salesforce connection using environment variables:

SF CLI Authentication

The MCP server uses Salesforce CLI authentication. Make sure you have authenticated to your org using the Salesforce CLI:

# Use default authenticated org
npm run dev

# Specify a particular org by alias
export SF_TARGET_ORG="myorg"
npm run dev

# Or specify by username
export SF_TARGET_ORG="[email protected]"
npm run dev

Prerequisites:

  • Install Salesforce CLI: https://developer.salesforce.com/tools/cli
  • Authenticate to your org: sf org login web
  • Verify authentication: sf org list

Usage

Running the MCP Server

# Development mode
npm run dev

# Production mode (after build)
./build/index.js

Claude Code CLI Configuration

claude mcp add salesforce-mcp -s project \
  -e SF_TARGET_ORG=myorg \
  -- npx salesforce-mcp-server@latest

Available Tools

REST API Tools

  • search_async_apex_jobs - Search AsyncApexJob records with filtering by status, job type, Apex class name, date range
  • get_async_apex_job - Get detailed information about a specific AsyncApexJob by ID
  • call_rest_api - Make generic REST API calls to Salesforce
  • get_org_limits - Get organization limits information
  • get_sobjects_list - Get list of all available SObjects
  • describe_sobject - Describe a specific SObject schema

Apex Class Management

  • list_apex_classes - List all Apex classes with optional filtering
  • get_apex_class - Get detailed information about a specific Apex class
  • create_apex_class - Create a new Apex class
  • update_apex_class - Update an existing Apex class
  • delete_apex_class - Delete an Apex class

Apex Trigger Management

  • list_apex_triggers - List all Apex triggers
  • get_apex_trigger - Get detailed information about a specific trigger
  • create_apex_trigger - Create a new Apex trigger
  • update_apex_trigger - Update an existing trigger
  • delete_apex_trigger - Delete a trigger

Visualforce Page Management

  • list_apex_pages - List all Visualforce pages
  • get_apex_page - Get detailed information about a specific page
  • create_apex_page - Create a new Visualforce page
  • update_apex_page - Update an existing page
  • delete_apex_page - Delete a page

Query & Analysis Tools

  • execute_tooling_query - Execute SOQL queries against Tooling API
  • describe_tooling_object - Get schema information for Tooling objects
  • search_metadata - Search for metadata across different types
  • get_code_coverage - Get code coverage information
  • get_org_coverage - Get organization-wide coverage statistics
  • get_symbol_table - Analyze code structure and symbols
  • analyze_dependencies - Analyze code dependencies
  • get_completion_suggestions - Get code completion suggestions

Development Tools

  • run_tests - Execute Apex tests
  • get_test_results - Get test execution results
  • get_debug_logs - Retrieve debug logs
  • get_debug_log_body - Get full debug log content
  • validate_syntax - Validate Apex code syntax
  • check_apex_sharing - Check Apex sharing declarations
  • analyze_soql_performance - Analyze SOQL query performance
  • get_org_info - Get organization information
  • list_sobjects - List available SObjects

Example Usage with Claude

Once the MCP server is running and connected to Claude, you can use natural language commands like:

  • "Search for completed AsyncApexJob records for BatchProcessor class"
  • "Get details of AsyncApexJob with ID 707XXXXXXXXXXXXXXX"
  • "Find all failed batch jobs from the last week"
  • "List all Apex classes that contain 'Account' in their name"
  • "Show me the code coverage for all classes below 75%"
  • "Get the symbol table for the AccountTriggerHandler class"
  • "Create a new Apex class called TestUtils with basic utility methods"
  • "Run all tests and show me the results"

Development

Project Structure

src/
├── auth/           # Salesforce authentication
├── client/         # Tooling API HTTP client
├── tools/          # MCP tool implementations
├── types/          # TypeScript type definitions
├── utils/          # Utility functions
└── index.ts        # Main server entry point

Available Scripts

  • npm run build - Build the TypeScript project
  • npm run dev - Run in development mode with hot reload
  • npm run watch - Watch mode for TypeScript compilation
  • npm run lint - Run ESLint
  • npm run format - Format code with Prettier
  • npm test - Run tests

Requirements

  • Node.js 18+
  • Valid Salesforce org with API access
  • Salesforce CLI installed and authenticated

License

MIT License - see LICENSE file for details