Files
claude-ms-todo/mcp-extension/package.json
Spencer McGuire b3918c3ee6 Fix Windows sign-in: don't launch the browser through cmd.exe (v1.0.1)
cmd's `start` splits unquoted commands at "&", truncating the OAuth authorize
URL after the first query parameter — Windows users hit AADSTS900144 (missing
'scope'). Launch via rundll32 url.dll,FileProtocolHandler instead, which takes
the URL as a plain argument with no shell parsing.

Same fix as claude-msplanner b07a241, applied to the canonical skill copy and
synced into the extension bundle.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-10 08:01:12 -06:00

17 lines
479 B
JSON

{
"name": "ms-todo-mcp-extension",
"version": "1.0.1",
"private": true,
"type": "module",
"description": "Microsoft To Do MCP server, packaged as a Claude Desktop .mcpb extension",
"scripts": {
"sync": "node scripts/sync-core.mjs",
"start": "node server/index.mjs",
"pack": "npm run sync && npm ci --omit=dev && npx -y @anthropic-ai/mcpb pack . ms-todo.mcpb"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0",
"zod": "^3.23.8"
}
}