> ## Documentation Index
> Fetch the complete documentation index at: https://docs.pinkfish.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# microsoft-365-word

> Microsoft 365 Word — list, search, and upload Word documents in OneDrive

**Server path:** `/microsoft-365-word` | **Type:** Application | **PCID required:** Yes

## Tools

| Tool                                                                                      | Description                                                                                                                                                       |
| ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [`microsoft-365-word_list_documents`](#microsoft-365-word_list_documents)                 | Search for all Word documents (.docx, .doc) across OneDrive using Microsoft Search                                                                                |
| [`microsoft-365-word_list_documents_by_path`](#microsoft-365-word_list_documents_by_path) | List Word documents (.docx, .doc) in a specific OneDrive folder path                                                                                              |
| [`microsoft-365-word_search_documents`](#microsoft-365-word_search_documents)             | Search Word documents (.docx, .doc) in OneDrive by keyword query                                                                                                  |
| [`microsoft-365-word_upload_document`](#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. |

***

## microsoft-365-word\_list\_documents

Search for all Word documents (.docx, .doc) across OneDrive using Microsoft Search

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## microsoft-365-word\_list\_documents\_by\_path

List Word documents (.docx, .doc) in a specific OneDrive folder path

**Parameters:**

| Parameter   | Type   | Required | Default | Description                                                                          |
| ----------- | ------ | -------- | ------- | ------------------------------------------------------------------------------------ |
| `file_path` | string | No       | —       | Folder path in OneDrive (e.g. "Documents/Reports"). Omit to list all Word documents. |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "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"
    ]
  }
  ```
</Expandable>

***

## microsoft-365-word\_search\_documents

Search Word documents (.docx, .doc) in OneDrive by keyword query

**Parameters:**

| Parameter | Type   | Required | Default | Description                                                |
| --------- | ------ | -------- | ------- | ---------------------------------------------------------- |
| `query`   | string | Yes      | —       | Search query keywords to find in document names or content |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "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"
    ]
  }
  ```
</Expandable>

***

## 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.

**Parameters:**

| 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                                        |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "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"
    ]
  }
  ```
</Expandable>
