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>
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
"manifest_version": "0.3",
|
||||
"name": "ms-todo",
|
||||
"display_name": "Microsoft To Do",
|
||||
"version": "1.0.0",
|
||||
"version": "1.0.1",
|
||||
"description": "Read and write your Microsoft To Do tasks, lists, and subtasks from Claude.",
|
||||
"long_description": "Connects Claude to Microsoft To Do via the Microsoft Graph API. You sign in once as yourself (a browser window opens); the connection then reads and writes your task lists, tasks, and checklist items. Each user's sign-in is private to their own machine.",
|
||||
"author": {
|
||||
|
||||
4
mcp-extension/package-lock.json
generated
4
mcp-extension/package-lock.json
generated
@@ -1,12 +1,12 @@
|
||||
{
|
||||
"name": "ms-todo-mcp-extension",
|
||||
"version": "1.0.0",
|
||||
"version": "1.0.1",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "ms-todo-mcp-extension",
|
||||
"version": "1.0.0",
|
||||
"version": "1.0.1",
|
||||
"dependencies": {
|
||||
"@modelcontextprotocol/sdk": "^1.12.0",
|
||||
"zod": "^3.23.8"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "ms-todo-mcp-extension",
|
||||
"version": "1.0.0",
|
||||
"version": "1.0.1",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"description": "Microsoft To Do MCP server, packaged as a Claude Desktop .mcpb extension",
|
||||
|
||||
@@ -108,7 +108,7 @@ const TASK_WRITE_FIELDS = {
|
||||
|
||||
// ---- server ---------------------------------------------------------------
|
||||
|
||||
const server = new McpServer({ name: "ms-todo", version: "1.0.0" });
|
||||
const server = new McpServer({ name: "ms-todo", version: "1.0.1" });
|
||||
|
||||
// --- auth ---
|
||||
server.registerTool(
|
||||
|
||||
Reference in New Issue
Block a user