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.

Quick Install
One command installs everything — Salesforce CLI, the Grid MCP server, and Grid skills:
curl -sSL https://raw.githubusercontent.com/chintanavs/agentforce-grid-ai-skills/main/install.sh | bash
Options
# 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:
sf org login web --set-default --instance-url https://your-instance.salesforce.com/
Run this command:
sf org display user
Expected output: Your org username and alias
Verify
Open Claude Code and ask:
List my Grid workbooks
If everything is set up, Claude queries your org and returns results.
Manual Installation
1. Install Skills
Install as a Claude Code plugin (recommended):
/plugin install https://github.com/chintanavs/agentforce-grid-ai-skills.git
Or clone and copy into your project:
git clone https://github.com/chintanavs/agentforce-grid-ai-skills.git &&
cp -r agentforce-grid-ai-skills/.claude-plugin/skills/agentforce-grid your-project/.claude/skills/
This gives Claude context on column configuration (every column type), Grid Connect endpoints, common patterns for agent testing and data enrichment, and evaluation types.
2. Set Up MCP Server
The tools Claude uses to create, modify, and monitor workbooks.
Install the Salesforce CLI and authenticate:
brew install sf &&
sf org login web --set-default --instance-url https://your-instance.salesforce.com/
Clone and build:
git clone https://github.com/chintanavs/agentforce-grid-mcp.git &&
cd agentforce-grid-mcp &&
npm install &&
npm run build
Add to your MCP config:
{
"mcpServers": {
"grid-connect": {
"command": "node",
"args": ["/path/to/agentforce-grid-mcp/dist/index.js"]
}
}
}
To target a specific org:
{
"mcpServers": {
"grid-connect": {
"command": "node",
"args": ["/path/to/agentforce-grid-mcp/dist/index.js"],
"env": {
"ORG_ALIAS": "orgfarm-org"
}
}
}
}