探索
Sharepoint

Sharepoint

一个通过Microsoft Graph API连接SharePoint的MCP服务,提供文档搜索和读取功能,支持Docker和Bun部署。
2.5分
13
2025-04-28 09:41:46
概述
安装
工具列表
内容详情
替代品

What is SharePoint MCP Server?

This server acts as a bridge between your AI assistant (like Claude) and your organization's SharePoint documents. It allows secure access to files and folders without exposing direct credentials to the AI.

How does it work?

The server connects to SharePoint using Microsoft's Graph API with your provided credentials. It then exposes document search and reading capabilities to authorized AI assistants through the MCP protocol.

When should I use this?

Ideal for organizations that want to enable AI assistants to access SharePoint content while maintaining security and access control. Useful for document search, content retrieval, and knowledge management scenarios.

Key Features

Secure SharePoint AccessUses OAuth 2.0 authentication through Microsoft Graph API to maintain security standards
Document Search & ReadingProvides tools for searching across SharePoint documents and reading their contents
Prebuilt Task PromptsIncludes ready-to-use prompts for common SharePoint operations to simplify usage

Pros and Cons

Advantages
Secure credential management - AI never sees your actual credentials
Standardized access to SharePoint through Microsoft Graph API
Pre-configured for common SharePoint tasks to save setup time
Limitations
Currently in R&D phase - may have limited functionality
Requires Microsoft 365 administrator access to set up
Only supports basic document operations at this stage

Setup and Usage

Configure Environment VariablesCopy the .env.example file to .env and fill in your SharePoint credentials (tenant ID, client ID, secret, site ID, and drive ID)
Choose Your RuntimeYou can run the server either using Docker or directly with Bun runtime
Configure Claude DesktopAdd the server configuration to your claude_desktop_config.json file under mcpServers section

Usage Scenarios

Document SearchFind relevant documents in SharePoint based on natural language queries
Document Content RetrievalRead and summarize content from specific SharePoint documents

Frequently Asked Questions

1
Is this production ready?No, this is currently in Research & Development phase (as noted by 'WIP' and 'R&D ATM' in the README). Use with caution in production environments.
2
What permissions does the app need in SharePoint?The application requires appropriate Graph API permissions to read SharePoint content. Consult Microsoft's Graph API documentation for current permission requirements.
3
Can I use this with other AI assistants besides Claude?Yes, any MCP-compatible AI assistant should be able to use this server, though the example configuration is specifically for Claude Desktop.

Additional Resources

Microsoft Graph API DocumentationOfficial documentation for Microsoft Graph API used by this server
MCP Protocol ReferenceInformation about the Model Context Protocol standard
SharePoint REST API GuideBackground on SharePoint's API capabilities
精选MCP服务推荐
Figma Context MCP
Framelink Figma MCP Server是一个为AI编程工具(如Cursor)提供Figma设计数据访问的服务器,通过简化Figma API响应,帮助AI更准确地实现设计到代码的一键转换。
TypeScript
6,107
4.5分
Duckduckgo MCP Server
已认证
DuckDuckGo搜索MCP服务器,为Claude等LLM提供网页搜索和内容抓取服务
Python
214
4.3分
Firecrawl MCP Server
Firecrawl MCP Server是一个集成Firecrawl网页抓取能力的模型上下文协议服务器,提供丰富的网页抓取、搜索和内容提取功能。
TypeScript
2,967
5分
Context7
Context7 MCP是一个为AI编程助手提供实时、版本特定文档和代码示例的服务,通过Model Context Protocol直接集成到提示中,解决LLM使用过时信息的问题。
TypeScript
4,856
4.7分
Edgeone Pages MCP Server
EdgeOne Pages MCP是一个通过MCP协议快速部署HTML内容到EdgeOne Pages并获取公开URL的服务
TypeScript
91
4.8分
Minimax MCP Server
MiniMax Model Context Protocol (MCP) 是一个官方服务器,支持与强大的文本转语音、视频/图像生成API交互,适用于多种客户端工具如Claude Desktop、Cursor等。
Python
368
4.8分
Exa Web Search
已认证
Exa MCP Server是一个为AI助手(如Claude)提供网络搜索功能的服务器,通过Exa AI搜索API实现实时、安全的网络信息获取。
TypeScript
1,435
5分
Baidu Map
已认证
百度地图MCP Server是国内首个兼容MCP协议的地图服务,提供地理编码、路线规划等10个标准化API接口,支持Python和Typescript快速接入,赋能智能体实现地图相关功能。
Python
329
4.5分
安装
复制以下命令到你的Client进行配置
{
  "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"
      ]
    }
  }
}

{
  "mcpServers": {
    "sharepoint": {
      "command": "bun",
      "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",
      }
    }
  }
}
注意:您的密钥属于敏感信息,请勿与任何人分享。