Skip to content

Repository files navigation

mgraphctl

Microsoft 365 access from Claude Code and Codex 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 Code

claude plugin marketplace add svd/mgraphctl
claude plugin install mgraphctl@mgraphctl

Codex

codex plugin marketplace add svd/mgraphctl --ref main
codex plugin add mgraphctl@mgraphctl

Start a new Codex task after installation to load the skill. For development, register this checkout instead with codex plugin marketplace add /absolute/path/to/mgraphctl, then run the same codex plugin add command. The marketplace packages the entire repository so the skill, launcher, Python sources and lockfile stay together.

The skill resolves the launcher from its installed location. In Codex, replace ${CLAUDE_PLUGIN_ROOT}/mgraphctl in the examples below with the quoted absolute launcher path reported by the skill. That Claude variable is not required in Codex. For login in your own terminal, use the actual absolute path, not the variable.

Standalone CLI

The CLI is also on PyPI, 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 the agent 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.

Commands

All 123 verbs are documented inside the skill, and --help works at every level.

Where What
skills/mgraphctl/SKILL.md the skill itself: setup, a cheat-sheet of every noun and its verbs, recipes, guardrails, exit codes
skills/mgraphctl/reference/commands.md the conventions every verb shares — argument resolution, the list envelope, paging defaults, exit codes, environment variables — and the index of the files below
skills/mgraphctl/reference/commands/ one file per noun (mail.md, calendar.md, teams.md, …): each verb's options, the Graph call it makes and the scopes it needs
${CLAUDE_PLUGIN_ROOT}/mgraphctl --help
${CLAUDE_PLUGIN_ROOT}/mgraphctl mail --help
${CLAUDE_PLUGIN_ROOT}/mgraphctl mail list --help

MCP server

The same verbs are available to any MCP client, including hosts that cannot run a Claude Code skill. Installed as a package it needs the optional dependency; run through the plugin's own mgraphctl shim it does not, since the shim requests that extra for the mcp noun itself:

uv tool install "mgraphctl[mcp]"          # or: pip install "mgraphctl[mcp]"
mgraphctl mcp tools --capabilities mail,calendar   # what would be exposed, before wiring it up
mgraphctl mcp serve --capabilities mail,calendar   # stdio, the recommended transport
// claude_desktop_config.json, or any other host's MCP config
{ "mcpServers": { "mgraphctl": {
    "command": "mgraphctl",
    "args": ["mcp", "serve", "--capabilities", "mail,calendar,teams"]
} } }

Three things are worth knowing before using it.

Only what you ask for. All 123 verbs as tools would cost the client a great deal of context, so --capabilities names the command groups to expose. Omitted, it is core,mail,calendar,people,chats; all is accepted and covers everything except api, the raw Graph escape hatch, which is only ever exposed by naming it. mcp tools prints the resolved list.

Read-only until told otherwise. Verbs that change something appear only with --allow-write. Tools also carry the MCP readOnlyHint / destructiveHint annotations, so a host can prompt accordingly — but the annotations are hints, and --allow-write is the gate.

Results stay small. There is no --json tool argument. Every tool takes output_format (text, the default compact table, or json for the full payload as structured content) and output_file, which writes the result under --output-dir and returns a link instead of the payload. Anything past --max-inline-bytes (25 KB) is written and linked whichever was asked, so one wide fetch cannot flood the client. Written files are readable back as MCP resources. Every path a tool argument names is confined to --output-dir — destinations like --output, and equally files a verb reads, such as --attach and --body-file — and the server runs from inside that directory, so a verb's own default destination lands there too.

The protocol revision is 2026-07-28, plus the earlier ones the SDK negotiates. Deprecated features — the HTTP+SSE transport, protocol sessions, the standalone GET stream, resumable streams — are not implemented.

A word on HTTP

--transport http exists, and it binds loopback only; anything else is a usage error rather than a warning. The reason is worth stating plainly: the server acts as exactly one user — whoever's sign-in is cached — and has no way to tell callers apart, so any reachable port is that person's mailbox, calendar and files. It therefore also requires a bearer token (MGRAPHCTL_MCP_TOKEN, else one is generated and printed at startup) and refuses any request carrying an Origin header that --allow-origin does not list, which is the DNS-rebinding defence the transport spec requires of local servers.

That token is a local shared secret, not OAuth, and the server deliberately advertises no protected-resource metadata. Conforming to the MCP authorization spec means validating tokens issued for this server as their audience; accepting the caller's Entra token instead is exactly the token passthrough the spec prohibits, and doing it properly needs a second Entra app registered as an API plus an on-behalf-of exchange — which requires a client secret that a locally installed CLI cannot keep. Prefer stdio, where credentials come from the environment as the spec prescribes.

Where things live

  • Virtual environment: under ${CLAUDE_PLUGIN_DATA} when Claude Code sets it, otherwise ~/.cache/mgraphctl/venv ($XDG_CACHE_HOME/mgraphctl/venv when 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 mgraphctl item whose account is the cache path. Without one it is ~/.mgraphctl/token_cache.json, mode 0600, in a 0700 directory. token_store = auto | keyring | file in the config file, or MGRAPHCTL_TOKEN_STORE, picks; status shows 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, a uv upgrade) asks once for keychain access; answer "Always Allow". token_store = "file" restores the old behaviour.

  • Config file: ~/.mgraphctl/config.toml, optional (--config PATH or MGRAPHCTL_CONFIG to point elsewhere). Every MGRAPHCTL_* setting can go there as the name without the prefix, lower-cased; a flag beats an environment variable, which beats the file. mgraphctl config init writes a commented template, mgraphctl config set tz Europe/Warsaw edits one key, and mgraphctl config show prints 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 Node msgraph skill has always requested: mail read/send, calendars, files, sites, chats, channel messages, meeting transcripts, people, contacts, notes, tasks, and group membership. This is what login requests unless told otherwise.
  • extendeddefault plus write access to mail and mailbox settings, presence, directory user lookup, shared calendars, chat creation, and team/channel listing. Request it with login --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 list defaults to the Inbox; msgraph's emails mode listed the whole mailbox. Pass --folder all for 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) — msgraph was less consistent, including exiting 0 when not logged in.

Troubleshooting

  • mgraphctl: 'uv' is not installed — install uv (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] — run login yourself 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; run login --scopes extended, or login --scope <name> for an on-demand scope.
  • claims exits 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; run login (or status, 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 (and HTTP_PROXY if 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/Warsaw or the global --tz option 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.

About

No description, website, or topics provided.

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages