Salesforce Support MCP
Creates Salesforce Case records through the Salesforce REST API and provides an interactive support form for submitting cases with picklist options.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Salesforce Support MCPopen support form to submit a new case"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Salesforce Support MCP
MCP UI app that renders an interactive support form and creates Salesforce Case records through the Salesforce REST API.
Transport (Streamable HTTP by default)
This server speaks MCP over Streamable HTTP on /mcp using @modelcontextprotocol/sdk’s StreamableHTTPServerTransport. That is the default when you run node dist/main.js, npm run start, npm run dev, or npm run serve (no --stdio flag).
Base URL:
http://localhost:3001/mcp(override port withPORTin.envor the environment).CORS: enabled so browser-based MCP hosts (for example MCP Apps basic-host) can call the endpoint.
Point any MCP client that supports Streamable HTTP at that URL. Example shape (exact keys depend on your client):
{
"mcpServers": {
"salesforce-support": {
"url": "http://localhost:3001/mcp"
}
}
}Stdio is optional: run with --stdio (see Alternative: stdio) for hosts that only support process-based transports.
Related MCP server: Salesforce MCP Server
Tools Exposed
open_support_form(model-visible): opens the iframe UI form.get_support_form_options(app-only): loads Case picklist options (Priority,Type,Origin,Status).submit_support_case(app-only): validates and submits Case data.
Scripts
npm run dev: watch UI bundle and run the MCP server (Streamable HTTP, default).npm run build: build UI and compile server code.npm run start: production build then run Streamable HTTP (node dist/main.js).npm run serve/npm run serve:stdio:tsx watchvariants (HTTP default; add--stdiofor stdio).npm run start:stdio: same asstartbut stdio transport (--stdio).npm run check-auth: smoke-test auth strategy resolution.
Environment
Copy .env.example to .env and configure at least one auth strategy.
Auth fallback order:
Static token (
SF_ACCESS_TOKEN+SF_INSTANCE_URL)OAuth username/password (
SF_CLIENT_ID,SF_CLIENT_SECRET,SF_USERNAME,SF_PASSWORD)Salesforce CLI (
sf org display --json)
If none is configured, the form still opens but submitting fails with an auth error.
Local Verification (basic-host)
1) Build and start this MCP server
From the repository root:
npm install
npm run build
node dist/main.jsExpected log:
MCP server listening on http://localhost:3001/mcp2) Start the MCP Apps basic host
From ext-apps-main/examples/basic-host:
npm install --ignore-scripts
npm run build
npx tsx serve.tsExpected log:
Host server: http://localhost:8080
Sandbox server: http://localhost:80813) Browser smoke test
Open
http://localhost:8080.Select the local MCP server endpoint (
http://localhost:3001/mcp).Select tool
open_support_form.Click Call Tool.
Confirm form title appears:
Submit Salesforce Support Request.Fill required fields (
Subject,Description) and click Submit Support Case.Verify success banner with
CaseNumberorCase Id.
Current Validation Notes
UI rendering path is verified (host connects, tool renders iframe form).
If Salesforce auth is not configured, submit path returns a clear runtime error message.
Server-side validation maps Salesforce/API errors back to field-level UI errors where possible.
Alternative: stdio for desktop hosts
If your MCP host only supports stdio, build once then run Node with --stdio:
{
"mcpServers": {
"salesforce-support": {
"command": "node",
"args": ["<ABSOLUTE_PATH_TO_REPO>/dist/main.js", "--stdio"]
}
}
}This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/charley-forey/salesforce-support-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server