@nimba/mcp
v0.1.1
Published
Model Context Protocol server for Nimba: drive Salesforce DevOps flows and tasks from an AI agent.
Readme
@nimba/mcp
The Model Context Protocol server for Nimba. It exposes Nimba's Salesforce DevOps flows and tasks as MCP tools, so an AI agent (Claude Desktop, Claude Code, or any MCP client) drives the exact same engine as the CLI.
Part of Nimba, modern Salesforce DevOps orchestration in TypeScript.
Install
npm install -g @nimba/mcpOr run on demand with npx -y @nimba/mcp.
Configure an MCP client
Add Nimba to your client's MCP server config (Claude Desktop shown):
{
"mcpServers": {
"nimba": {
"command": "npx",
"args": ["-y", "@nimba/mcp"]
}
}
}Tools
A sibling transport of the CLI and HTTP server — every tool is a thin wrapper over the shared @nimba/runtime operations:
nimba_list_flows,nimba_flow_info— inspect flows (read-only)nimba_list_tasks— inspect tasks (read-only)nimba_run_flow,nimba_run_task— execute (mutating)
Each tool carries read/mutate annotations, so MCP clients can let the read-only tools run freely while gating the mutating ones behind confirmation.
Requirements
- Node.js >= 20
