loading…
Search for a command to run...
loading…
Enables AI agents to read and write Smartsheet data, with support for remote HTTP deployment to Microsoft 365 Copilot and Copilot Studio.
Enables AI agents to read and write Smartsheet data, with support for remote HTTP deployment to Microsoft 365 Copilot and Copilot Studio.
A production-ready Model Context Protocol (MCP) server that gives AI agents full read/write access to Smartsheet — equivalent to the native Claude MCP, but deployable as a remote HTTP endpoint for Microsoft 365 Copilot declarative agents and Copilot Studio.
| Tool | Description | Read-only |
|---|---|---|
smartsheet_list_sheets |
List all accessible sheets | ✅ |
smartsheet_get_sheet |
Read sheet data (columns + rows + cells) with filters & pagination | ✅ |
smartsheet_get_columns |
Get column definitions and IDs for a sheet | ✅ |
smartsheet_add_rows |
Add rows with cell values and hierarchy placement | ❌ |
smartsheet_update_rows |
Update existing row cells, lock/unlock rows | ❌ |
smartsheet_delete_rows |
Permanently delete rows | ❌ |
smartsheet_add_columns |
Add new columns with type/options | ❌ |
smartsheet_get_report |
Read paginated report data | ✅ |
smartsheet_list_reports |
List all accessible reports | ✅ |
smartsheet_list_workspaces |
List workspaces | ✅ |
smartsheet_browse_workspace |
Browse all contents of a workspace | ✅ |
smartsheet_browse_folder |
Browse folder contents | ✅ |
smartsheet_list_dashboards |
List all dashboards (Sights) | ✅ |
smartsheet_list_sheet_discussions |
Get all discussions on a sheet | ✅ |
smartsheet_list_row_discussions |
Get discussions on a specific row | ✅ |
smartsheet_create_sheet_discussion |
Start a new sheet-level discussion | ❌ |
smartsheet_create_row_discussion |
Start a new row-level discussion | ❌ |
smartsheet_add_comment |
Reply to an existing discussion | ❌ |
smartsheet_delete_comment |
Delete a comment (own comments only) | ❌ |
smartsheet_list_attachments |
List all attachments on a sheet | ✅ |
smartsheet_list_row_attachments |
List attachments on a row | ✅ |
smartsheet_attach_url_to_row |
Attach a URL link to a row | ❌ |
smartsheet_delete_attachment |
Permanently delete an attachment | ❌ |
smartsheet_search |
Full-text search across all Smartsheet assets | ✅ |
smartsheet_search_sheet |
Full-text search within one sheet | ✅ |
smartsheet_get_cell_history |
Audit trail — all historic values of a cell | ✅ |
smartsheet_get_sheet_version |
Check if a sheet was modified (lightweight) | ✅ |
npm install
npm run build
# Set your token
export SMARTSHEET_API_TOKEN=your_token_here
# Run in stdio mode (default)
npm start
claude_desktop_config.json){
"mcpServers": {
"smartsheet": {
"command": "node",
"args": ["/absolute/path/to/smartsheet-mcp-server/dist/index.js"],
"env": {
"SMARTSHEET_API_TOKEN": "your_token_here"
}
}
}
}
# Run in HTTP mode
TRANSPORT=http SMARTSHEET_API_TOKEN=your_token_here npm start
# Server listens at http://localhost:3000/mcp
# Health check: GET http://localhost:3000/health
Each request can pass its own token via header, overriding the server default:
X-Smartsheet-Token: user_specific_token
This supports SSO scenarios where each M365 user authenticates to Smartsheet with their own credentials.
# Build the project
npm run build
# Create a zip of the deployable files
zip -r deploy.zip dist/ package.json package-lock.json
# Deploy via Azure CLI
az webapp deploy --resource-group <rg> --name <app-name> --src-path deploy.zip
# Set environment variables in Azure
az webapp config appsettings set \
--resource-group <rg> \
--name <app-name> \
--settings SMARTSHEET_API_TOKEN=your_token TRANSPORT=http
Your MCP endpoint will be:
https://<app-name>.azurewebsites.net/mcp
https://<app-name>.azurewebsites.net/mcpℹ️ MCP is now generally available in Copilot Studio as of mid-2025.
The Agents Toolkit auto-generates ai-plugin.json and openapi.json from your MCP server's tool list. These files go into the declarative agent's appPackage/ directory and are uploaded to the Teams App Catalog.
| Method | When to use |
|---|---|
API Key in header (X-Smartsheet-Token) |
Single shared service account token; simplest setup |
| OAuth 2.0 (per user) | Each user authenticates with their own Smartsheet account; required for per-user audit trails |
| Managed Identity + Key Vault | Best practice for production Azure deployments; store token in Key Vault, bind to App Service MSI |
https://teams.microsoft.com/api/platform/v1.0/oAuthRedirect| Variable | Required | Description |
|---|---|---|
SMARTSHEET_API_TOKEN |
Yes (unless using per-request header) | Smartsheet API Bearer token |
TRANSPORT |
No (default: stdio) |
Set to http for remote/Copilot deployments |
PORT |
No (default: 3000) |
HTTP listen port |
minimum/maximum/default on nested properties can fail manifest validation in the Agents Toolkit — strip these if provisioning failsreadOnlyHint: true) don't require user confirmation; write tools do on first callsmartsheet-mcp-server/
├── src/
│ ├── index.ts # Entry point, transport selection
│ ├── types.ts # Smartsheet entity types
│ ├── constants.ts # API base URL, limits
│ ├── services/
│ │ └── smartsheet.ts # API client, auth, error handling
│ └── tools/
│ ├── sheets.ts # Sheet CRUD, rows, columns
│ ├── reports-workspaces.ts # Reports, workspaces, folders, dashboards
│ ├── discussions-attachments.ts # Comments, attachments
│ └── search.ts # Search, cell history, version check
├── dist/ # Compiled JS (after npm run build)
├── package.json
├── tsconfig.json
└── README.md
Выполни в терминале:
claude mcp add smartsheet-mcp-server -- npx Безопасность
Низкий рискАвтоматическая эвристика по публичным данным — не гарантия безопасности.