
Sharepoint - WIP, just for R&D ATM
A Model Context Protocol server that provides access to Organisational Sharepoint.
Implementation
Component Operation Resource Dynamic Resource Tool Users β β β Read User β β β Find User β β β Sites β β β List Sites β β β Get Site Details β β β Create Subsite β β β Delete Site β β β Drives β β β List Folders β β β Search Folders β β β Create Folder β β β Delete Folder β β β Upload File β β β List Items β β β Download File β β β Read File β β β Move File β β β Copy File β β β Lists β β β Create List β β β Read List β β β Add to List β β β Update List β β β Delete List β β β Calendar β β β Create Event β β β Read Event β β β Update Event β β β Delete Event β β β
Prompts
-
document-summary
-
find-relevant-documents
-
explore-folder
Enviremental Variables
-
Copy .env.example as .env
-
Fill the requires fields
Inspector
From root
npx @modelcontextprotocol/inspector -e TENANT_ID=your_tenant_id -e CLIENT_ID=your_client_id -e CLIENT_SECRET=your_client_secret -e SITE_ID=your_site_id -e DRIVE_ID=your_drive_id -- node dist/index.js
License
This MCP server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.
npx @modelcontextprotocol/inspector -e TENANT_ID=your_tenant_id -e CLIENT_ID=your_client_id -e CLIENT_SECRET=your_client_secret -e SITE_ID=your_site_id -e DRIVE_ID=your_drive_id -- node dist/index.jsBefore it works, you'll need: TENANT_IDCLIENT_IDCLIENT_SECRETSITE_IDDRIVE_ID
Usage with Claude Desktop
To use this server with the Claude Desktop app, add the following configuration to the "mcpServers" section of your claude_desktop_config.json:
Docker
- Docker build and tag
docker build -t mcp/sharepoint .
{
"mcpServers": {
"sharepoint": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--init",
"-e", "DOCKER_CONTAINER=true",
"-e", "TENANT_ID=your-tenant-id",
"-e", "CLIENT_ID=your-client-id",
"-e", "CLIENT_SECRET=your-client-secret",
"-e", "SITE_ID=your-site-id",
"-e", "DRIVE_ID=your-drive-id",
"mcp/sharepoint"
]
}
}
}
MCP configuration file
pnpm run build
{
"mcpServers": {
"sharepoint": {
"command": "node",
"args": ["run", "start"],
"env": {
"TENANT_ID": "your-tenant-id",
"CLIENT_ID": "your-client-id",
"CLIENT_SECRET": "your-client-secret",
"SITE_ID": "your-site-id",
"DRIVE_ID": "your-drive-id",
}
}
}
}
No common issues documented yet. If you hit a problem, the repository's GitHub Issues page is the best place to look.