mgraphctl
Microsoft 365 access from Claude Code through the Microsoft Graph API: Outlook mail and calendar, Teams chats and channel messages, presence, meetings and transcripts, SharePoint, OneDrive, OneNote, Planner, Microsoft To Do, AI meeting insights, contacts, and the org chart.
The plugin ships a single skill, mgraphctl. It is a Python re-implementation of the msgraph
skill, run with uv, with a noun-verb command line (mail list, calendar create, chats dm,
…) instead of Node's flag-driven modes. It is an original design for this repository — not a
port of, and not tracking, any upstream project — and it extends the Node skill's coverage with
mail triage, mailbox settings and automatic replies, scheduling (getSchedule,
findMeetingTimes), find-or-create Teams DMs, presence, SharePoint lists and uploads, OneDrive
writes and sharing links, a unified search command, and a raw api escape hatch. Every write
verb supports --dry-run, and no data command ever opens a browser.
Install
claude plugin marketplace add svd/mgraphctl
claude plugin install mgraphctl@mgraphctl
The CLI is also on PyPI for use outside Claude Code, under the same version as the plugin:
uv tool install mgraphctl # or: pipx install mgraphctl / uvx mgraphctl status
mgraphctl status
Prerequisite: uv
The only prerequisite is uv. On first use in a given environment,
the plugin's shim script creates a Python virtual environment and installs the CLI's dependencies
automatically — this takes about 10-40 seconds once; every run after that starts immediately.
Nothing else needs to be installed by hand.
curl -LsSf https://astral.sh/uv/install.sh | sh # macOS / Linux
brew install uv # macOS, via Homebrew
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex" # Windows
First run and login
mgraphctl signs in as an Entra application of your own; there is no shared one. Before the first login, register a public-client application in your tenant (or ask an administrator for the id of one) and tell mgraphctl its client id, once:
${CLAUDE_PLUGIN_ROOT}/mgraphctl config set client_id <application (client) id>
MGRAPHCTL_CLIENT_ID in the environment works too. Until one is set, login and status stop
with error[CONFIG]: client_id is not set rather than an Entra error.
Check status first — it never opens a browser and always says what to do next:
${CLAUDE_PLUGIN_ROOT}/mgraphctl status
Signing in is interactive, so run it yourself in your own terminal rather than asking Claude to run it for you:
${CLAUDE_PLUGIN_ROOT}/mgraphctl login
By default login opens your system browser for a Microsoft sign-in page. On a host with no
browser (for example over SSH), use the device-code flow instead, which prints a URL and a code
to enter on another device:
${CLAUDE_PLUGIN_ROOT}/mgraphctl login --device-code
On Windows, or wherever the bash shim cannot run, invoke uv directly:
set UV_PROJECT_ENVIRONMENT=%LOCALAPPDATA%\mgraphctl\venv
uv run --project <plugin> --frozen --no-dev mgraphctl login
Every other command reads the cached sign-in silently and never opens a browser or a device-code prompt — a missing or expired token fails with an actionable hint instead.
Where things live
-
Virtual environment: under
${CLAUDE_PLUGIN_DATA}when Claude Code sets it, otherwise~/.cache/mgraphctl/venv($XDG_CACHE_HOME/mgraphctl/venvwhen that variable is set). Persistent across plugin updates; safe to delete, it is rebuilt on the next run. -
Token cache: the OS keychain (macOS Keychain, Windows Credential Locker, Linux Secret Service) when one is available, as a single
mgraphctlitem whose account is the cache path. Without one it is~/.mgraphctl/token_cache.json, mode0600, in a0700directory.token_store = auto | keyring | filein the config file, orMGRAPHCTL_TOKEN_STORE, picks;statusshows which store is in use. A cache file left by an earlier version is imported into the keychain on the first run and then deleted. When the keychain refuses (locked, denied, no session bus), the file takes over for that run with one warning on stderr. On macOS a rebuilt Python (a new venv, auvupgrade) asks once for keychain access; answer "Always Allow".token_store = "file"restores the old behaviour. -
Config file:
~/.mgraphctl/config.toml, optional (--config PATHorMGRAPHCTL_CONFIGto point elsewhere). EveryMGRAPHCTL_*setting can go there as the name without the prefix, lower-cased; a flag beats an environment variable, which beats the file.mgraphctl config initwrites a commented template,mgraphctl config set tz Europe/Warsawedits one key, andmgraphctl config showprints where each value came from.tenant_id = "contoso.onmicrosoft.com" scopes = "extended" tz = "Europe/Warsaw"
Scopes
Two named scope sets cover almost everything:
default— the 23 scopes the Nodemsgraphskill has always requested: mail read/send, calendars, files, sites, chats, channel messages, meeting transcripts, people, contacts, notes, tasks, and group membership. This is whatloginrequests unless told otherwise.extended—defaultplus write access to mail and mailbox settings, presence, directory user lookup, shared calendars, chat creation, and team/channel listing. Request it withlogin --scopes extended; running it again on an already-consented account adds the new scopes with one more consent prompt, no re-login needed.
A handful of scopes are on-demand only, requested with --scope <name> on the command that needs
them (meetings recordings, org manager|reports|chain for another user, presence get USER) —
they are never in default or extended.
Some tenants require an administrator to grant consent once for the app registration. If a
command fails with error[CONSENT_REQUIRED], the error prints the admin-consent URL to send to
your Microsoft 365 administrator:
https://login.microsoftonline.com/<tenant>/adminconsent?client_id=<client id>
Differences from msgraph
What differs from the Node msgraph skill:
- Commands are noun-verb (
mail list,calendar create,chats send) instead of Node's flag-driven modes (--emails,--calendar --create,--send). mail listdefaults to the Inbox;msgraph'semailsmode listed the whole mailbox. Pass--folder allfor the old behaviour.- Exit codes differ: this CLI uses 0 (success), 1 (runtime error), 2 (usage error), 3 (auth or
permission problem), 4 (not found) —
msgraphwas less consistent, including exiting 0 when not logged in.
Troubleshooting
mgraphctl: 'uv' is not installed— installuv(see Prerequisite above) and try again.- First run is slow — the shim is building the virtual environment (10-40 seconds); it prints a notice to stderr while doing so, and every later run is fast.
error[CONSENT_REQUIRED]— an administrator must grant consent once; the error prints the admin-consent URL (see Scopes above).error[NOT_LOGGED_IN]— runloginyourself in your own terminal; data commands never open a browser on their own.error[MISSING_SCOPE]— the cached sign-in doesn't cover this command; runlogin --scopes extended, orlogin --scope <name>for an on-demand scope.claimsexits 3 on a stale or missing cache — it decodes the cached token locally and never makes a network call, so it cannot refresh an expired token; runlogin(orstatus, which does refresh silently) first.- Device-code login is blocked — some tenants apply Conditional Access policies that require a compliant, registered device; the device-code flow cannot satisfy those and interactive browser login is the only option.
- Behind a proxy — set
HTTPS_PROXY(andHTTP_PROXYif needed); the CLI honours the standard proxy environment variables. - Times look wrong — the CLI detects your local IANA time zone automatically; override it with
MGRAPHCTL_TZ=Europe/Warsawor the global--tzoption if detection picks the wrong zone.
Development
uv sync
uv run pytest
uv run ruff check src tests
uv run ruff format src tests
The test suite runs entirely offline against recorded fixtures — no Microsoft 365 account or network access is needed to run it.
CI (.github/workflows/ci.yml) runs the suite on Python 3.10–3.13, ruff, uv lock --check and a
credential scan on every push. Releases are annotated mgraphctl--vX.Y.Z tags on main, cut with
claude plugin tag; the tag publishes the package to PyPI and a GitHub Release. See VERSIONING.md.
Provenance and licence
mgraphctl is original to this repository: an independent Python re-implementation of the
msgraph skill's feature set, not a port and not tracking any upstream project. Licensed under
the MIT licence; see LICENSE.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mgraphctl-0.2.0.tar.gz.
File metadata
- Download URL: mgraphctl-0.2.0.tar.gz
- Upload date:
- Size: 116.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
uv/0.12.10 {"installer":{"name":"uv","version":"0.12.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
88a5a1ac868f7fe5e2205841065a1ba9a1978021d8d045a86d82d4eee6ae537e
|
|
| MD5 |
c88bdb6fd37851d910635d9fff9c0461
|
|
| BLAKE2b-256 |
b279152570e95cae67685dc4eb11e1de4379baef0dc2696f7d590986d65b115d
|
File details
Details for the file mgraphctl-0.2.0-py3-none-any.whl.
File metadata
- Download URL: mgraphctl-0.2.0-py3-none-any.whl
- Upload date:
- Size: 148.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
uv/0.12.10 {"installer":{"name":"uv","version":"0.12.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cec6d2d54fd6330150399224bef3361eafa2fad977f50a42894cd78aaf709942
|
|
| MD5 |
07bc9db5d734022d816ba3fc4ee2e6d2
|
|
| BLAKE2b-256 |
d684b018bb43803f70e0c0f78f4387a45a5afafef4ef1eec68edc002bc04b8dc
|