For AI agents and developers: machine-readable getting-started guide and automated Salesforce org setup (/llms.txt).

Agentforce Grid Skills + MCP

Agentforce Grid Skills + MCP

Equip Claude Code to manage Agentforce Grid workbooks directly. Skills teach Claude how Grid works. The MCP server gives it the tools to act — create workbooks and worksheets, configure every column type, run agent tests and evaluations, and read results back.

Agentforce Grid

Quick Install

One command installs everything — Salesforce CLI, the Grid MCP server, and Grid skills:

1
curl -sSL https://raw.githubusercontent.com/chintanavs/agentforce-grid-ai-skills/main/install.sh | bash

Options

1
2
3
4
5
6
7
8
9
10
# Target a specific org
curl -sSL https://raw.githubusercontent.com/chintanavs/agentforce-grid-ai-skills/main/install.sh | bash -s -- --org my-org-alias

# Also install into a project directory
curl -sSL https://raw.githubusercontent.com/chintanavs/agentforce-grid-ai-skills/main/install.sh | bash -s -- --project-dir ~/my-project

# Skip components you already have
curl -sSL https://raw.githubusercontent.com/chintanavs/agentforce-grid-ai-skills/main/install.sh | bash -s -- --skip-sf      # already have sf CLI
curl -sSL https://raw.githubusercontent.com/chintanavs/agentforce-grid-ai-skills/main/install.sh | bash -s -- --skip-mcp     # only want skills
curl -sSL https://raw.githubusercontent.com/chintanavs/agentforce-grid-ai-skills/main/install.sh | bash -s -- --skip-skills  # only want MCP

Authenticate Your Org

Copy the command below and run it in your terminal to authenticate the Salesforce CLI with your org:

Or authenticate manually:

1
sf org login web --set-default --instance-url https://your-instance.salesforce.com/

Run this command:

1
sf org display user

Expected output: Your org username and alias

Verify

Open Claude Code and ask:

1
List my Grid workbooks

If everything is set up, Claude queries your org and returns results.

Manual Installation