onedrive_list_shared
Pack: onedrive · Endpoint: https://gateway.pipeworx.io/onedrive/mcp
List files and folders that have been shared with the user in OneDrive / Microsoft 365 (“Shared with me”). Returns each item’s name, web URL, and who shared it. Use to find documents shared by colleagues.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
top | number | no | Maximum number of shared items to return (default 25). |
Example call
Arguments
{
"top": 25
}
curl
curl -X POST https://gateway.pipeworx.io/onedrive/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"onedrive_list_shared","arguments":{"top":25}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('onedrive_list_shared', {
"top": 25
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"onedrive": {
"url": "https://gateway.pipeworx.io/onedrive/mcp"
}
}
}
See Getting Started for client-specific install steps.