M
Microsoft OneDrive
Query and upload OneDrive files.
·No reviews yet
Share:
About
Auto-generated
Microsoft OneDrive is a Model Context Protocol server in the Productivity category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.
Example tools
Illustrative tool names — the actual tool set is defined by the server at runtime.
create_task
Create a new task
list_tasks
List tasks with filters
update_task
Update fields of an existing task
Screenshots
No screenshots yet.
Frequently Asked Questions
Common questions about Microsoft OneDrive.
- What is the Microsoft OneDrive MCP?
- The Microsoft OneDrive Model Context Protocol (MCP) enables querying and uploading files to OneDrive storage. It integrates OneDrive functionalities directly into MCP-compatible environments, facilitating content management.
- Does this MCP require authentication?
- Yes, the Microsoft OneDrive MCP uses OAuth for authentication. Users will need to authorize the MCP to access their OneDrive account, typically through a web-based consent flow.
- How can I use this MCP to manage my OneDrive files?
- This MCP allows for programmatic interaction with OneDrive, enabling operations such as querying file metadata and uploading new files. Specific capabilities depend on the tools exposed by the MCP implementation.
- Is there a cost associated with using the Microsoft OneDrive MCP?
- The MCP itself is provided by the community and is open source. However, storage costs and any premium features are dependent on your Microsoft OneDrive subscription and usage.
- What are the common limitations of the OneDrive MCP?
- A common limitation can be rate limiting imposed by the OneDrive API, which might affect performance during large-scale file operations. Also, the available features are dictated by the underlying OneDrive API and the MCP's implementation.
- Are there any specific prerequisites for using the Microsoft OneDrive MCP?
- Users must have an active Microsoft OneDrive account. Additionally, because the transport is 'stdio', it relies on the client environment to properly handle standard input/output for communication.
Install Microsoft OneDrive
Claude Desktop
Add this to claude_desktop_config.json.
{
"mcpServers": {
"microsoft-onedrive": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-microsoft-onedrive"
]
}
}
}Cursor
Add this to ~/.cursor/mcp.json.
{
"mcpServers": {
"microsoft-onedrive": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-microsoft-onedrive"
]
}
}
}VS Code
Add this to your workspace settings.json.
{
"mcp.servers": {
"microsoft-onedrive": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-microsoft-onedrive"
]
}
}
}Reviews
Sign in to leave a review.
No reviews yet. Be the first!
Discussion(0)
No comments yet.