studylife-mcp
An MCP server exposing StudyLife (a self-hosted Blazor WASM + ASP.NET Core study-management platform, .NET 10) to Claude and other MCP clients. It provides:
- Read tools — courses, notes (incl. full-text search), study sessions/calendar, and per-course learning goals.
- Write tools — create a note, create a study session. Nothing else: no update/delete tools exist, not even unimplemented.
- Two transports — stdio (Claude Desktop, single StudyLife account) and Streamable HTTP (remote, multi-user, behind your own reverse proxy).
- A self-built OAuth 2.1 authorization server for the HTTP transport — dynamic client registration, PKCE, and a StudyLife-hosted connect flow (passkey login + consent, no API key to copy/paste) for identity, so multiple StudyLife users can share one deployment without ever seeing each other's data.
- A structured audit log (tool, argument digest, outcome, duration) for every tool call, on both transports.
This is a learning project and portfolio piece; design decisions and trade-offs are logged in docs/decisions.md. Deliberately scoped narrower than its sister project studylife-ai: no RAG, no agent loop — the MCP client (e.g. Claude) is the agent, this server just exposes cleanly modeled tools.
Status: S1–S4 done
S1 (scaffold, list_courses over stdio, verified end-to-end in Claude
Desktop) and S2 (the remaining read tools — notes, sessions, course goals —
with camelCase-alias DTOs mirroring StudyLife's real JSON shapes) are done.
S3 is done: the two write tools, gated by the MCP client's own tool-approval
prompt (no server-side confirmation step — this project has no agent loop of
its own to pause), backed by a dedicated McpApiKeyHash StudyLife API-key slot
mirroring the existing Home-Assistant/studylife-ai pattern (implemented
directly in the studylife repo, not here — see docs/decisions.md),
and a structured audit log on every tool call. S4 is done: Streamable HTTP
transport, a self-built OAuth 2.1 authorization server with multi-user support
(see Streamable HTTP + OAuth 2.1
below), a non-root Docker image, and a verified MCP Inspector
run. Every milestone was verified against the real StudyLife instance, not
just mocks — see docs/decisions.md for each milestone's
full write-up, including two real bugs found live along the way (a silent
camelCase/snake_case field mismatch, and a double-await that crashed the
OAuth store's SQLite connection) and how they were caught.
Since S4, this server has also been deployed to the author's own production
K3s cluster via Flux CD GitOps (see k8s/) and made publicly reachable
through Tailscale Funnel — deliberately scoped so this is the only service
in that cluster the tailnet ACL allows to become public (see
docs/decisions.md). The previously-open RFC 7591 dynamic
client registration endpoint (/register, unauthenticated by protocol
design) is now rate-limited and self-cleans unused registrations — see
Security notes.
Still open, deliberately deferred: submitting/listing this repo in public MCP directories (see docs/decisions.md).
Architecture
flowchart LR
subgraph Clients
Desktop["Claude Desktop\n(stdio)"]
Remote["Remote MCP client\n(e.g. claude.ai Connector)"]
end
Proxy["Your reverse proxy\n(TLS termination)"]
subgraph MCP["studylife-mcp"]
StdioT["stdio transport"]
HttpT["Streamable HTTP transport"]
AS["OAuth 2.1 authorization server\n(oauth_provider.py)"]
Callback["/auth/studylife/callback\n(assertion exchange)"]
OAuthDB[("SQLite\nclients / tokens /\nencrypted per-user keys")]
Resolver["StudyLifeClientResolver\n(.env account, or per-user\nvia OAuth subject)"]
Tools["7 tools\nlist_*, search_notes,\ncreate_note, create_session"]
Audit["Audit log\n(stderr: tool, args digest,\noutcome, duration)"]
end
StudyLifeConnect["StudyLife /connect/mcp\n(login + consent, public)"]
StudyLifeAPI["StudyLife REST API\n(X-Api-Key / assertion exchange)"]
Desktop -- stdio --> StdioT
Remote -- HTTPS --> Proxy
Proxy --> HttpT
HttpT -. "first connect: redirect" .-> StudyLifeConnect
StudyLifeConnect -- "browser redirect: assertion" --> Callback
Callback -- "server-to-server exchange" --> StudyLifeAPI
Callback --> AS
AS --> OAuthDB
StdioT --> Tools
HttpT -- Bearer token --> Tools
Tools --> Resolver
Resolver -- "stdio: .env key" --> StudyLifeAPI
Resolver -- "HTTP: subject to decrypted key" --> OAuthDB
Resolver --> StudyLifeAPI
Tools --> Audit
stdio mode always uses the single .env-configured StudyLife account.
HTTP+OAuth mode resolves each authenticated caller to their own StudyLife
account: authorize() redirects the user's browser to StudyLife's own
/connect/mcp page — StudyLife handles the passkey login and consent, then
redirects back to this server's /auth/studylife/callback with a single-use
assertion. This server exchanges that assertion server-to-server for the
caller's real StudyLife user id and a freshly rotated MCP API key, and binds
every access/refresh token issued from that login to that user id (not a hash
of the key — see docs/decisions.md "Identity Contract v1"
for why that mattered). StudyLifeClientResolver looks up the right account per tool
call from the caller's access token, and fails closed (raises rather than
falling back to the .env account) whenever HTTP mode is configured but a
request isn't properly authenticated — see docs/decisions.md
"Multi-user" for the full reasoning.
Setup: Claude Desktop (stdio, single StudyLife account)
-
Install it, one of two ways:
-
From PyPI (recommended for just using it):
pip install studylife-mcp
(or
pipx install studylife-mcpto keep it in its own isolated environment) -
From source (for development): clone this repo, then
uv sync. Replacestudylife-mcp/studylife-mcp-loginbelow withuv run studylife-mcp/uv run studylife-mcp-login(run from the repo directory).
-
-
Copy
.env.exampleto.envand setSTUDYLIFE_BASE_URLto your StudyLife instance URL. LeaveSTUDYLIFE_API_KEYunset for now — the next step fills it in. (A PyPI install has no repo directory to hold this file - eithercdsomewhere of your choosing first, or pass--env-file /absolute/path/to/.envin the next step and reference that same path in the Claude Desktop config'senvblock below.) -
Log in and get an MCP API key. Two ways to do this:
-
Browser login (recommended): run
studylife-mcp-login
This opens your browser to StudyLife's own login/consent page (
/connect/mcp, passkey login — the same flow the Streamable HTTP transport uses), receives the resulting single-use assertion on a short-lived127.0.0.1listener (RFC 8252 loopback redirect — requires a StudyLife release with the loopback exception for/connect/mcp; older instances reject the redirect_uri, in which case fall back to manual setup below), exchanges it server-to-server for a freshly rotated MCP API key, and writes it into.envasSTUDYLIFE_API_KEY— the key itself is never printed to the terminal. Options:--base-url(overrideSTUDYLIFE_BASE_URLfor this run),--env-file(default.env),--timeout(seconds to wait for the browser round trip, default 300). -
Manual (fallback for older StudyLife instances only): current StudyLife releases no longer offer an MCP key on the Setup page - the browser login above is the only provisioning path. On an older instance that predates the loopback exception, generate a dedicated key on its Setup page ("StudyLife MCP Server" card) and paste it into
.envasSTUDYLIFE_API_KEY.
-
-
Add to your Claude Desktop config (
claude_desktop_config.json):-
PyPI install -
studylife-mcpis already onPATH, but there's no project directory for it to find a.envin, so pass the two settings directly:{ "mcpServers": { "studylife": { "command": "studylife-mcp", "env": { "STUDYLIFE_BASE_URL": "https://studylife.example.com", "STUDYLIFE_API_KEY": "the-key-from-step-3" } } } }
-
From-source install - reads
.envfrom the repo directory instead:{ "mcpServers": { "studylife": { "command": "uv", "args": ["run", "--directory", "/absolute/path/to/studylife-mcp", "studylife-mcp"] } } }
Where to find that file depends on how Claude Desktop was installed:
- Classic installer:
%APPDATA%\Claude\claude_desktop_config.json(Windows) /~/Library/Application Support/Claude/claude_desktop_config.json(macOS). - MSIX-packaged app (Microsoft Store-style install, package id starting
Claude_...):%APPDATA%is redirected to%LOCALAPPDATA%\Packages\Claude_<id>\LocalCache\Roaming\Claude\claude_desktop_config.json. In-app: Settings → Developer → "Local MCP servers" opens this same file. Note the app's "Benutzerdefinierten Connector hinzufügen" dialog is for remote MCP servers (URL-based, Streamable HTTP) only — it does not accept a local command; local stdio servers are configured exclusively via this JSON file.
-
-
Restart Claude Desktop (fully quit, not just close the window). The
list_coursestool should appear.
Setup: Streamable HTTP + OAuth 2.1 (remote, multi-user)
Run this behind your own reverse proxy (TLS terminates there) to add
studylife-mcp as a remote MCP connector — e.g. via a client's "Custom
Connector" URL field. Unlike stdio mode, multiple StudyLife users can share one
running server: each person signs in with their own StudyLife account (passkey
login + consent on StudyLife's own /connect/mcp page), and every access token
is bound to that one account.
-
In
.env, in addition toSTUDYLIFE_BASE_URL(STUDYLIFE_API_KEYis optional in HTTP mode, see Configuration), set:MCP_PUBLIC_URL=https://studylife-mcp.example.com # externally reachable, behind your reverse proxy MCP_TOKEN_ENCRYPTION_KEY=... # python -c "from cryptography.fernet import Fernet; print(Fernet.generate_key().decode())" STUDYLIFE_CONNECT_URL=https://studylife.example.com # StudyLife's own public base URL
MCP_OAUTH_DB_PATH(defaultoauth.db),MCP_HTTP_HOST(default127.0.0.1,0.0.0.0inside Docker), andMCP_HTTP_PORT(default8000) are optional. -
Run it:
uv run studylife-mcp-http # or, containerized (build locally): docker build -t studylife-mcp . docker run -p 8000:8000 --env-file .env -v studylife-mcp-data:/app/data studylife-mcp # or, the published image (CI builds and pushes ghcr.io/lukislp/studylife-mcp on every # release, multi-arch amd64/arm64 - see the "docker" job in .github/workflows/ci.yml): docker run -p 8000:8000 --env-file .env -v studylife-mcp-data:/app/data \ ghcr.io/lukislp/studylife-mcp:latest
-
Add
https://studylife-mcp.example.comas a remote MCP connector in your client. The client registers itself automatically (dynamic client registration, RFC 7591); on first connect you'll be redirected to StudyLife itself to log in (passkey) and approve the connection — no API key to copy/paste. StudyLife hands back a single-use assertion this server exchanges server-to-server for your real account and a freshly rotated MCP API key. Subsequent connections reuse the refresh token, no re-login needed.
Discovery endpoints (for debugging, or a client that doesn't auto-discover):
GET /.well-known/oauth-authorization-server and
GET /.well-known/oauth-protected-resource. The MCP endpoint itself is
POST /mcp, requiring Authorization: Bearer <access_token>.
Production reference deployment
The author's own instance runs this way: Kubernetes (K3s) via Flux CD GitOps
(manifests in k8s/ — namespace/secret/network policies/ingress applied
once by hand, the rest continuously reconciled), with a private cert-manager
CA trusted via STUDYLIFE_CA_CERT_PATH, and made publicly reachable through
Tailscale Funnel rather than a self-managed
reverse proxy. Public exposure is scoped to exactly this one service at the
tailnet ACL level (a dedicated Tailscale tag, not the operator's shared
default) — see docs/decisions.md for the full rationale
and a real Tailscale-side incident hit along the way.
Configuration
| Variable | Description |
|---|---|
STUDYLIFE_BASE_URL |
Base URL of your StudyLife instance, e.g. https://studylife.example.com/ (or a cluster-internal address in HTTP mode) - what this server itself calls, both for tool calls and the connect-flow assertion exchange. |
STUDYLIFE_API_KEY |
MCP API key, sent as the X-Api-Key header - obtained via studylife-mcp-login (see Setup). Required for stdio mode (the single account it always runs as). Optional in HTTP mode - each caller resolves to their own account via the connect flow instead, and StudyLifeClientResolver fails closed rather than falling back to this key for an unauthenticated caller. |
MCP_PUBLIC_URL |
(HTTP mode only) Externally reachable base URL of this server, behind your reverse proxy. Used as both the OAuth issuer_url and resource_server_url, and to build this server's own /auth/studylife/callback URL. |
STUDYLIFE_CONNECT_URL |
(HTTP mode only) StudyLife's own public/browser-facing base URL. The OAuth authorize() step redirects the user's browser here (/connect/mcp) to log in and consent - distinct from STUDYLIFE_BASE_URL, which the browser never talks to. |
MCP_TOKEN_ENCRYPTION_KEY |
(HTTP mode only) Fernet key encrypting each user's StudyLife API key at rest in the OAuth store. |
MCP_OAUTH_DB_PATH |
(HTTP mode only) SQLite file for OAuth clients/tokens/per-user keys. Default oauth.db. |
MCP_HTTP_HOST / MCP_HTTP_PORT |
(HTTP mode only) Bind address. Defaults 127.0.0.1:8000 (0.0.0.0 inside Docker). |
Tools
| Tool | Effect |
|---|---|
list_courses |
Read-only. Lists all courses of the active study program (semester, code, color, icon, topics, ECTS). |
list_notes |
Read-only. Lists all notes (title, content, course/session link, timestamps). |
search_notes |
Read-only. Full-text searches notes by title and content. |
list_sessions |
Read-only. Lists all study sessions/calendar entries (course, time range, topic, notes, completion status). |
list_course_goals |
Read-only. Lists per-course learning goals (target date, completion status, grade, completed topics, tag). No aggregate ECTS total — see docs/decisions.md for why. |
create_note |
Writes. Creates a new note (title, content, optional course/session link). |
create_session |
Writes. Creates a new study session/calendar entry for a course and time range; is_completed can log a session retroactively. |
All tools are available identically on both transports. In HTTP+OAuth mode, each call runs against whichever StudyLife account the caller's access token belongs to (see Architecture). Every free-text field returned (note title/content, session topic/notes, course-goal completion note) is flagged in its tool's description as user-authored data, not instructions.
Security notes
- Whitelist by construction:
create_note/create_sessionare the only write-capable functions that exist at all — no generic "call this endpoint" tool, no update/delete tool, not even commented out. - Audit log: every tool call (read and write, both transports) logs
tool, a SHA-256 digest of its arguments (not the raw values — arguments can contain free text),result(ok/error), andduration_msto stderr — never stdout, which carries the stdio JSON-RPC transport. - Per-user isolation in HTTP mode, fails closed:
StudyLifeClientResolverraisesPermissionErrorinstead of falling back to the.envaccount whenever HTTP mode is configured and the request isn't properly bound to a StudyLife account — a missing/subjectless access token, or a valid token whose subject has no stored key.STUDYLIFE_API_KEYis only required for stdio mode as a result; a pure-HTTP deployment can leave it unset. - OAuth subject is the real StudyLife user id, not a hash of the API key —
every new connect binds tokens to
str(userId)from the assertion exchange (see Architecture). Grants made before this change keep their oldsha256(key)subject and keep resolving untouched; they are not migrated. - StudyLife keys are encrypted, not just hashed, in the OAuth store — this server needs the plaintext back to call StudyLife on the user's behalf, unlike StudyLife's own key storage (hash-only, StudyLife itself never sees the plaintext again after generation).
- Hardened dynamic client registration:
POST /registeris unauthenticated by protocol design (RFC 7591 — any MCP client self-registers with no prior credentials), which is a free, repeatable target for bots once this server is publicly reachable.RegistrationRateLimitMiddlewarecaps it to 5 registrations/hour per source IP; any client that registers but never completes the OAuth flow within 24h is purged - both opportunistically on the next registration attempt and by an hourly background sweep, so the store stays bounded regardless of registration volume and expired entries don't linger on the dashboard during quiet periods. See docs/decisions.md for what this does and doesn't protect against. - Rate-limited tool calls:
POST /mcpis already authenticated (a valid Bearer token is required), so this isn't about anonymous abuse — it bounds a legitimate-but-buggy or compromised client (a runaway loop) rather than a scanner. Limited per-token (not per-IP, since identity already exists once authenticated) to 300 requests/hour, generous over realistic usage. - Connected-apps self-service, internal-only:
/connected-appslets a StudyLife user see which OAuth clients hold a live refresh token for their account and revoke one — gated by re-entering a real StudyLife key (not trusting the already-issued token). Deliberately unreachable from the public Tailscale Funnel URL: itsIngressuses an explicit path allowlist rather than adefaultBackend, so/connected-apps404s at the ingress controller before ever reaching the pod, reachable only via the tailnet/LAN-onlystudylife-mcp.heim.lanroute. See docs/decisions.md.
Observability
GET /metrics (HTTP mode only) exposes Prometheus metrics: tool-call counts
and duration by tool and outcome (studylife_mcp_tool_calls_total,
studylife_mcp_tool_call_duration_seconds), rate-limit rejections by path
(studylife_mcp_rate_limit_rejections_total) — the same underlying
measurements as the structured audit log, just also exported for scraping —
and currently registered OAuth clients by activation status
(studylife_mcp_registered_clients{status="activated"|"pending"}, queried
fresh from the database on every scrape), a direct window into whether the
DCR rate-limit/TTL-cleanup pair is keeping up with real traffic, not just
that it exists.
Reached only by the author's own in-cluster Prometheus (pod-to-pod, not
through any Ingress/Gateway/Funnel path — see k8s/ and
docs/decisions.md); running this yourself, point your
own Prometheus at the same port. No distributed tracing — deliberately
deferred, see docs/decisions.md.
Development
uv sync
uv run ruff check .
uv run mypy src
uv run pytest
Roadmap
- S1 — Scaffold,
list_coursesover stdio, verified end-to-end in Claude Desktop. - S2 — Remaining StudyLife read tools (notes, sessions, course goals), camelCase-alias DTOs, contract tests.
- S3 — Write tools (
create_note,create_session), dedicatedMcpApiKeyHashkey slot, structured audit log. - S4 — Streamable HTTP transport, self-built OAuth 2.1 authorization server (multi-user), non-root Docker image, verified MCP Inspector run.
- Production deployment to a real K3s cluster via Flux CD GitOps (see k8s/), semantic-release + Docker-publish CI pipeline.
- Public exposure via Tailscale Funnel, scoped to exactly this one service at the ACL level, plus rate-limiting/TTL-cleanup hardening for the previously-open dynamic client registration endpoint.
- Connected-apps self-service page (internal-only), per-token rate limiting on
/mcp, Prometheus metrics + Grafana dashboard on the author's own cluster. - Distributed tracing — deliberately deferred (logs + metrics cover current needs), see docs/decisions.md.
- Submit/list this repo in public MCP directories — deliberately deferred, see docs/decisions.md.
Tech stack
| Component | Technology |
|---|---|
| Server | Python 3.12, official MCP Python SDK (mcp ≥2.0) |
| HTTP client | httpx, verified against the OS certificate store (truststore) or a custom CA (STUDYLIFE_CA_CERT_PATH) |
| Config | pydantic-settings + .env |
| OAuth store | aiosqlite, StudyLife keys encrypted at rest with cryptography.fernet |
| Tests | pytest + respx (HTTP mocking) + an ASGI test client for the OAuth/StudyLife-connect routes |
| Metrics | prometheus-client, scraped by the author's own self-hosted Prometheus |
| CI/CD | GitHub Actions (ruff, mypy --strict, pytest, semantic-release, multi-arch Docker publish to GHCR, Trivy scan) |
| Deployment | Docker (non-root) · Kubernetes (K3s) via Flux CD GitOps, see k8s/ · public exposure via Tailscale Funnel |
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 studylife_mcp-1.14.0.tar.gz.
File metadata
- Download URL: studylife_mcp-1.14.0.tar.gz
- Upload date:
- Size: 186.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7a5808b4d918a2f9d10f6477265e5070ff02b2aeba40f63f2c28fb3694c1f5e1
|
|
| MD5 |
f4a0f3d3850f80f069575a33c33181cf
|
|
| BLAKE2b-256 |
bfa3b7018fe3eaa81e92d3db615c4da7b8c96b726d87d6cd27a47646b41cf33b
|
Provenance
The following attestation bundles were made for studylife_mcp-1.14.0.tar.gz:
Publisher:
ci.yml on lukislp/studylife-mcp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
studylife_mcp-1.14.0.tar.gz -
Subject digest:
7a5808b4d918a2f9d10f6477265e5070ff02b2aeba40f63f2c28fb3694c1f5e1 - Sigstore transparency entry: 2654658069
- Sigstore integration time:
-
Permalink:
lukislp/studylife-mcp@d49689d04c62cc67ccd66266382e67704433e8ee -
Branch / Tag:
refs/heads/main - Owner: https://github.com/lukislp
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@d49689d04c62cc67ccd66266382e67704433e8ee -
Trigger Event:
push
-
Statement type:
File details
Details for the file studylife_mcp-1.14.0-py3-none-any.whl.
File metadata
- Download URL: studylife_mcp-1.14.0-py3-none-any.whl
- Upload date:
- Size: 60.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b4de9d369f4cd666ab6d2754823d32b5fdc04073e3aea105bd1e3ccd4bcddcc3
|
|
| MD5 |
365b2b49648b033bbe3662732cec0d7e
|
|
| BLAKE2b-256 |
2affd4b1af2816fb86469b671df01dca4f4fc6785b8af3d12a1f551fd8609a5a
|
Provenance
The following attestation bundles were made for studylife_mcp-1.14.0-py3-none-any.whl:
Publisher:
ci.yml on lukislp/studylife-mcp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
studylife_mcp-1.14.0-py3-none-any.whl -
Subject digest:
b4de9d369f4cd666ab6d2754823d32b5fdc04073e3aea105bd1e3ccd4bcddcc3 - Sigstore transparency entry: 2654658138
- Sigstore integration time:
-
Permalink:
lukislp/studylife-mcp@d49689d04c62cc67ccd66266382e67704433e8ee -
Branch / Tag:
refs/heads/main - Owner: https://github.com/lukislp
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@d49689d04c62cc67ccd66266382e67704433e8ee -
Trigger Event:
push
-
Statement type: