Metadata-Version: 2.4
Name: cloudsense-dx-mcp
Version: 0.2.0
Summary: MCP server for CloudSense DX operations (orchestration templates, etc.)
License-Expression: MIT
Requires-Python: >=3.10
Requires-Dist: mcp>=1.0.0
Requires-Dist: pydantic>=2.0.0
Description-Content-Type: text/markdown

# CloudSense DX MCP Server

An MCP (Model Context Protocol) server for CloudSense DX operations. Provides tools for managing orchestration process templates and other CloudSense-specific Salesforce operations.

## Installation

```bash
cd itxdevpro/mcp-cloudsense-server
pip install -e .
```

This installs the `cloudsense-dx-mcp` CLI command.

## Usage

### As a Cursor MCP Server

Add to `.vscode/mcp.json`:

```json
{
  "servers": {
    "CloudSense DX": {
      "command": "cloudsense-dx-mcp"
    }
  }
}
```

### Direct CLI

```bash
cloudsense-dx-mcp
```

The server communicates via stdio and is designed to be launched by MCP clients like Cursor.

## Tools

- **list_orchestration_templates** -- List/search orchestration process templates in a Salesforce org.
- **fetch_orchestration_templates** -- Fetch and save orchestration process templates as JSON files.

## Prompts

- **fetch-orchestration** -- Guided workflow that walks through template discovery, confirmation, and fetching.

## Prerequisites

- Salesforce CLI (`sf`) installed and authenticated (`sf org login web`)
- A default target-org set (`sf config set target-org <alias>`)
