npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@chriscamp/sf-data-cloud-mcp

v0.1.1

Published

MCP server for Salesforce Data Cloud operations

Readme

@chriscamp/sf-data-cloud-mcp

MCP server for Salesforce Data Cloud operations. Provides 35 tools covering DMOs, calculated insights, transforms, data streams, queries, segments, activations, profiles, and health checks with a smart enhancement layer.

Installation

npx -y @chriscamp/sf-data-cloud-mcp@latest --orgs ALLOW_ALL_ORGS

Prerequisites

  • Node.js 18+
  • Salesforce CLI (sf) with authenticated org
  • Data Cloud enabled on the target org

Configuration

Claude Code

Add to your Claude Code settings:

{
  "mcpServers": {
    "sf-data-cloud": {
      "command": "npx",
      "args": ["-y", "@chriscamp/sf-data-cloud-mcp@latest"]
    }
  }
}

Claude Desktop

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "sf-data-cloud": {
      "command": "npx",
      "args": ["-y", "@chriscamp/sf-data-cloud-mcp@latest"]
    }
  }
}

Tools Reference

All tools require a target_org parameter (Salesforce org alias or username). Write operations require confirm: true to execute (omit for preview).

Health

| Tool | Description | |------|-------------| | doctor | Check Data Cloud connectivity and health |

DMO (Data Model Objects)

| Tool | Description | |------|-------------| | list_dmos | List all Data Model Objects | | describe_dmo | Describe a DMO with its fields | | create_dmo | Create a new DMO | | create_dmo_from_dlo | Create DMO from DLO with auto type correction and mapping | | delete_dmo | Delete a DMO | | list_dmo_mappings | List field mappings between DLO and DMO | | create_dmo_mapping | Create field mapping between DLO and DMO |

Calculated Insights

| Tool | Description | |------|-------------| | list_calculated_insights | List all Calculated Insights | | create_calculated_insight | Create a CI with smart schedule translation | | run_calculated_insight | Trigger a CI run | | get_calculated_insight_status | Get status of a CI | | delete_calculated_insight | Delete a CI |

Query

| Tool | Description | |------|-------------| | query_sql | Execute SQL query against Data Cloud | | describe_table | Describe table columns | | search_vector | Vector similarity search | | search_hybrid | Hybrid keyword+vector search |

Data Streams

| Tool | Description | |------|-------------| | list_data_streams | List all data streams | | describe_data_stream | Describe a data stream | | create_data_stream | Create a new data stream |

Transforms

| Tool | Description | |------|-------------| | list_transforms | List all data transforms | | run_transform | Run a data transform | | get_transform_status | Get status of a transform |

Identity Resolution

| Tool | Description | |------|-------------| | list_identity_resolutions | List identity resolution rulesets | | describe_identity_resolution | Describe an identity resolution ruleset |

Segments

| Tool | Description | |------|-------------| | list_segments | List all segments | | describe_segment | Describe a segment | | publish_segment | Publish a segment |

Activations & Actions

| Tool | Description | |------|-------------| | list_activations | List all activations | | list_activation_targets | List activation targets | | create_activation | Create a new activation | | list_data_actions | List all data actions |

Profile

| Tool | Description | |------|-------------| | query_profile | Query unified profiles |

Credits

| Tool | Description | |------|-------------| | estimate_flex_credits | Estimate or query live flex credit usage |

Smart

| Tool | Description | |------|-------------| | resolve_field_names | Resolve CRM object/field names to DLO/DMO names |

Development

npm install
npm run build
npm test

License

MIT