Mcpsharepoint

Mcpsharepoint

🚀 SharePoint - WIP,仅供研发用ATM

这是一个提供组织级SharePoint访问的模型上下文协议服务器,能有效连接并管理SharePoint资源,为研发工作提供便利。

🚀 快速开始

环境变量设置

  • 复制.env.example.env
  • 填写所需字段。

与Claude Desktop一起使用

要将此服务器与Claude Desktop应用程序一起使用,请在claude_desktop_config.json的"mcpServers"部分添加以下配置:

Docker方式

  • 使用Docker构建并标记: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"
]
}
}
}

Bun MCP配置文件方式

{
"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",
}
}
}
}

✨ 主要特性

工具

  • 使用Microsoft Graph API连接到Sharepoint。
  • 将Sharepoint文档和文件系统作为资源暴露出来。
  • 提供搜索文档和阅读文档的工具。
  • 包含常见Sharepoint任务提示。

📄 许可证

此MCP服务器根据MIT License授权。这意味着您可以自由使用、修改和分发软件,但需遵守MIT License的条款和条件。更多细节,请参见项目仓库中的LICENSE文件。

  • 0 关注
  • 0 收藏,23 浏览
  • system 提出于 2025-09-29 15:06

相似服务问题

相关AI产品