# Share point (verified)

SharePoint is a Microsoft platform for document management and intranets, enabling teams to collaborate, store, and organize content securely and effectively

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y @smithery/cli@latest mcp add share_point

# Browse available tools
npx -y @smithery/cli@latest tool list share_point

# Get full schema for a tool
npx -y @smithery/cli@latest tool get share_point SHARE_POINT_SHAREPOINT_CREATE_FOLDER

# Call a tool
npx -y @smithery/cli@latest tool call share_point SHARE_POINT_SHAREPOINT_CREATE_FOLDER '{}'
```

## Direct MCP Connection

Endpoint: `https://share_point.run.tools`

## Tools (6)

- `SHARE_POINT_SHAREPOINT_CREATE_FOLDER` — Creates a new folder in SharePoint using the REST API.
- `SHARE_POINT_SHAREPOINT_CREATE_LIST` — Creates a new list in SharePoint using the REST API.
- `SHARE_POINT_SHAREPOINT_CREATE_LIST_ITEM` — Creates a new item in a SharePoint list.
- `SHARE_POINT_SHAREPOINT_CREATE_USER` — Creates a new user in SharePoint.
- `SHARE_POINT_SHAREPOINT_FIND_USER` — Finds a user in both Microsoft Graph and SharePoint to verify their existence and status.
- `SHARE_POINT_SHAREPOINT_REMOVE_USER` — Removes a user from SharePoint. Will not fail if user doesn't exist.

```bash
# Get full input/output schema for a tool
npx -y @smithery/cli@latest tool get share_point <tool-name>
```
