// MAHAKALP

Salesforce
Intelligence
Platform

Deep Salesforce knowledge for every AI tool and every team. An MCP server you can install today, and a desktop IDE arriving soon.

Org Context
Tribal Knowledge
Conflict Detection
ORDER OF EXECUTION
Account save
Before Triggers
AccountTrigger.cls
+2 SOQL
Validation Rules
Account_Must_Have_Industry
After Triggers
AccountAfterTrigger.cls
+3 SOQL
Record-Triggered Flow
Update_Account_Rating
Rollup Summary
Total_Opportunities__c
Commit
Transaction complete
8/100 SOQL
TOOL CALLS
sf_describe_objectsuccess
read_filesuccess
sf_execute_soqlsuccess
get_diagnosticssuccess

10

MCP Tools

46

Tribal Knowledge Rules

Works with Claude Code·Cursor·VS Code Copilot·Windsurf·Cline·Zed·Continue·and any MCP-compatible client

// PRODUCTS

Two products, one platform

Whether you use your own AI tools or want a dedicated Salesforce IDE, Mahakalp has you covered.

Available Now

Mahakalp MCP

Salesforce intelligence for any AI tool

An open-source MCP server that makes Claude Code, Cursor, VS Code Copilot, and any MCP-compatible tool a Salesforce expert. Install in under a minute.

  • Works with your existing AI tools
  • Governor limits and best practices
  • Documentation and release intelligence
  • No Salesforce org required
Coming Soon

Mahakalp IDE

Org-connected intelligence for Salesforce teams

A desktop IDE with a code intelligence engine that indexes your org's triggers, flows, and metadata — giving AI the full context it needs to build on Salesforce.

  • Semantic code search across your org
  • AI that understands your metadata
  • Multi-org workspace management
  • Conflict detection and anti-patterns

// THE DIFFERENCE

Same prompt.
Different intelligence.

See what happens when AI actually understands Salesforce.

"Write an after-insert trigger on Account that creates a default Contact"
Generic AI
trigger CreateDefaultContact on Account (after insert) {
    for (Account acc : Trigger.new) {
        Contact c = new Contact();
        c.LastName = 'Default Contact';
        c.AccountId = acc.Id;
        insert c;
    }
}
  • DML inside loop — hits governor limits at 200 records
  • No check for existing triggers on Account
  • No handler pattern — untestable
  • No recursion guard
With Mahakalp
MCP
trigger AccountTrigger on Account (after insert) {
    AccountTriggerHandler.onAfterInsert(Trigger.new);
}

public class AccountTriggerHandler {
    private static Boolean hasRun = false;

    public static void onAfterInsert(List<Account> accounts) {
        if (hasRun) return;
        hasRun = true;

        List<Contact> contacts = new List<Contact>();
        for (Account acc : accounts) {
            contacts.add(new Contact(
                LastName = 'Default Contact',
                AccountId = acc.Id
            ));
        }
        insert contacts;
    }
}
  • Handler pattern — testable and maintainable
  • Recursion guard prevents infinite loops
  • Bulkified DML — safe at any volume
  • Follows one-trigger-per-object best practice

Governor Limits

Generic AI doesn't know about Salesforce's 150 DML limit. Mahakalp bulkifies by default.

Org Awareness

Mahakalp knows what automation already exists on your objects and avoids conflicts.

Tribal Knowledge

46 rules from production experience. Handler patterns, recursion guards, naming conventions.

// THE INTELLIGENCE SPECTRUM

From platform expertise
to org-level precision.

Without Salesforce context, AI is a hammer — powerful but imprecise. MCP gives it expertise. The IDE gives it precision.

MCP

Documentation Search

Search the full Salesforce documentation corpus. Your AI cites official docs, not hallucinations.

MCP

Tribal Knowledge

Best practices, common pitfalls, governor limit patterns — the expertise that lives in senior devs' heads.

MCP

Release Intelligence

What changed in each Salesforce release. Your AI knows what's new, deprecated, or risky to use.

MCP

SOQL Optimizer

Analyzes queries for governor limit risks, missing indexes, and bulkification issues before they hit production.

MCP

Apex Library Reference

Complete Apex class and method reference. Your AI writes code using real APIs, not invented ones.

MCP

Best Practices Engine

Order of execution, trigger patterns, bulk-safe patterns — enforced at generation time, not caught in review.

IDE · Coming Soon

Semantic Code Search

Search your org's Apex, LWC, and Flows by intent, not just text. Find 'where do we calculate tax?' across 10k files.

IDE · Coming Soon

Org Metadata Understanding

Your AI sees your custom objects, fields, profiles, and permissions. It writes code that fits your schema.

IDE · Coming Soon

Conflict Detection

Catches SOQL in loops, DML in loops, trigger conflicts, and governor limit risks across your entire codebase.

// GETTING STARTED

Up and running
in under a minute.

Choose your path. Both start free.

01

Install via npx

One command. No global install. No account needed.

npx -y @mahakalp/salesforce-mcp
02

Add to your editor

Paste the config snippet into Claude Code, Cursor, or VS Code. Takes 30 seconds.

03

Start coding

Your AI now has deep Salesforce knowledge. Ask it anything.

No org connection needed. Works immediately.

// INSTALL

Start in one command.
Configure in 30 seconds.

Mahakalp MCP runs locally via npx. No global install, no account, no API key needed for the free tier.

Coming Soon

Everything in MCP + your connected org. Coming soon for macOS, Windows, and Linux.

Join IDE Waitlist

Install

npx -y @mahakalp/salesforce-mcp

Editor Config

.mcp.json (project root)
{
  "mcpServers": {
    "salesforce": {
      "command": "npx",
      "args": [
        "-y",
        "@mahakalp/salesforce-mcp"
      ]
    }
  }
}

// TRUST

Built for security

Every claim is verifiable. No certifications we haven't earned, no badges we can't back up.

Open Source

MIT licensed. Inspect every line of code.

View on GitHub

No Org Data

MCP reads platform docs, never your org data. No Salesforce connection required.

Local Execution

Runs on your machine via stdio. No cloud processing, no data leaves your network.

Transparent Pricing

No hidden fees. Free tier with no credit card. Pro at $9/mo.

Read-Only Access

IDE only

The IDE connects via read-only OAuth. We never modify your org.

// STOP FLYING BLIND

Your AI is guessing.
Make it know.

Without Salesforce context, every AI tool is a hammer — powerful but imprecise. Mahakalp turns it into a scalpel. Start free with MCP today. Go deeper with the IDE when it arrives.

Generic AI

The hammer

  • Reads files
  • Follows prompts
  • Guesses patterns

+ MCP

The sharp knife

  • Platform docs
  • Tribal knowledge
  • Best practices
  • Governor limits

+ IDE

Coming Soon

The scalpel

  • Your org schema
  • Your custom code
  • Live metadata
  • Conflict detection
MCP is free & open-source
No credit card required
60-second install