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

> Document operations

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

## Tools

| Tool                                                                                    | Description                                                                                                                                           |
| --------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- |
| [`microsoft-word_list_documents`](#microsoft-word_list_documents)                       | Retrieve all Microsoft Word documents in root directory                                                                                               |
| [`microsoft-word_list_documents_by_path`](#microsoft-word_list_documents_by_path)       | Retrieve all Microsoft Word documents in a specific directory path                                                                                    |
| [`microsoft-word_upload_document`](#microsoft-word_upload_document)                     | Upload a new Microsoft Word document. Note: It can take 30-60 seconds for uploaded documents to be indexed and visible via search or list operations. |
| [`microsoft-word_search_documents_by_query`](#microsoft-word_search_documents_by_query) | Search for Microsoft Word documents. Note: Newly uploaded documents may take 30-60 seconds to appear in search results due to indexing delays.        |

***

## microsoft-word\_list\_documents

Retrieve all Microsoft Word documents in root directory

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

***

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

Retrieve all Microsoft Word documents in a specific directory path

**Parameters:**

| Parameter  | Type   | Required | Default | Description                                                                                         |
| ---------- | ------ | -------- | ------- | --------------------------------------------------------------------------------------------------- |
| `filePath` | string | No       | —       | Path to the directory (e.g., "Documents/Reports").If not provided, the root directory will be used. |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID"
      },
      "filePath": {
        "type": "string",
        "description": "Path to the directory (e.g., \"Documents/Reports\").If not provided, the root directory will be used."
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## microsoft-word\_upload\_document

Upload a new Microsoft Word document. Note: It can take 30-60 seconds for uploaded documents to be indexed and visible via search or list operations.

**Parameters:**

| Parameter  | Type   | Required | Default | Description                             |
| ---------- | ------ | -------- | ------- | --------------------------------------- |
| `filePath` | string | Yes      | —       | Path where the document should be saved |
| `content`  | string | Yes      | —       | Document content as text                |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID"
      },
      "filePath": {
        "type": "string",
        "description": "Path where the document should be saved"
      },
      "content": {
        "type": "string",
        "description": "Document content as text"
      }
    },
    "required": [
      "PCID",
      "filePath",
      "content"
    ]
  }
  ```
</Expandable>

***

## microsoft-word\_search\_documents\_by\_query

Search for Microsoft Word documents. Note: Newly uploaded documents may take 30-60 seconds to appear in search results due to indexing delays.

**Parameters:**

| Parameter | Type   | Required | Default | Description  |
| --------- | ------ | -------- | ------- | ------------ |
| `query`   | string | Yes      | —       | Search query |

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