personaljarvis/microsoft-todo
v1.0.0Apache-2.0
Read task lists, create tasks and synchronize completion status
MCP servers
Declared configuration, as published in mcp.json. The directory shows indexed content; it never connects to or executes these servers.
microsoft-todostdio
{
"type": "stdio",
"command": "python",
"args": [
"-m",
"jarvis.plugins.tool.connected_server",
"microsoft_todo"
]
}What this package declares
The files a client reads when it loads this plugin, exactly as this revision carries them.
{
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
"name": "microsoft-todo",
"version": "1.0.0",
"description": "Read task lists, create tasks and synchronize completion status",
"license": "Apache-2.0",
"extensions": {
"io.github.personaljarvis": {
"display_name": "Microsoft To Do",
"category": "Lists & Tasks",
"logo_slug": "microsofttodo",
"logo_color": "0078D4",
"featured": false,
"longevity": "self_renewing",
"auth": {
"mode": "oauth_pkce_loopback",
"authorization_url": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize",
"token_url": "https://login.microsoftonline.com/common/oauth2/v2.0/token",
"client_id": "REPLACE_WITH_YOUR_CLIENT_ID",
"callback_port": 43891,
"callback_path": "/oauth/callback",
"scopes": [
"offline_access",
"User.Read",
"Tasks.ReadWrite"
],
"scope_separator": "space",
"refresh_supported": true
},
"mcp_server": {
"transport": "stdio",
"install": [
"python",
"-m",
"jarvis.plugins.tool.connected_server",
"microsoft_todo"
],
"env_template": {
"JARVIS_CONNECTOR_TOKEN": "$plugin_microsoft_todo_access_token"
},
"risk_tier": "ask"
},
"post_install_hint_md": "Create your own Microsoft Entra public/native application with redirect URI http://127.0.0.1:43891/oauth/callback, then enter its client ID in this dialog. Enable personal and work/school accounts when supported; no client secret is needed for a public app. Grant only the delegated permissions listed below. Tenant policies may require administrator consent. Each plugin is connected separately and shares only your app registration. Permissions: offline_access, User.Read, Tasks.ReadWrite.",
"oauth_client_family": "microsoft"
}
}
}
Client extensions
Data this package carries for particular clients. The directory lists the clients named and never reads what is addressed to them.
- io.github.personaljarvis