@alexandersen01/sharepoint-mcp-server-better
v0.3.51
Published
A Model Context Protocol server for browsing and interacting with Microsoft SharePoint sites and documents. Supports comprehensive document parsing including PDF, Word, Excel, PowerPoint, and more.
Maintainers
Readme
SharePoint MCP Server
A Model Context Protocol server for browsing and interacting with Microsoft SharePoint sites and documents.
This TypeScript-based MCP server provides comprehensive SharePoint integration through Microsoft Graph API, enabling:
- Resources: Access SharePoint sites as MCP resources with structured metadata
- Tools: Search files, list sites, browse document libraries, and retrieve file content with comprehensive document parsing
- Document Support: PDF, Word, Excel, PowerPoint, text files, HTML, RTF, and more
- Authentication: Secure OAuth2 client credentials flow with automatic token management
Features
Enhanced Document Parsing
The server now supports comprehensive document parsing for multiple file formats:
- PDF Documents (.pdf) - Full text extraction with page count and metadata
- Microsoft Word (.doc, .docx) - Text content extraction with formatting preservation
- Microsoft Excel (.xls, .xlsx) - All worksheets with data in CSV format
- Microsoft PowerPoint (.ppt, .pptx) - Slide text content extraction
- Text Files (.txt, .md, .json, .xml, .csv) - Direct content reading
- HTML Files (.html, .htm) - Clean text extraction without markup
- RTF Documents (.rtf) - Basic text extraction
- Automatic Fallback - Attempts text parsing for any text-based format
Resources
- List SharePoint sites accessible to the application
- Access individual site information via
sharepoint://site/{siteId}URIs - JSON-formatted site metadata with display names and web URLs
Tools
search_files
Search for files and documents within the configured SharePoint site using drive-specific search. This method works with Sites.Selected permissions and is automatically scoped to the configured site. Target folder paths should be specified in your agent's system prompt.
- Parameters:
query(required): Search query stringlimit(optional): Maximum results to return (default: 10)
list_sites
List SharePoint sites accessible to the application
- Parameters:
search(optional): Filter sites by display name
get_site_info
Get detailed information about a specific SharePoint site
- Parameters:
siteUrl(required): SharePoint site URL (e.g., https://tenant.sharepoint.com/sites/sitename)
list_site_drives
List document libraries (drives) in a SharePoint site
- Parameters:
siteUrl(required): SharePoint site URL
list_drive_items
List files and folders in a SharePoint document library. Uses DEFAULT_SITE_URL if configured to reduce noise. The folder path should be specified in your agent's system prompt to focus on specific directories.
- Parameters:
siteUrl(optional): SharePoint site URL (uses DEFAULT_SITE_URL if not provided)driveId(optional): Specific drive ID (uses default drive if not specified)folderPath(optional): Folder path to list items from (specify target folders in your agent system prompt)
get_file_content
Get the content of a specific file from SharePoint. Supports comprehensive document parsing including PDF, Word (doc/docx), Excel (xls/xlsx), PowerPoint (ppt/pptx), text files, HTML, RTF, and more. Uses DEFAULT_SITE_URL if configured.
- Parameters:
filePath(required): Path to the filesiteUrl(optional): SharePoint site URL (uses DEFAULT_SITE_URL if not provided)driveId(optional): Specific drive ID (uses default drive if not specified)includeMetadata(optional): Whether to include document metadata in the response (default: true)
Installation
Using npx (Recommended)
You can run the SharePoint MCP Server directly using npx without installing it globally:
npx @alexandersen01/sharepoint-mcp-server-betterGlobal Installation
Alternatively, you can install it globally:
npm install -g @alexandersen01/sharepoint-mcp-server-better
sharepoint-mcp-serverPrerequisites
Azure App Registration
Register an application in Azure Active Directory
Configure API permissions:
- Microsoft Graph:
Sites.Selected(Application permission)
- Microsoft Graph:
Grant admin consent for the permissions
Create a client secret
Verify site-specific permissions (required for Sites.Selected):
The SharePoint administrator must have already granted access to the specific SharePoint site for your app registration. The app will verify access on startup and provide clear error messages if permissions are missing.
Installation in librechat:
Open librechat.yaml
add the following at the bottom of the file:
mcpServers:
NAME_OF_MCP:
command: npx
args:
- -y
- "@alexandersen01/sharepoint-mcp-server-better"
env:
SEARCH_REGION: "EMEA"
DEFAULT_SITE_URL: "${DEFAULT_SITE_URL}"
TENANT_ID: "${TENANT_ID}"
CLIENT_ID: "${CLIENT_ID}"
CLIENT_SECRET: "${CLIENT_SECRET}"
chatMenu: true
serverInstructions: |
SharePoint MCP Server provides access to your SharePoint sites and documents.
Use this to search, read, and interact with SharePoint content including:
- Site collections and subsites
- Document libraries
- Lists and list items
- File operations (read, search, metadata)
Focus your operations on the Documents/YourFolder directory within the configured site.
When listing drive items or searching files, prioritize content from this specific folder path.
Remember to run the following command to restart the container
ssh -p 22 USER@SSH_ADDR 'cd /home/USER/LibreChat && docker compose -f ./deploy-compose.yml -f ./deploy-compose.override.yml down && docker compose -f ./deploy-compose.yml -f ./deploy-compose.override.yml pull && docker compose -f ./deploy-compose.yml -f ./deploy-compose.override.yml up -d --remove-orphans'If deploy-compose.override.yml is not found:
ssh -p 22 USERs@SSH_ADDR 'cd /home/USER/LibreChat && docker compose -f ./deploy-compose.yml down && docker compose -f ./deploy-compose.yml pull && docker compose -f ./deploy-compose.yml up -d --remove-orphans'Environment Variables
Set the following environment variables:
SHAREPOINT_URL=https://yourtenant.sharepoint.com
TENANT_ID=your-azure-tenant-id
CLIENT_ID=your-azure-app-client-id
CLIENT_SECRET=your-azure-app-client-secret
# Optional: Set defaults to reduce noise and focus operations
DEFAULT_SITE_URL=https://yourtenant.sharepoint.com/sites/yoursiteSite and Folder Filtering
To reduce noise and focus the agent on specific SharePoint sites and folders:
- DEFAULT_SITE_URL: Default SharePoint site URL for operations (set via environment variable)
- Folder Path: Specific folder path within the site (specified in the agent system prompt)
When DEFAULT_SITE_URL is set, tools like search_files, list_drive_items, and get_file_content will use this default when site URL parameters are not explicitly provided. The folder path should be specified in your agent's system prompt to direct the AI to focus on specific folders. This helps keep the agent focused on relevant content without overwhelming it with organization-wide SharePoint data.
Development
Install dependencies:
npm installBuild the server:
npm run buildFor development with auto-rebuild:
npm run watchTesting
Test the server using the MCP Inspector:
npm run inspectorThe Inspector provides a web interface to test all available tools and resources.
Installation
Claude Desktop Configuration
Add the server to your Claude Desktop configuration:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%/Claude/claude_desktop_config.json
{
"mcpServers": {
"sharepoint-mcp-server": {
"command": "node",
"args": ["/path/to/sharepoint-mcp-server/build/index.js"],
"env": {
"SHAREPOINT_URL": "https://yourtenant.sharepoint.com",
"TENANT_ID": "your-azure-tenant-id",
"CLIENT_ID": "your-azure-app-client-id",
"CLIENT_SECRET": "your-azure-app-client-secret",
"DEFAULT_SITE_URL": "https://yourtenant.sharepoint.com/sites/yoursite"
}
}
}
}Global Installation
You can also install the server globally:
npm install -g .Then use it directly:
sharepoint-mcp-serverArchitecture
The server implements a service-oriented architecture with clear separation of concerns:
- Authentication Layer: Handles OAuth2 token acquisition and refresh
- Graph API Client: Manages HTTP requests to Microsoft Graph API
- Tool Handlers: Process MCP tool requests and format responses
- Resource Handlers: Manage SharePoint site resources and metadata
- Error Handling: Comprehensive error management with proper MCP error codes
Security Considerations
- Uses OAuth2 client credentials flow for secure authentication
- Tokens are automatically refreshed before expiration
- All API requests use HTTPS
- Client secrets should be stored securely and never committed to version control
- Application permissions require admin consent in Azure AD
Sites.Selected vs Sites.ReadAll/Files.ReadAll
This server is configured to work with Sites.Selected permission for enhanced security:
Sites.Selected Benefits:
- ✅ Follows principle of least privilege
- ✅ Only grants access to explicitly allowed SharePoint sites
- ✅ Reduces security risk and compliance concerns
- ✅ Better for enterprise environments
Migration from Sites.ReadAll/Files.ReadAll: If you're upgrading from broader permissions:
Update Azure App Registration:
- Remove
Sites.Read.AllandFiles.Read.Allpermissions - Add
Sites.Selectedpermission - Grant admin consent
- Remove
Verify Site-Specific Access:
- Ensure your SharePoint administrator has granted the app access to the required sites
- Only sites with explicit permissions will be accessible
Expected Changes:
- App will only access the configured
DEFAULT_SITE_URL - Access to other SharePoint sites will be denied (403 errors)
- More detailed error messages guide you through permission setup
- App will only access the configured
Important: The DEFAULT_SITE_URL must be set and the app must have explicit permissions to that site, or the server will fail to start with clear guidance on how to fix it.
Troubleshooting
Common Issues
- Authentication Errors: Verify Azure app registration and permissions
- Site Access: Ensure the app has appropriate SharePoint permissions
- Network Issues: Check firewall settings for Microsoft Graph API access
- Sites.Selected Permission Issues:
- 403 Forbidden errors: App doesn't have access to the specific SharePoint site
- "Security initialization failed": Site permissions not granted yet
- Solution: Contact your SharePoint administrator to verify site permissions have been granted
- Server fails to start: Check that
DEFAULT_SITE_URLis set and accessible
Debug Mode
Set environment variable for detailed logging:
DEBUG=sharepoint-mcp-serverContributing
- Follow TypeScript best practices
- Maintain comprehensive error handling
- Add tests for new functionality
- Update documentation for API changes
License
This project is licensed under the Mozilla Public License 2.0. See the LICENSE file for details.
Contributing
We welcome contributions! Please follow these guidelines:
Getting Started
- Fork the repository
- Create a feature branch (
git checkout -b feature/amazing-feature) - Make your changes
- Add tests for new functionality
- Ensure all tests pass (
npm test) - Commit your changes (
git commit -m 'Add amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
Development Guidelines
- Follow TypeScript best practices and maintain type safety
- Implement comprehensive error handling with proper MCP error codes
- Add JSDoc comments for all public methods and classes
- Maintain the service-oriented architecture with clear separation of concerns
- Follow SOLID principles and keep functions focused and testable
- Update documentation for any API changes
Code Style
- Use TypeScript strict mode
- Follow the existing code formatting and naming conventions
- Remove unused imports and variables
- Use descriptive variable and function names
- Prefer composition over inheritance
Testing
- Add unit tests for new functionality
- Test error conditions and edge cases
- Ensure the basic test suite passes
- Test with real SharePoint environments when possible
Documentation
- Update README.md for new features or configuration changes
- Add JSDoc comments for new public APIs
- Include examples for complex functionality
- Update the changelog for significant changes
Changelog
[0.2.1] - Site and Folder Filtering
- NEW: DEFAULT_SITE_URL environment variable for scoping operations to specific SharePoint site
- NEW: DEFAULT_FOLDER_PATH environment variable for scoping operations to specific folder
- ENHANCED:
search_filestool now supports site and folder filtering to reduce noise - ENHANCED:
list_drive_itemstool now uses default site and folder when not specified - ENHANCED:
get_file_contenttool now uses default site when not specified - IMPROVED: Tool parameter requirements relaxed when defaults are configured
- IMPROVED: Search results filtered to ensure they match the specified site
[0.2.0] - Enhanced Document Parsing
- NEW: Comprehensive document parsing support for multiple file formats
- NEW: PDF document text extraction with metadata
- NEW: Microsoft Word (.doc, .docx) content parsing
- NEW: Microsoft Excel (.xls, .xlsx) data extraction from all worksheets
- NEW: Microsoft PowerPoint (.ppt, .pptx) slide text extraction
- NEW: HTML document parsing with clean text extraction
- NEW: RTF document basic text extraction
- ENHANCED:
get_file_contenttool now supports multiple document formats - ENHANCED: Added
includeMetadataparameter for detailed document information - ADDED: Dependencies: pdf-parse, mammoth, xlsx, yauzl, node-html-parser
[0.1.0] - Initial Release
- Basic SharePoint integration via Microsoft Graph API
- Support for searching files across SharePoint
- Site listing and browsing capabilities
- Document library access and file content retrieval (text files only)
- OAuth2 client credentials authentication
- MCP resource support for SharePoint sites
- Comprehensive error handling and logging
Support
If you encounter issues or have questions:
- Check the troubleshooting section in this README
- Search existing GitHub issues
- Create a new issue with detailed information about your problem
- Include relevant logs and configuration (without sensitive information)
Acknowledgments
- Built with the Model Context Protocol SDK
- Uses Microsoft Graph API for SharePoint integration
- Inspired by the MCP community and ecosystem