Smartsheet MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Smartsheet MCP Serverlist all sheets I have access to"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Smartsheet MCP Server
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.
Tools Exposed
Tool | Description | Read-only |
| List all accessible sheets | ✅ |
| Read sheet data (columns + rows + cells) with filters & pagination | ✅ |
| Get column definitions and IDs for a sheet | ✅ |
| Add rows with cell values and hierarchy placement | ❌ |
| Update existing row cells, lock/unlock rows | ❌ |
| Permanently delete rows | ❌ |
| Add new columns with type/options | ❌ |
| Read paginated report data | ✅ |
| List all accessible reports | ✅ |
| List workspaces | ✅ |
| Browse all contents of a workspace | ✅ |
| Browse folder contents | ✅ |
| List all dashboards (Sights) | ✅ |
| Get all discussions on a sheet | ✅ |
| Get discussions on a specific row | ✅ |
| Start a new sheet-level discussion | ❌ |
| Start a new row-level discussion | ❌ |
| Reply to an existing discussion | ❌ |
| Delete a comment (own comments only) | ❌ |
| List all attachments on a sheet | ✅ |
| List attachments on a row | ✅ |
| Attach a URL link to a row | ❌ |
| Permanently delete an attachment | ❌ |
| Full-text search across all Smartsheet assets | ✅ |
| Full-text search within one sheet | ✅ |
| Audit trail — all historic values of a cell | ✅ |
| Check if a sheet was modified (lightweight) | ✅ |
Prerequisites
Node.js 18+
A Smartsheet API token — generate one at: Account → Apps & Integrations → API Access
For M365 Copilot deployment: an Azure App Service or Azure Container Apps to host the HTTP server
Local Development (stdio — Claude Desktop or Copilot Studio local)
npm install
npm run build
# Set your token
export SMARTSHEET_API_TOKEN=your_token_here
# Run in stdio mode (default)
npm startClaude Desktop config (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"
}
}
}
}Remote HTTP Deployment (for M365 Copilot)
# 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/healthPer-request Token (multi-user / OAuth scenarios)
Each request can pass its own token via header, overriding the server default:
X-Smartsheet-Token: user_specific_tokenThis supports SSO scenarios where each M365 user authenticates to Smartsheet with their own credentials.
Deploying to Azure App Service
# 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=httpYour MCP endpoint will be:
https://<app-name>.azurewebsites.net/mcpWiring into M365 Copilot (Declarative Agent)
Option A — Copilot Studio (Recommended for EPO/no-code)
Open Copilot Studio → Create or edit an agent
Go to Actions → Add an action → Model Context Protocol (MCP)
Enter your server URL:
https://<app-name>.azurewebsites.net/mcpSelect the tools you want the agent to use
Configure authentication (API key or OAuth)
Publish the agent
ℹ️ MCP is now generally available in Copilot Studio as of mid-2025.
Option B — VS Code + Microsoft 365 Agents Toolkit (for IT/Dev)
Install Microsoft 365 Agents Toolkit extension in VS Code
Create a new Declarative Agent from the toolkit
Choose Add Action → Start with an MCP server
Enter your MCP endpoint URL
The toolkit auto-generates the plugin manifest by reading your tool schemas
Pick which tools to expose
Configure OAuth (Smartsheet supports OAuth 2.0) or API key auth
Deploy to your M365 tenant via Microsoft 365 Admin Center → Copilot → Agents
Option C — Direct Manifest (Advanced)
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.
Authentication Options for M365
Method | When to use |
API Key in header ( | 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 |
Smartsheet OAuth App Setup (for per-user auth)
Create a new app → Set redirect URI to
https://teams.microsoft.com/api/platform/v1.0/oAuthRedirectCopy the Client ID and Client Secret
In Agents Toolkit: choose OAuth (static registration) and paste these values
Environment Variables
Variable | Required | Description |
| Yes (unless using per-request header) | Smartsheet API Bearer token |
| No (default: | Set to |
| No (default: | HTTP listen port |
Known M365 Copilot Limitations
Only tools are supported — MCP resources and prompts are ignored by Copilot
Nested object schemas with
minimum/maximum/defaulton nested properties can fail manifest validation in the Agents Toolkit — strip these if provisioning failsMax 5 tools injected inline when ≤5 plugins are defined in a declarative agent manifest; above 5, the orchestrator selects dynamically
Confirmation prompts: Read-only tools (annotated
readOnlyHint: true) don't require user confirmation; write tools do on first call
Project Structure
smartsheet-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.mdResources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/prmbr42-bot/smartsheet-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server