// 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.
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.
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
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.
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
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.
Documentation Search
Search the full Salesforce documentation corpus. Your AI cites official docs, not hallucinations.
Tribal Knowledge
Best practices, common pitfalls, governor limit patterns — the expertise that lives in senior devs' heads.
Release Intelligence
What changed in each Salesforce release. Your AI knows what's new, deprecated, or risky to use.
SOQL Optimizer
Analyzes queries for governor limit risks, missing indexes, and bulkification issues before they hit production.
Apex Library Reference
Complete Apex class and method reference. Your AI writes code using real APIs, not invented ones.
Best Practices Engine
Order of execution, trigger patterns, bulk-safe patterns — enforced at generation time, not caught in review.
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.
Org Metadata Understanding
Your AI sees your custom objects, fields, profiles, and permissions. It writes code that fits your schema.
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.
Install via npx
One command. No global install. No account needed.
npx -y @mahakalp/salesforce-mcpAdd to your editor
Paste the config snippet into Claude Code, Cursor, or VS Code. Takes 30 seconds.
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.
Everything in MCP + your connected org. Coming soon for macOS, Windows, and Linux.
Join IDE WaitlistInstall
npx -y @mahakalp/salesforce-mcpEditor Config
{
"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.
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 onlyThe 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
The scalpel
- Your org schema
- Your custom code
- Live metadata
- Conflict detection