Integrate Sharepoint MCP server into your Slack workspace for instant access to your AI agent.
Tools that your AI agent can use through this MCP server to interact with Sharepoint
Upload a file to OneDrive. See the documentation
Updates an existing item in Microsoft Sharepoint. See the documentation
Search for sites across the tenant. This is a free-text search across multiple site properties — not an exact slug match.
Backed by the SharePoint Search index and eventually consistent, so newly created or renamed sites may not appear until indexing catches up.
To resolve a known site by path, prefer Get Site for an immediate, exact lookup.
Search for files across the tenant. Supports KQL via the optional query template.
Backed by the Microsoft Search index and eventually consistent — newly created or modified files may not appear until indexing catches up.
For immediate, deterministic results, prefer:
$filter against a document librarySearch and filter SharePoint files based on metadata and custom columns. This action allows you to query files using SharePoint's custom properties, managed metadata, and other column values. See the documentation
Browse and select files from SharePoint to retrieve their metadata (name, size, dates, etc.) without download URLs. See the documentation
List sites across the tenant. Backed by the SharePoint Search index and eventually consistent — newly created sites may not appear until indexing catches up.
To resolve a known site by path, prefer Get Site for an immediate lookup.
Retrieves a list of the files and/or folders directly within a folder. See the documentation
List the drives available within a Microsoft Sharepoint site. See the documentation
Retrieve a site by its identifier. This is a direct path/ID lookup, so it's immediately consistent and returns newly created sites without indexing delay.
Use this when you know the site path; for discovery, use Search Sites or List Sites.
Retrieves a file by ID. See the documentation
Retrieve a table from an Excel spreadsheet stored in Sharepoint See the documentation
Returns the authenticated Microsoft user's ID, display name, email, and principal name via Microsoft Graph. Call this first when the user says 'my files', 'my documents', or needs identity context. Use the returned id to identify file ownership in List Files in Folder or Find File by Name results. See the documentation.
Search and filter items in a SharePoint list based on metadata and custom columns. See docs here
Search the site's default drive for files or folders matching a query. Matches are recursive across the drive and span filename, metadata, and file content — this is not an exact filename lookup, and results are relevance-ranked.
Backed by the SharePoint Search index and eventually consistent, so newly created, renamed, or moved items may not appear until SharePoint reindexes them.
For exact, immediately-consistent lookups, prefer:
$filter against a list/document libraryBrowse and select files from SharePoint and get their metadata along with pre-authenticated download URLs (valid ~1 hour). See the documentation
Download a Microsoft Sharepoint file to the /tmp directory. See the documentation
Create a new list in Microsoft Sharepoint. See the documentation
Create a sharing link for a DriveItem. See the documentation
Create a new item in Microsoft Sharepoint. See the documentation
Create a new folder in SharePoint. See the documentation
A file picker action that allows browsing and selecting one or more files from SharePoint. Returns the selected files' metadata including pre-authenticated download URLs. See the documentation