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

@iflow-mcp/certinia-apex-log-mcp

v1.0.0

Published

MCP server that gives AI assistants tools to analyze Salesforce Apex debug logs for performance bottlenecks, slow methods, and governor limit usage.

Readme

Apex Log MCP Server

npm version CI License Node.js TypeScript

An MCP server that gives AI assistants tools to analyze Salesforce Apex debug logs for performance bottlenecks, slow methods, and governor limit usage.

Give your AI assistant — Claude, Copilot, or any MCP-compatible client — the ability to parse Apex debug logs and surface the performance insights that matter. Instead of scrolling through thousands of log lines, ask your assistant to find what's slow and why.

Quick Start | What You Can Do | Tools Reference | Configuration | How It Works | Documentation | Contributing | Contributors | License

Quick Start

Add to your MCP client configuration (claude_desktop_config.json, VS Code mcp.json, etc.):

{
  "mcpServers": {
    "apex-log-mcp": {
      "command": "npx",
      "args": ["-y", "@certinia/apex-log-mcp"]
    }
  }
}

That's it. Open a conversation and ask your AI assistant to analyze an Apex debug log.

What You Can Do

Ask your AI assistant to work with Apex debug logs using natural language:

  • "Give me a summary of this debug log"
  • "Show me the 5 slowest methods in the default namespace"
  • "Are we approaching any governor limits in this transaction?"
  • "Run this Apex against my scratch org and analyze the performance"

Tools Reference

analyze_apex_log_performance

Rank methods in an Apex debug log by self-execution time. Returns method names, durations (in ms), SOQL/DML counts, and optimization recommendations. Best for finding which specific methods to optimize.

| Parameter | Type | Required | Description | | ------------- | ------ | -------- | ----------------------------------------------------------------- | | logFilePath | string | Yes | Absolute path to the Apex debug log file (.log) | | topMethods | number | No | Number of slowest methods to return (default: 10) | | minDuration | number | No | Minimum duration in milliseconds to include a method (default: 0) | | namespace | string | No | Filter methods by namespace |

get_apex_log_summary

Get a high-level summary of an Apex debug log including total execution time (in ms), method count, SOQL/DML totals, governor limits, and active namespaces. Best for a quick overview before deeper analysis.

| Parameter | Type | Required | Description | | ------------- | ------ | -------- | ----------------------------------------------- | | logFilePath | string | Yes | Absolute path to the Apex debug log file (.log) |

find_performance_bottlenecks

Check whether an Apex log transaction is approaching governor limits (flags usage above 80%). Analyzes CPU time, SOQL/DML limits, query rows, and method execution patterns by namespace. Best for checking if a transaction is at risk of hitting governor limits.

| Parameter | Type | Required | Description | | -------------- | ------ | -------- | ---------------------------------------------------- | | logFilePath | string | Yes | Absolute path to the Apex debug log file (.log) | | analysisType | string | No | Type of analysis (default: all). See values below. |

analysisType values:

| Value | Description | | ---------- | ------------------------------------------------------ | | cpu | Checks CPU time governor limit | | database | Checks SOQL query, DML statement, and query row limits | | methods | Groups methods by namespace with duration totals | | all | Runs all three analysis types (default) |

execute_anonymous

Executes anonymous Apex code against any authenticated Salesforce org. Saves the resulting debug log to a local file and returns a summary with the file path. Use the file path with get_apex_log_summary, analyze_apex_log_performance, or find_performance_bottlenecks for deeper analysis.

| Parameter | Type | Required | Description | | ------------ | ---------------- | -------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | | apex | string | Yes | The anonymous Apex to be executed | | targetOrg | string | No | Alias or username of the target Salesforce org. Uses the project default if not specified. | | outputDir | string | No | Directory to save the debug log file. Defaults to .apex-log-mcp/ in the project root. | | debugLevel | string | object | No | Controls the trace flag debug levels. Use "default" to reset all categories to defaults, a log level string (e.g. "FINEST") to set all categories to that level, or an object to override specific categories. Omit to keep existing config. |

debugLevel as an object — override specific categories, the rest keep their defaults:

{ "database": "FINEST", "apexCode": "FINE" }

Each category accepts a log level: NONE, ERROR, WARN, INFO, DEBUG, FINE, FINER, FINEST

Default debug levels (used when debugLevel is omitted):

| Category | Default Level | | --------------- | ------------- | | apexCode | FINE | | apexProfiling | FINE | | callout | DEBUG | | database | FINEST | | nba | INFO | | system | DEBUG | | validation | DEBUG | | visualforce | FINE | | wave | INFO | | workflow | FINE |

Example prompts:

  • "Execute this Apex and show me the log: System.debug('Hello');"
  • "Run a query for all Accounts and analyze the performance"
  • "Execute this Apex with all debug levels set to FINEST"
  • "Run this Apex against my QA org with database logging set to FINEST"

Note: Requires --allowed-orgs to be configured. Uses the project's default org unless targetOrg is specified. The debug log is saved to a local file (default: .apex-log-mcp/) and the response includes the file path, org username (and alias, if set), and execution summary. Add .apex-log-mcp/ to your .gitignore to avoid committing debug logs.

Configuration

The Quick Start configuration is all you need for log analysis tools. The sections below cover enabling execute_anonymous.

Enabling execute_anonymous

The execute_anonymous tool is disabled by default. To enable it, pass --allowed-orgs with a comma-separated list of allowed orgs:

{
  "mcpServers": {
    "apex-log-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@certinia/apex-log-mcp",
        "--allowed-orgs",
        "ALLOW_ALL_ORGS"
      ]
    }
  }
}

Allowed org tokens

| Token | Description | | ------------------------ | ------------------------------------------------------------------------ | | ALLOW_ALL_ORGS | Permits execution against any authenticated org | | DEFAULT_TARGET_ORG | Resolves the project/global default target-org from Salesforce CLI | | DEFAULT_TARGET_DEV_HUB | Resolves the project/global default target-dev-hub from Salesforce CLI |

You can also pass org usernames or aliases directly:

"args": ["-y", "@certinia/apex-log-mcp", "--allowed-orgs", "[email protected],my-scratch-org"]

How It Works

This server implements the Model Context Protocol (MCP) to expose Apex log analysis as tools that any MCP-compatible AI client can call.

  • Runs as a local process — your AI client spawns the server and communicates locally. No network requests, no API keys.
  • Uses the same parser as the Apex Log Analyzer VS Code extension — battle-tested parsing of the Apex debug log format.
  • Returns structured data — all durations in milliseconds, governor limits as used/limit pairs, methods with SOQL/DML counts — so your AI assistant can reason about the results.

Documentation

Related Projects

Contributing

We welcome contributions! Please see our Contributing Guide for details.

Contributors

Thanks to our amazing contributors!

License