/microsoft-365-word | Type: Application | PCID required: Yes
microsoft-365
microsoft-365-word
Microsoft 365 Word — list, search, and upload Word documents in OneDrive
Server path:
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Microsoft 365 Word — list, search, and upload Word documents in OneDrive
/microsoft-365-word | Type: Application | PCID required: Yes
| Tool | Description |
|---|---|
microsoft-365-word_list_documents | Search for all Word documents (.docx, .doc) across OneDrive using Microsoft Search |
microsoft-365-word_list_documents_by_path | List Word documents (.docx, .doc) in a specific OneDrive folder path |
microsoft-365-word_search_documents | Search Word documents (.docx, .doc) in OneDrive by keyword query |
microsoft-365-word_upload_document | Upload a plain text file to OneDrive at the specified path. To create a proper Word document, use create_workbook or start with an empty .docx via the Word app. |
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
}
},
"required": [
"PCID"
]
}
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
file_path | string | No | — | Folder path in OneDrive (e.g. “Documents/Reports”). Omit to list all Word documents. |
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"file_path": {
"type": "string",
"description": "Folder path in OneDrive (e.g. \"Documents/Reports\"). Omit to list all Word documents."
}
},
"required": [
"PCID"
]
}
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
query | string | Yes | — | Search query keywords to find in document names or content |
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"query": {
"type": "string",
"description": "Search query keywords to find in document names or content"
}
},
"required": [
"PCID",
"query"
]
}
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
file_path | string | Yes | — | Destination path in OneDrive including filename (e.g. “Documents/report.docx”) |
content | string | Yes | — | Document content as a plain text string |
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"file_path": {
"type": "string",
"description": "Destination path in OneDrive including filename (e.g. \"Documents/report.docx\")"
},
"content": {
"type": "string",
"description": "Document content as a plain text string"
}
},
"required": [
"PCID",
"file_path",
"content"
]
}
