SharePoint is a collaborative platform from Microsoft that enables users to build and manage internal websites, share documents, and organize team resources. It provides a powerful, flexible solution for creating digital workspaces and streamlining content management across organizations.
With SharePoint, you can:
- Create team and communication sites: Set up pages and portals to support collaboration, announcements, and content distribution
- Organize and share content: Store documents, manage files, and enable version control with secure sharing capabilities
- Customize pages: Add text parts to tailor each site to your team's needs
- Improve discoverability: Use metadata, search, and navigation tools to help users quickly find what they need
- Collaborate securely: Control access with robust permission settings and Microsoft 365 integration
In Klyntos, the SharePoint integration empowers your agents to create and access SharePoint sites and pages as part of their workflows. This enables automated document management, knowledge sharing, and workspace creation without manual effort. Agents can generate new project pages, upload or retrieve files, and organize resources dynamically, based on workflow inputs. By connecting Klyntos with SharePoint, you bring structured collaboration and content management into your automation flows — giving your agents the ability to coordinate team activities, surface key information, and maintain a single source of truth across your organization.
Usage Instructions
Integrate SharePoint into the workflow. Read/create pages, list sites, and work with lists (read, create, update items). Requires OAuth.
sharepoint_create_page
Create a new page in a SharePoint site
Parameter | Type | Required | Description |
---|
siteId | string | No | The ID of the SharePoint site (internal use) |
siteSelector | string | No | Select the SharePoint site |
pageName | string | Yes | The name of the page to create |
pageTitle | string | No | The title of the page (defaults to page name if not provided) |
pageContent | string | No | The content of the page |
Output
Parameter | Type | Description |
---|
page | object | Created SharePoint page information |
sharepoint_read_page
Read a specific page from a SharePoint site
Parameter | Type | Required | Description |
---|
siteSelector | string | No | Select the SharePoint site |
siteId | string | No | The ID of the SharePoint site (internal use) |
pageId | string | No | The ID of the page to read |
pageName | string | No | The name of the page to read (alternative to pageId) |
maxPages | number | No | Maximum number of pages to return when listing all pages (default: 10, max: 50) |
Output
Parameter | Type | Description |
---|
page | object | Information about the SharePoint page |
sharepoint_list_sites
List details of all SharePoint sites
Parameter | Type | Required | Description |
---|
siteSelector | string | No | Select the SharePoint site |
groupId | string | No | The group ID for accessing a group team site |
Output
Parameter | Type | Description |
---|
site | object | Information about the current SharePoint site |
sharepoint_create_list
Create a new list in a SharePoint site
Parameter | Type | Required | Description |
---|
siteId | string | No | The ID of the SharePoint site (internal use) |
siteSelector | string | No | Select the SharePoint site |
listDisplayName | string | Yes | Display name of the list to create |
listDescription | string | No | Description of the list |
listTemplate | string | No | List template name (e.g., 'genericList') |
pageContent | string | No | Optional JSON of columns. Either a top-level array of column definitions or an object with { columns: [...] }. |
Output
Parameter | Type | Description |
---|
list | object | Created SharePoint list information |
sharepoint_get_list
Get metadata (and optionally columns/items) for a SharePoint list
Parameter | Type | Required | Description |
---|
siteSelector | string | No | Select the SharePoint site |
siteId | string | No | The ID of the SharePoint site (internal use) |
listId | string | No | The ID of the list to retrieve |
Output
Parameter | Type | Description |
---|
list | object | Information about the SharePoint list |
sharepoint_update_list
Update the properties (fields) on a SharePoint list item
Parameter | Type | Required | Description |
---|
siteSelector | string | No | Select the SharePoint site |
siteId | string | No | The ID of the SharePoint site (internal use) |
listId | string | No | The ID of the list containing the item |
itemId | string | Yes | The ID of the list item to update |
listItemFields | object | Yes | Field values to update on the list item |
Output
Parameter | Type | Description |
---|
item | object | Updated SharePoint list item |
sharepoint_add_list_items
Add a new item to a SharePoint list
Parameter | Type | Required | Description |
---|
siteSelector | string | No | Select the SharePoint site |
siteId | string | No | The ID of the SharePoint site (internal use) |
listId | string | Yes | The ID of the list to add the item to |
listItemFields | object | Yes | Field values for the new list item |
Output
Parameter | Type | Description |
---|
item | object | Created SharePoint list item |
Notes
- Category:
tools
- Type:
sharepoint