-
Notifications
You must be signed in to change notification settings - Fork 162
Open
Labels
bugSomething isn't workingSomething isn't working
Description
With v0.8.7 (as lates does not work on windows) there is the issue when adding this MCP config ends up with file not found:
{
"mcpServers": {
"ms365": {
"command": "npx",
"args": [
"-y",
"@softeria/ms-365-mcp-server"
]
}
}
}
Adjusting to the full path of npx and it works:
{
"mcpServers": {
"ms365": {
"transport": "stdio",
"enabled": true,
"command": "C:/Program Files/nodejs/npx.cmd",
"args": [
"-y",
"@softeria/ms-365-mcp-server"
],
"env": {},
"url": null,
"headers": null
}
}
}
npx command works fine in a CMD as C:\Program Files\nodejs\ is in %PATH%
But when having this MPC enabled ANY chat fails with:
Error in query, "Reference '#/properties/body/anyOf/1/properties/from/properties/application' not found." which I assume is connected to not utilizing path env var.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working