/microsoft-word | Type: Application | PCID required: Yes
Application MCP Servers
microsoft-word
Document operations
Server path:
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Document operations
/microsoft-word | Type: Application | PCID required: Yes
| Tool | Description |
|---|---|
microsoft-word_list_documents | Retrieve all Microsoft Word documents in root directory |
microsoft-word_list_documents_by_path | Retrieve all Microsoft Word documents in a specific directory path |
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_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. |
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID"
}
},
"required": [
"PCID"
]
}
| 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. |
Show inputSchema
{
"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"
]
}
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
query | string | Yes | — | Search query |
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID"
},
"query": {
"type": "string",
"description": "Search query"
}
},
"required": [
"PCID",
"query"
]
}
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
filePath | string | Yes | — | Path where the document should be saved |
content | string | Yes | — | Document content as text |
Show inputSchema
{
"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"
]
}
