Summary
The WorkIQ MCP server (v0.5.0-preview3, build 0.5.0.26793) does not expose fetch_blob or upload_blob as MCP tools, even though:
- The CLI binary supports both commands (
workiq fetch-blob --help works)
experimental=true is set in config
- The plugin README and SKILL.md document them as part of the "11 MCP tools" surface
- The skill references (
fetch-blob-work-iq.md, upload-blob-work-iq.md) describe them as MCP tools
Repro
- Install workiq-preview plugin (
/plugin install workiq-preview@work-iq)
- Ensure
workiq config set experimental=true
- Start MCP server and send
tools/list — only 12 tools are returned:
- accept_eula, ask, list_agents, delete_entity, get_debug_link, do_action, create_entity, get_schema, search_paths, call_function, fetch, update_entity
fetch_blob and upload_blob are missing
Expected
tools/list should include fetch_blob and upload_blob when experimental=true.
Workaround
Use the CLI commands directly:
npx -y @microsoft/workiq@preview fetch-blob --url "/me/drive/items/{id}/content" --output ./downloads
npx -y @microsoft/workiq@preview upload-blob --help
Environment
- OS: Windows 11 (win_x64)
- WorkIQ version: 0.5.0.26793 (@microsoft/workiq@0.5.0-preview3)
- Node: v24.13.1
- Copilot CLI
Summary
The WorkIQ MCP server (v0.5.0-preview3, build 0.5.0.26793) does not expose
fetch_bloborupload_blobas MCP tools, even though:workiq fetch-blob --helpworks)experimental=trueis set in configfetch-blob-work-iq.md,upload-blob-work-iq.md) describe them as MCP toolsRepro
/plugin install workiq-preview@work-iq)workiq config set experimental=truetools/list— only 12 tools are returned:fetch_blobandupload_blobare missingExpected
tools/listshould includefetch_blobandupload_blobwhenexperimental=true.Workaround
Use the CLI commands directly:
Environment