This read-only MCP Server allows you to connect to Microsoft OneDrive data from Claude Desktop through CData JDBC Drivers. For full CRUD support, check out our MCP Server for Microsoft OneDrive (https://www.cdata.com/drivers/onedrive/download/mcp).
{
"mcpServers": {
"microsoft-onedrive-mcp-server-by-cdata": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
This read-only MCP Server allows you to connect to Microsoft OneDrive data from Claude Desktop through CData JDBC Drivers. For full CRUD support, check out our MCP Server for Microsoft OneDrive (https://www.cdata.com/drivers/onedrive/download/mcp).
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
MIT. View license →
Is it maintained?
Last commit 172 days ago. 1 stars.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.
Official Notion MCP Server
Give AI agents access to your Obsidian vault via local files or Self-hosted LiveSync.
🗂️🤖 Airtable Model Context Protocol Server, for allowing AI systems to interact with your Airtable bases
MCP Security Weekly
Get CVE alerts and security updates for Microsoft Onedrive Mcp Server By Cdata and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
CData's Model Context Protocol (MCP) Server for Microsoft OneDrive
:heavy_exclamation_mark: This project builds a read-only MCP server. For full read, write, update, delete, and action capabilities and a simplified setup, check out our CData MCP Server for Microsoft OneDrive.
We created this read-only MCP Server to allow LLMs (like Claude Desktop) to query live data Microsoft OneDrive supported by the CData JDBC Driver for Microsoft OneDrive.
CData JDBC Driver connects to Microsoft OneDrive by exposing them as relational SQL models.
This server wraps that driver and makes Microsoft OneDrive data available through a simple MCP interface, so LLMs can retrieve live information by asking natural language questions — no SQL required.
git clone https://github.com/cdatasoftware/microsoft-onedrive-mcp-server-by-cdata.git
cd microsoft-onedrive-mcp-server-by-cdata
mvn clean install
This creates the JAR file: CDataMCP-jar-with-dependencies.jarlib folder in the installation directory, typically:
C:\Program Files\CData\CData JDBC Driver for Microsoft OneDrive\/Applications/CData JDBC Driver for Microsoft OneDrive/java -jar cdata.jdbc.onedrive.jar --licenseRun the command java -jar cdata.jdbc.onedrive.jar to open the Connection String utility.
Configure the connection string and click "Test Connection"
Note: If the data sources uses OAuth, you will need to authenticate in your browser.
Once successful, copy the connection string for use later.
.prp file for your JDBC connection (e.g. microsoft-onedrive.prp) using the following properties and format:
Prefix=onedrive
ServerName=CDataOneDrive
ServerVersion=1.0
DriverPath=PATH\TO\cdata.jdbc.onedrive.jar
DriverClass=cdata.jdbc.onedrive.OneDriveDriver
JdbcUrl=jdbc:onedrive:InitiateOAuth=GETANDREFRESH;
Tables=
Create the config file for Claude Desktop ( claude_desktop_config.json) to add the new MCP server, using the format below. If the file already exists, add the entry to the mcpServers in the config file.
Windows
{
"mcpServers": {
"{classname_dash}": {
"command": "PATH\\TO\\java.exe",
"args": [
"-jar",
"PATH\\TO\\CDataMCP-jar-with-dependencies.jar",
"PATH\\TO\\microsoft-onedrive.prp"
]
},
...
}
}