proactive-mcp
Give every AI agent a reason to reach out first.
A local-first MCP server that turns read-only signals and local memory into grounded situations your existing agent can deliver at the right time.
English · 한국어
Why · How it works · Get started · Connect an agent · Documentation
Get started
Open the local agent you already use and paste the block below. You only handle Google consent. You need your own Google Cloud Desktop OAuth client (BYO).
Install proactive-mcp with uvx from PyPI. Register it as a local stdio MCP server for this agent using absolute paths. Complete read-only Google authorization using my own Google Cloud Desktop OAuth client JSON (BYO). Do not use or request someone else's client secret. Start the recommended watcher and verify the connection. Read https://github.com/madrobotnet/proactive-mcp/blob/main/docs/INTEGRATIONS.md and https://github.com/madrobotnet/proactive-mcp/blob/main/docs/SETUP_GOOGLE.md before changing configuration. Treat every reply_deadline as a conservative candidate, not an action verdict. Before speaking, confidently drop newsletters, marketing, automated receipts, FYI or FYI-CC with no ask, threads owned by someone else, and rows with no question, request, or decision for me. Keep explicit reply, RSVP, or decision requests, my deadlines, and unanswered questions directed to me. Surface uncertain candidates, leave the whole lease unconfirmed, or snooze them in an interactive conversation; never silently discard uncertainty as non-actionable. After reviewing every row, only when choosing confirmation, confirm the entire reviewed lease exactly once, including confidently and silently dropped candidates. Keep MCP tool content in English, but speak my language. Load serve only in interactive everyday conversations and serve-scheduled only in separate scheduled conversations. Never load both profiles into one conversation. Do not configure automated scheduling unless this host guarantees a dedicated per-run MCP profile; proactive-mcp must never launch or verify the host. Do not use HTTP transport, do not send mail or create calendar events, and report every command and file changed plus anything that needs my approval.
You approve the Google consent screen. After a successful first read the sources should show ok. Command names and host recipes live in docs/INTEGRATIONS.md. BYO Google details for the agent are in docs/SETUP_GOOGLE.md.
If you are developing from a checkout, give the agent that checkout's absolute path. The public install is uvx from PyPI.
Why proactive-mcp?
AI agents know how to answer. They rarely know when to start.
proactive-mcp supplies that direction. It watches approved read-only sources in the background, combines them with memory the user intentionally saved, and produces a structured Situation only when something is worth raising now.
| Read-only signals | Local context | Agent-neutral delivery |
|---|---|---|
| Gmail and Google Calendar are read through minimal scopes. | Memories, situations, delivery confirmations, and sync state stay in local SQLite. | Any local MCP client can use the same tools and deliver through its own channel. |
Situations, not notifications
proactive-mcp doesn't push every new event into your chat. Deterministic detectors turn source data into a small set of situations grounded in the source data:
| Situation | Example |
|---|---|
reply_deadline |
A message is a conservative reply candidate, not a verdict that the user must act. |
calendar_conflict |
Two accepted or owned timed events overlap. |
personal_occasion |
A saved personal date is approaching and relevant now. |
Each result carries a title, why it matters now, bounded evidence, suggested actions, priority, and expiry. External text remains explicitly untrusted.
How it works
flowchart LR
G["Gmail<br/>read only"] --> S["proactive-mcp"]
C["Google Calendar<br/>read only"] --> S
M["Local memory<br/>SQLite"] --> S
S --> E["Deterministic<br/>Situation engine"]
E --> T["MCP tools"]
T --> A["Your existing<br/>AI agent"]
A --> U["Agent's own channel"]
- A watcher synchronizes Gmail and Calendar with read-only OAuth scopes.
- The situation engine evaluates deterministic rules against source snapshots and local memory.
- The agent calls
proactive_checkand receives any returned situations. - The host reviews the whole lease and filters candidates for this user. Uncertain candidates may remain unconfirmed or be snoozed. Only when choosing confirmation after review does the host confirm the entire reviewed lease exactly once, including confidently dropped candidates.
- Acknowledgement, snooze, mute, resolution, cooldown, and daily budget rules prevent repeated or noisy delivery.
By default, non-critical situations are held during local quiet hours from 21:00 through 07:00 and stay pending for a later check instead of being dropped. Nothing fires automatically at 07:00: an already-running or host-scheduled agent must call proactive_check after quiet hours end.
Trust boundaries
- Google access is limited to
gmail.readonlyandcalendar.readonly. - Credentials use the operating-system keyring when available, with a private local fallback only when the platform keyring is unavailable.
- Message bodies, calendar text, and recalled memory are treated as untrusted evidence, never as instructions.
- No LLM or third-party cloud service sits inside the detection pipeline. proactive-mcp never launches a host agent/model or sends it a prompt.
- Stale or incomplete sources produce visible degraded status, never a false "nothing to report."
- The SQLite database,
config.toml, credential authority marker, and any file-backed credential fallback live under~/.proactive-mcp/. A keyring credential stays in the operating-system keyring, outside that directory.PROACTIVE_DATABASEmoves the file-backed state, not the keyring entry.
Connect an agent
proactive-mcp is agent-dependent: it exposes local stdio tools but never starts Grok, Codex, Hermes, another host agent, or a model. serve-scheduled is only a restricted MCP server surface. Starting it or the daemon alone does not create a conversation or delivery; pending situations wait for an already-running or host-scheduled agent to call the tools explicitly.
The host loads serve only in an interactive everyday conversation and serve-scheduled only in a separate manual or scheduled conversation. It never loads both profiles into one conversation. Profile isolation and agent lifecycle are host/operator responsibilities outside the plugin. Automated scheduling is supported only when the host provides a dedicated per-run MCP profile containing only serve-scheduled; otherwise fail closed by not scheduling it. Manual restricted use remains possible.
| Client | Integration model |
|---|---|
| Grok CLI 0.2.112 | Manual dedicated restricted profile only; merged config sources cannot prove immutable per-run isolation, so unattended scheduling is not advertised |
| Codex CLI | Local stdio; config layers are not claimed isolated by this plugin, so schedule only when the host/operator independently guarantees a dedicated per-run profile |
| Hermes Agent | Local stdio. Schedule only when the host guarantees a dedicated per-run profile |
| Claude Code Desktop | Local stdio; local tasks only when that version provides a dedicated per-task MCP profile |
The daemon may perform local sync, deterministic evaluation, queue maintenance, and the documented critical-only OS fallback. It never invokes an agent/LLM or sends prompts. Exact host responsibilities and command shapes are in docs/INTEGRATIONS.md.
The delivery contract
When an agent calls proactive_check:
- Read
warningsfirst. Stale-source warnings are not an all-clear. Areply_deadlineis a conservative candidate, not an action verdict. - Before speaking, confidently drop newsletters, marketing, automated receipts, FYI or FYI-CC with no ask, threads owned by someone else, and rows with no question, request, or decision for this user.
- Keep explicit reply, RSVP, or decision requests, user-owned deadlines, and unanswered questions directed to this user.
- Surface uncertain candidates, leave the whole lease unconfirmed, or snooze them from the interactive profile. Never silently discard uncertainty as non-actionable.
- After reviewing every row, only when choosing confirmation, use the
receipt_tokenfrom that check to callconfirm_deliveryexactly once for the entire reviewed lease. That confirmation includes candidates the host confidently and silently dropped. Never confirm a tokenless response. - Keep MCP tool names, descriptions, fields, and values in English. Speak to the user in the user's language.
- Keep interactive everyday and scheduled work in separate conversations. Load only
servein the former and onlyserve-scheduledin the latter, never both. The host/operator owns this isolation; if a dedicated per-run profile is unavailable, do not automate the scheduled run.
This confirmation step keeps delivery history accurate across crashes, retries, and multiple agents.
Tool surface
Memory
remember · recall · update · list_entities · forget
Situations and delivery
proactive_check · confirm_delivery · list_situations · get_situation · acknowledge_situation · snooze_situation · mute_situation · get_status
Release status
| Area | Now |
|---|---|
| Distribution | PyPI package proactive-mcp 0.2.0, installed with uvx |
| Google OAuth | Your own Desktop OAuth client (BYO) |
| Hosts | Grok CLI and Codex CLI for everyday use |
| Data | Local SQLite under ~/.proactive-mcp/ |
Scope and release decisions remain canonical in docs/PRODUCT_PLAN.md.
Documentation
| Guide | Purpose |
|---|---|
README.ko.md |
Korean README |
docs/SETUP_GOOGLE.md |
BYO Google OAuth (the public default) |
docs/INTEGRATIONS.md |
Host recipes and command shapes for agents |
docs/STATE_MODEL.md |
Source, lease, collector, daemon, fallback, and receipt state semantics |
docs/MEMORY_MODEL_V2.md |
Memory model and tool contracts |
License
MIT © 2026 Kyungwoo Seo <hello@madrobot.net>
This project was built with OmO Native.
You can support this project on Ko-fi.
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 proactive_mcp-0.2.0.tar.gz.
File metadata
- Download URL: proactive_mcp-0.2.0.tar.gz
- Upload date:
- Size: 398.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
94cb54569a50bf9090a9eaf24b13a4187aa0d7dda2b40f6a1948f0f3153cdd98
|
|
| MD5 |
640860dea1d723303b50432969c6f254
|
|
| BLAKE2b-256 |
4a3def6d8063820fdf6ee4b2c4075c3108b8178b75737d1f13b3adf0e572fd96
|
Provenance
The following attestation bundles were made for proactive_mcp-0.2.0.tar.gz:
Publisher:
release.yml on madrobotnet/proactive-mcp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
proactive_mcp-0.2.0.tar.gz -
Subject digest:
94cb54569a50bf9090a9eaf24b13a4187aa0d7dda2b40f6a1948f0f3153cdd98 - Sigstore transparency entry: 2687304991
- Sigstore integration time:
-
Permalink:
madrobotnet/proactive-mcp@e51e62921f9eb3b44b05a639dacde9badb7ec4ec -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/madrobotnet
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@e51e62921f9eb3b44b05a639dacde9badb7ec4ec -
Trigger Event:
release
-
Statement type:
File details
Details for the file proactive_mcp-0.2.0-py3-none-any.whl.
File metadata
- Download URL: proactive_mcp-0.2.0-py3-none-any.whl
- Upload date:
- Size: 195.0 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 |
a722b29b5b28667d5e8e3941053f50f1bcaa4b1a4984a393d32e4672a9790250
|
|
| MD5 |
139393ffbb23e40eb6541d7ba89df18e
|
|
| BLAKE2b-256 |
3aa6b61eae20acd9cda5b5878e45b98f42356758646999540a8e7ddeed82aaca
|
Provenance
The following attestation bundles were made for proactive_mcp-0.2.0-py3-none-any.whl:
Publisher:
release.yml on madrobotnet/proactive-mcp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
proactive_mcp-0.2.0-py3-none-any.whl -
Subject digest:
a722b29b5b28667d5e8e3941053f50f1bcaa4b1a4984a393d32e4672a9790250 - Sigstore transparency entry: 2687305131
- Sigstore integration time:
-
Permalink:
madrobotnet/proactive-mcp@e51e62921f9eb3b44b05a639dacde9badb7ec4ec -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/madrobotnet
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@e51e62921f9eb3b44b05a639dacde9badb7ec4ec -
Trigger Event:
release
-
Statement type: