@sbains2/lifeos 0.1.3 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +14 -6
- package/bin/lifeos.js +51 -17
- package/package.json +1 -1
- package/src/commands/doctor.js +132 -0
- package/src/doctor.js +329 -0
- package/src/index.js +144 -15
- package/src/mcp-config.js +231 -0
- package/src/remedy.js +288 -0
- package/templates/SCHEMA.md +32 -1
- package/templates/mcps/registry.json +302 -133
|
@@ -1,209 +1,378 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.
|
|
3
|
-
"last_updated": "2026-
|
|
4
|
-
"_advisory": "BETA — early seed release. The MCP ecosystem
|
|
2
|
+
"version": "0.3",
|
|
3
|
+
"last_updated": "2026-05-01",
|
|
4
|
+
"_advisory": "BETA — early seed release. The MCP ecosystem moves fast. Each entry below has a `status` field declaring confidence in the install path, and a `last_verified` date for the date the registry entry was checked. For frictionless onboarding, `install_command` is the argv-style command Claude Code / Claude Desktop / similar runtimes can invoke directly. Treat any `community` or `beta-unverified` entry as a starting point — verify the linked repo's recent activity before installing. The official MCP registry at https://registry.modelcontextprotocol.io/ is the upstream source of truth; this file is a curated subset for the LifeOS personas we ship with.",
|
|
5
5
|
"_status_legend": {
|
|
6
6
|
"reference": "Maintained by the MCP steering group in modelcontextprotocol/servers. Most stable.",
|
|
7
|
-
"
|
|
8
|
-
"
|
|
9
|
-
"
|
|
10
|
-
"
|
|
7
|
+
"vendor-published": "Published by the vendor whose product it integrates with (e.g. GitHub, Microsoft, Notion, Stripe). Vendor-supported.",
|
|
8
|
+
"community": "Community-built, actively maintained as of last_verified. Multiple options often exist; this is the best-of-breed pick.",
|
|
9
|
+
"beta-unverified": "We have not researched a current canonical implementation. Install path needs your own due diligence.",
|
|
10
|
+
"use-at-your-own-risk": "Functions but carries significant risk (ToS violations, account-ban risk, etc.). Always read risk_advisory."
|
|
11
11
|
},
|
|
12
12
|
"servers": [
|
|
13
13
|
{
|
|
14
|
-
"id": "
|
|
15
|
-
"name": "
|
|
16
|
-
"category": "
|
|
17
|
-
"description": "Read/write
|
|
18
|
-
"
|
|
14
|
+
"id": "filesystem",
|
|
15
|
+
"name": "Local Filesystem",
|
|
16
|
+
"category": "core",
|
|
17
|
+
"description": "Read/write local files within an allowed directory tree",
|
|
18
|
+
"status": "reference",
|
|
19
|
+
"repo_url": "https://github.com/modelcontextprotocol/servers/tree/main/src/filesystem",
|
|
20
|
+
"runtime": "npx",
|
|
21
|
+
"install_command": ["npx", "-y", "@modelcontextprotocol/server-filesystem", "/path/to/allowed/dir"],
|
|
22
|
+
"auth": { "method": "none" },
|
|
19
23
|
"useful_for_personas": ["grad-student", "early-career-ic", "solo-researcher", "founder", "operator"],
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
"repo_url": "https://github.com/modelcontextprotocol/servers-archived",
|
|
23
|
-
"install_hint": "Reference server was moved to the archived repo when it stopped being actively maintained. Community alternatives exist on Smithery (https://smithery.ai). Verify scopes carefully before granting Drive access — read-only is safer than read-write for most LifeOS use cases.",
|
|
24
|
-
"last_verified": "2026-04-30"
|
|
24
|
+
"install_hint": "Always scope to specific directories — never grant filesystem access to your home root. Replace /path/to/allowed/dir with the actual path (e.g., your LifeOS scaffold dir).",
|
|
25
|
+
"last_verified": "2026-05-01"
|
|
25
26
|
},
|
|
26
27
|
{
|
|
27
|
-
"id": "
|
|
28
|
-
"name": "
|
|
29
|
-
"category": "
|
|
30
|
-
"description": "
|
|
31
|
-
"
|
|
28
|
+
"id": "memory",
|
|
29
|
+
"name": "Persistent Memory",
|
|
30
|
+
"category": "core",
|
|
31
|
+
"description": "Knowledge-graph-based persistent memory across sessions",
|
|
32
|
+
"status": "reference",
|
|
33
|
+
"repo_url": "https://github.com/modelcontextprotocol/servers/tree/main/src/memory",
|
|
34
|
+
"runtime": "npx",
|
|
35
|
+
"install_command": ["npx", "-y", "@modelcontextprotocol/server-memory"],
|
|
36
|
+
"auth": { "method": "none" },
|
|
32
37
|
"useful_for_personas": ["grad-student", "early-career-ic", "solo-researcher", "founder", "operator"],
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
"
|
|
38
|
+
"install_hint": "Useful as a runtime backing for LifeOS's brain index until the project ships its own memory layer.",
|
|
39
|
+
"last_verified": "2026-05-01"
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"id": "fetch",
|
|
43
|
+
"name": "Web Fetch",
|
|
44
|
+
"category": "core",
|
|
45
|
+
"description": "Fetch web content, convert to markdown for LLM consumption",
|
|
46
|
+
"status": "reference",
|
|
47
|
+
"repo_url": "https://github.com/modelcontextprotocol/servers/tree/main/src/fetch",
|
|
48
|
+
"runtime": "uvx",
|
|
49
|
+
"install_command": ["uvx", "mcp-server-fetch"],
|
|
50
|
+
"auth": { "method": "none" },
|
|
51
|
+
"useful_for_personas": ["grad-student", "early-career-ic", "solo-researcher", "founder", "operator"],
|
|
52
|
+
"install_hint": "Lightweight web-fetch reference server. Runs via uvx (Python).",
|
|
53
|
+
"last_verified": "2026-05-01"
|
|
38
54
|
},
|
|
39
55
|
{
|
|
40
56
|
"id": "gmail",
|
|
41
57
|
"name": "Gmail",
|
|
42
58
|
"category": "communication",
|
|
43
|
-
"description": "
|
|
44
|
-
"
|
|
59
|
+
"description": "Send/read/draft emails, labels, attachments, batch operations (14+ tools)",
|
|
60
|
+
"status": "community",
|
|
61
|
+
"repo_url": "https://github.com/devdattatalele/gmail-mcp-server",
|
|
62
|
+
"runtime": "npx",
|
|
63
|
+
"install_command": ["npx", "-y", "@devdattatalele/gmail-mcp-server"],
|
|
64
|
+
"auth": {
|
|
65
|
+
"method": "oauth",
|
|
66
|
+
"help_url": "https://console.cloud.google.com/apis/credentials",
|
|
67
|
+
"scope_hint": "Enable Gmail API in Google Cloud Console; create OAuth desktop credentials; place gcp-oauth.keys.json in project dir; run `node dist/index.js auth` once. Add yourself as a test user in OAuth consent screen to avoid 'Error 403: Access blocked'."
|
|
68
|
+
},
|
|
45
69
|
"useful_for_personas": ["grad-student", "early-career-ic", "solo-researcher", "founder", "operator"],
|
|
46
|
-
"
|
|
70
|
+
"install_hint": "Replaces archived GongRzhe/Gmail-MCP-Server. 14+ tools: send/draft/search/delete/reply/labels/filters/attachments/batch. LifeOS persona templates default to draft-only mode (config_overrides.send_permission: false) — you must explicitly elevate to enable sending.",
|
|
71
|
+
"last_verified": "2026-05-01"
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"id": "google_drive",
|
|
75
|
+
"name": "Google Workspace (Drive + Docs + Sheets + Slides + Calendar)",
|
|
76
|
+
"category": "productivity",
|
|
77
|
+
"description": "Unified MCP for Google Drive, Docs, Sheets, Slides, and Calendar in one auth",
|
|
47
78
|
"status": "community",
|
|
48
|
-
"repo_url":
|
|
49
|
-
"
|
|
50
|
-
"
|
|
79
|
+
"repo_url": "https://github.com/piotr-agier/google-drive-mcp",
|
|
80
|
+
"runtime": "npx",
|
|
81
|
+
"install_command": ["npx", "-y", "@piotr-agier/google-drive-mcp"],
|
|
82
|
+
"auth": {
|
|
83
|
+
"method": "oauth",
|
|
84
|
+
"help_url": "https://console.cloud.google.com/apis/credentials",
|
|
85
|
+
"env_var": "GOOGLE_DRIVE_OAUTH_CREDENTIALS",
|
|
86
|
+
"scope_hint": "Enable 5 APIs in Google Cloud (Drive, Docs, Sheets, Slides, Calendar); create OAuth Desktop app credentials; place gcp-oauth.keys.json at ~/.config/google-drive-mcp/. Single OAuth file covers all 5 services."
|
|
87
|
+
},
|
|
88
|
+
"useful_for_personas": ["grad-student", "early-career-ic", "solo-researcher", "founder", "operator"],
|
|
89
|
+
"install_hint": "Active community alternative to the archived modelcontextprotocol/servers-archived/gdrive. v2.2.0 (April 2026). Bundle replaces separately installing google_drive + google_calendar entries — pick this if you use Google Workspace broadly.",
|
|
90
|
+
"last_verified": "2026-05-01"
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"id": "google_calendar",
|
|
94
|
+
"name": "Google Calendar (standalone)",
|
|
95
|
+
"category": "productivity",
|
|
96
|
+
"description": "Calendar-only MCP for users who don't want the full Google Workspace bundle",
|
|
97
|
+
"status": "community",
|
|
98
|
+
"repo_url": "https://github.com/rsc1102/Google_Calendar_MCP",
|
|
99
|
+
"runtime": "manual",
|
|
100
|
+
"install_command": null,
|
|
101
|
+
"auth": {
|
|
102
|
+
"method": "oauth",
|
|
103
|
+
"help_url": "https://console.cloud.google.com/apis/credentials",
|
|
104
|
+
"scope_hint": "Standard Google Cloud OAuth desktop-app setup, scoped to Calendar API only."
|
|
105
|
+
},
|
|
106
|
+
"useful_for_personas": ["grad-student", "early-career-ic", "solo-researcher", "founder", "operator"],
|
|
107
|
+
"install_hint": "Standalone Calendar MCP — useful if you don't want the broader Google Workspace bundle. Clone and follow repo README; no single npx command. Most users should prefer the bundled `google_drive` entry above.",
|
|
108
|
+
"last_verified": "2026-05-01"
|
|
51
109
|
},
|
|
52
110
|
{
|
|
53
111
|
"id": "github",
|
|
54
|
-
"name": "GitHub",
|
|
112
|
+
"name": "GitHub (official)",
|
|
55
113
|
"category": "engineering",
|
|
56
|
-
"description": "
|
|
57
|
-
"
|
|
114
|
+
"description": "Read repos, manage issues/PRs, analyze code (vendor-official)",
|
|
115
|
+
"status": "vendor-published",
|
|
116
|
+
"repo_url": "https://github.com/github/github-mcp-server",
|
|
117
|
+
"runtime": "docker",
|
|
118
|
+
"install_command": ["docker", "run", "-i", "--rm", "-e", "GITHUB_PERSONAL_ACCESS_TOKEN", "ghcr.io/github/github-mcp-server"],
|
|
119
|
+
"auth": {
|
|
120
|
+
"method": "api_key",
|
|
121
|
+
"env_var": "GITHUB_PERSONAL_ACCESS_TOKEN",
|
|
122
|
+
"help_url": "https://github.com/settings/tokens",
|
|
123
|
+
"scope_hint": "Create a fine-grained Personal Access Token. Minimum scopes: `repo` for read; add `workflow` for Actions; never use an org-wide admin token."
|
|
124
|
+
},
|
|
58
125
|
"useful_for_personas": ["grad-student", "early-career-ic", "solo-researcher", "founder"],
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
"repo_url": "https://github.com/modelcontextprotocol/servers-archived",
|
|
62
|
-
"install_hint": "Reference server moved to the archived repo. Community successors exist; check Smithery. For write operations on repos you care about, use a fine-scoped Personal Access Token (read-only or repo-specific) — never an org-wide admin token.",
|
|
63
|
-
"last_verified": "2026-04-30"
|
|
64
|
-
},
|
|
65
|
-
{
|
|
66
|
-
"id": "linkedin",
|
|
67
|
-
"name": "LinkedIn",
|
|
68
|
-
"category": "networking",
|
|
69
|
-
"description": "Search people, read profiles, draft connection messages",
|
|
70
|
-
"common_apps": ["LinkedIn"],
|
|
71
|
-
"useful_for_personas": ["grad-student", "early-career-ic", "solo-researcher", "operator"],
|
|
72
|
-
"auth": { "method": "api_key" },
|
|
73
|
-
"status": "community",
|
|
74
|
-
"repo_url": "https://github.com/adhikasp/mcp-linkedin",
|
|
75
|
-
"install_hint": "Community implementations only; no official LinkedIn MCP. Multiple options exist (also see https://github.com/rugvedp/linkedin-mcp and https://github.com/administrativetrick/linkedin-mcp — different feature surfaces). Most require third-party API access (e.g., HorizonDataWave or unofficial scraping). Reputational risk: automated outreach can damage your account standing — LifeOS persona templates wire this for read + draft only by default.",
|
|
76
|
-
"last_verified": "2026-04-30"
|
|
126
|
+
"install_hint": "Replaces archived modelcontextprotocol/server-github. Vendor-published, actively maintained (v1.0.3 April 2026, 813+ commits). Also available as a remote MCP at https://api.githubcopilot.com/mcp/ for VS Code 1.101+ via OAuth — see repo README. Requires Docker locally; for npx-only setups, check Smithery for community wrappers.",
|
|
127
|
+
"last_verified": "2026-05-01"
|
|
77
128
|
},
|
|
78
129
|
{
|
|
79
130
|
"id": "slack",
|
|
80
131
|
"name": "Slack",
|
|
81
132
|
"category": "communication",
|
|
82
|
-
"description": "Send/read messages, search channels,
|
|
83
|
-
"
|
|
133
|
+
"description": "Send/read messages, search channels, DMs, group DMs, GovSlack, Apps support",
|
|
134
|
+
"status": "community",
|
|
135
|
+
"repo_url": "https://github.com/korotovsky/slack-mcp-server",
|
|
136
|
+
"runtime": "npx",
|
|
137
|
+
"install_command": ["npx", "-y", "slack-mcp-server"],
|
|
138
|
+
"auth": {
|
|
139
|
+
"method": "api_key",
|
|
140
|
+
"env_var": "SLACK_MCP_XOXC_TOKEN",
|
|
141
|
+
"help_url": "https://github.com/korotovsky/slack-mcp-server#authentication",
|
|
142
|
+
"scope_hint": "Uses session/cookie auth (xoxc + xoxd tokens) — no permission requirements / no Slack admin approval needed. See repo README for browser-extraction steps."
|
|
143
|
+
},
|
|
84
144
|
"useful_for_personas": ["early-career-ic", "founder", "operator"],
|
|
85
|
-
"
|
|
86
|
-
"
|
|
87
|
-
"repo_url": "https://github.com/modelcontextprotocol/servers-archived",
|
|
88
|
-
"install_hint": "Reference server moved to the archived repo. Community alternatives on Smithery. Workspace admins typically need to approve OAuth apps — coordinate before installing in a managed workspace.",
|
|
89
|
-
"last_verified": "2026-04-30"
|
|
145
|
+
"install_hint": "Replaces archived modelcontextprotocol/server-slack. Most popular community Slack MCP (~30k monthly visitors, 9k active users). Bypasses the usual Slack-app-approval requirement via cookie-based auth.",
|
|
146
|
+
"last_verified": "2026-05-01"
|
|
90
147
|
},
|
|
91
148
|
{
|
|
92
|
-
"id": "
|
|
93
|
-
"name": "
|
|
94
|
-
"category": "
|
|
95
|
-
"description": "
|
|
96
|
-
"
|
|
97
|
-
"
|
|
98
|
-
"
|
|
99
|
-
"
|
|
100
|
-
"
|
|
101
|
-
|
|
102
|
-
|
|
149
|
+
"id": "discord",
|
|
150
|
+
"name": "Discord",
|
|
151
|
+
"category": "communication",
|
|
152
|
+
"description": "Send/read messages, manage channels, server admin (50+ tools)",
|
|
153
|
+
"status": "community",
|
|
154
|
+
"repo_url": "https://github.com/barryyip0625/mcp-discord",
|
|
155
|
+
"runtime": "manual",
|
|
156
|
+
"install_command": null,
|
|
157
|
+
"auth": {
|
|
158
|
+
"method": "api_key",
|
|
159
|
+
"env_var": "DISCORD_TOKEN",
|
|
160
|
+
"help_url": "https://discord.com/developers/applications",
|
|
161
|
+
"scope_hint": "Create a Discord bot at the developer portal; copy the bot token; invite it to your servers with appropriate permissions."
|
|
162
|
+
},
|
|
163
|
+
"useful_for_personas": ["grad-student", "early-career-ic", "solo-researcher", "founder", "operator"],
|
|
164
|
+
"install_hint": "Useful for grad-student class servers + early-career community workspaces. Clone repo, npm install, npm run build. Stdio + streamable HTTP transports.",
|
|
165
|
+
"last_verified": "2026-05-01"
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
"id": "linkedin",
|
|
169
|
+
"name": "LinkedIn (unofficial — use at your own risk)",
|
|
170
|
+
"category": "networking",
|
|
171
|
+
"description": "Search people, read profiles, post, send messages via unofficial API",
|
|
172
|
+
"status": "use-at-your-own-risk",
|
|
173
|
+
"repo_url": "https://github.com/adhikasp/mcp-linkedin",
|
|
174
|
+
"runtime": "uvx",
|
|
175
|
+
"install_command": ["uvx", "--from", "git+https://github.com/adhikasp/mcp-linkedin", "mcp-linkedin"],
|
|
176
|
+
"auth": {
|
|
177
|
+
"method": "api_key",
|
|
178
|
+
"scope_hint": "Set LINKEDIN_EMAIL + LINKEDIN_PASSWORD env vars. The MCP impersonates your account via unofficial linkedin-api Python lib."
|
|
179
|
+
},
|
|
180
|
+
"risk_advisory": "⚠ This MCP uses the unofficial linkedin-api Python library (login with email/password, no LinkedIn-issued API key). LinkedIn's Terms of Service prohibit this — using it can result in your LinkedIn account being suspended or permanently banned. There is no LifeOS-controlled mitigation; the risk is inherent to the unofficial-API approach. Use only with a throwaway/secondary account, or accept the risk on your primary account at your own discretion.",
|
|
181
|
+
"useful_for_personas": ["grad-student", "early-career-ic", "solo-researcher", "operator"],
|
|
182
|
+
"install_hint": "There is currently no official LinkedIn API for individual developers; this MCP is the best community option but carries real account-ban risk. LifeOS persona templates wire this for read + draft only by default. If LinkedIn ships an official API later, we'll switch to it.",
|
|
183
|
+
"last_verified": "2026-05-01"
|
|
103
184
|
},
|
|
104
185
|
{
|
|
105
186
|
"id": "notion",
|
|
106
187
|
"name": "Notion",
|
|
107
188
|
"category": "productivity",
|
|
108
189
|
"description": "Read/create pages, query databases, manage workspaces",
|
|
109
|
-
"common_apps": ["Notion"],
|
|
110
|
-
"useful_for_personas": ["grad-student", "early-career-ic", "solo-researcher", "founder", "operator"],
|
|
111
|
-
"auth": { "method": "api_key" },
|
|
112
190
|
"status": "vendor-published",
|
|
113
191
|
"repo_url": "https://github.com/makenotion/notion-mcp-server",
|
|
114
|
-
"
|
|
115
|
-
"
|
|
192
|
+
"runtime": "npx",
|
|
193
|
+
"install_command": ["npx", "-y", "@notionhq/notion-mcp-server"],
|
|
194
|
+
"auth": {
|
|
195
|
+
"method": "api_key",
|
|
196
|
+
"env_var": "NOTION_TOKEN",
|
|
197
|
+
"help_url": "https://www.notion.so/profile/integrations",
|
|
198
|
+
"scope_hint": "Create an internal integration at the link, copy the secret (formatted ntn_****), share specific Notion pages with the integration. Note: Notion is migrating to a hosted MCP (https://developers.notion.com/guides/mcp/overview) and may sunset this local server — verify before pinning long-term."
|
|
199
|
+
},
|
|
200
|
+
"useful_for_personas": ["grad-student", "early-career-ic", "solo-researcher", "founder", "operator"],
|
|
201
|
+
"install_hint": "Notion-published. Will eventually be deprecated for the hosted MCP — track release notes.",
|
|
202
|
+
"last_verified": "2026-05-01"
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
"id": "canvas",
|
|
206
|
+
"name": "Canvas LMS",
|
|
207
|
+
"category": "education",
|
|
208
|
+
"description": "Manage courses, assignments, grades, modules, announcements (88+ tools, FERPA-compliant)",
|
|
209
|
+
"status": "community",
|
|
210
|
+
"repo_url": "https://github.com/vishalsachdev/canvas-mcp",
|
|
211
|
+
"runtime": "git+pip",
|
|
212
|
+
"install_command": null,
|
|
213
|
+
"auth": {
|
|
214
|
+
"method": "api_key",
|
|
215
|
+
"env_var": "CANVAS_API_TOKEN",
|
|
216
|
+
"help_url": "https://canvas.instructure.com/profile/settings",
|
|
217
|
+
"scope_hint": "In Canvas: Account → Settings → New Access Token. Some institutions restrict student token creation — contact IT if blocked. Also set CANVAS_API_URL to your institution's API base (e.g., `https://canvas.calpoly.edu/api/v1`)."
|
|
218
|
+
},
|
|
219
|
+
"useful_for_personas": ["grad-student"],
|
|
220
|
+
"install_hint": "Most polished Canvas MCP (88 tools, FERPA-compliant data anonymization, role-based filtering via CANVAS_ROLE env var: student/educator/admin). Install: clone repo → python3 -m venv .venv → pip install -e . → run via the provided launch script. v1.2.0 April 2026. Hosted option also available at mcp.illinihunt.org for users who skip local install (privacy-sensitive use should still install locally).",
|
|
221
|
+
"last_verified": "2026-05-01"
|
|
222
|
+
},
|
|
223
|
+
{
|
|
224
|
+
"id": "arxiv",
|
|
225
|
+
"name": "arXiv research papers",
|
|
226
|
+
"category": "research",
|
|
227
|
+
"description": "Search arXiv, retrieve papers, analyze abstracts, citation insights",
|
|
228
|
+
"status": "community",
|
|
229
|
+
"repo_url": "https://github.com/blazickjp/arxiv-mcp-server",
|
|
230
|
+
"runtime": "uvx",
|
|
231
|
+
"install_command": ["uvx", "arxiv-mcp-server"],
|
|
232
|
+
"auth": { "method": "none" },
|
|
233
|
+
"useful_for_personas": ["grad-student", "solo-researcher"],
|
|
234
|
+
"install_hint": "No auth needed — uses arXiv's open API. The blazickjp version offers a .mcpb bundle for one-click Claude Desktop install. Alternative: paper-search-mcp (openags) covers arXiv + PubMed + bioRxiv.",
|
|
235
|
+
"last_verified": "2026-05-01"
|
|
116
236
|
},
|
|
117
237
|
{
|
|
118
238
|
"id": "zotero",
|
|
119
239
|
"name": "Zotero",
|
|
120
240
|
"category": "research",
|
|
121
241
|
"description": "Search citations, read references, manage reading library",
|
|
122
|
-
"common_apps": ["Zotero"],
|
|
123
|
-
"useful_for_personas": ["grad-student", "solo-researcher"],
|
|
124
|
-
"auth": { "method": "api_key" },
|
|
125
242
|
"status": "beta-unverified",
|
|
126
243
|
"repo_url": null,
|
|
127
|
-
"
|
|
128
|
-
"
|
|
244
|
+
"runtime": "manual",
|
|
245
|
+
"install_command": null,
|
|
246
|
+
"auth": {
|
|
247
|
+
"method": "api_key",
|
|
248
|
+
"help_url": "https://www.zotero.org/settings/keys"
|
|
249
|
+
},
|
|
250
|
+
"useful_for_personas": ["grad-student", "solo-researcher"],
|
|
251
|
+
"install_hint": "Community Zotero MCPs may exist on Smithery (https://smithery.ai/?q=zotero). We have not verified a canonical pick. Note: many professional-track grad students don't use Zotero — consider whether you need this before wiring.",
|
|
252
|
+
"last_verified": "2026-05-01"
|
|
129
253
|
},
|
|
130
254
|
{
|
|
131
255
|
"id": "obsidian",
|
|
132
256
|
"name": "Obsidian",
|
|
133
257
|
"category": "knowledge_mgmt",
|
|
134
258
|
"description": "Read/write notes in an Obsidian vault, search by tag/title",
|
|
135
|
-
"common_apps": ["Obsidian"],
|
|
136
|
-
"useful_for_personas": ["grad-student", "solo-researcher"],
|
|
137
|
-
"auth": { "method": "none" },
|
|
138
259
|
"status": "beta-unverified",
|
|
139
260
|
"repo_url": null,
|
|
140
|
-
"
|
|
141
|
-
"
|
|
142
|
-
},
|
|
143
|
-
{
|
|
144
|
-
"id": "filesystem",
|
|
145
|
-
"name": "Local Filesystem",
|
|
146
|
-
"category": "core",
|
|
147
|
-
"description": "Read/write local files within an allowed directory tree",
|
|
148
|
-
"common_apps": ["any local files"],
|
|
149
|
-
"useful_for_personas": ["grad-student", "early-career-ic", "solo-researcher", "founder", "operator"],
|
|
261
|
+
"runtime": "manual",
|
|
262
|
+
"install_command": null,
|
|
150
263
|
"auth": { "method": "none" },
|
|
151
|
-
"
|
|
152
|
-
"
|
|
153
|
-
"
|
|
154
|
-
"last_verified": "2026-04-30"
|
|
264
|
+
"useful_for_personas": ["grad-student", "solo-researcher"],
|
|
265
|
+
"install_hint": "Community Obsidian MCPs likely exist on Smithery (https://smithery.ai/?q=obsidian). We have not verified a canonical pick. Most Obsidian MCPs operate on a local vault path — no auth needed.",
|
|
266
|
+
"last_verified": "2026-05-01"
|
|
155
267
|
},
|
|
156
268
|
{
|
|
157
|
-
"id": "
|
|
158
|
-
"name": "
|
|
159
|
-
"category": "
|
|
160
|
-
"description": "
|
|
161
|
-
"
|
|
162
|
-
"
|
|
269
|
+
"id": "apple_notes",
|
|
270
|
+
"name": "Apple Notes + Reminders (macOS only)",
|
|
271
|
+
"category": "knowledge_mgmt",
|
|
272
|
+
"description": "Read/write Apple Notes + Reminders via AppleScript",
|
|
273
|
+
"status": "community",
|
|
274
|
+
"repo_url": "https://github.com/karlhepler/apple-mcp",
|
|
275
|
+
"runtime": "manual",
|
|
276
|
+
"install_command": null,
|
|
163
277
|
"auth": { "method": "none" },
|
|
164
|
-
"
|
|
165
|
-
"
|
|
166
|
-
"
|
|
167
|
-
"last_verified": "2026-04-30"
|
|
278
|
+
"useful_for_personas": ["grad-student", "early-career-ic", "solo-researcher", "operator"],
|
|
279
|
+
"install_hint": "macOS only. No auth required (uses native AppleScript for Notes/Reminders access — macOS will prompt for permission on first use). Clone repo + npm install + npm run build. Alternative: griches/apple-mcp (broader Apple-app coverage), mattt/iMCP (full macOS app with UI for Messages/Contacts/Calendar/Reminders).",
|
|
280
|
+
"last_verified": "2026-05-01"
|
|
168
281
|
},
|
|
169
282
|
{
|
|
170
|
-
"id": "
|
|
171
|
-
"name": "
|
|
283
|
+
"id": "playwright",
|
|
284
|
+
"name": "Playwright (browser automation)",
|
|
172
285
|
"category": "automation",
|
|
173
|
-
"description": "Browser automation
|
|
174
|
-
"
|
|
175
|
-
"
|
|
286
|
+
"description": "Browser automation via Playwright — accessibility-snapshot driven (replaces Puppeteer)",
|
|
287
|
+
"status": "vendor-published",
|
|
288
|
+
"repo_url": "https://github.com/microsoft/playwright-mcp",
|
|
289
|
+
"runtime": "npx",
|
|
290
|
+
"install_command": ["npx", "-y", "@playwright/mcp"],
|
|
176
291
|
"auth": { "method": "none" },
|
|
177
|
-
"
|
|
178
|
-
"
|
|
179
|
-
"
|
|
180
|
-
"last_verified": "2026-04-30"
|
|
292
|
+
"useful_for_personas": ["early-career-ic", "solo-researcher", "founder"],
|
|
293
|
+
"install_hint": "Microsoft-published. Replaces the archived modelcontextprotocol/server-puppeteer. Uses structured accessibility snapshots (cheaper for LLMs than screenshots). Now bundled with GitHub Copilot's Coding Agent. Note: heavy install (Chromium binary) — only enable if you genuinely need browser automation.",
|
|
294
|
+
"last_verified": "2026-05-01"
|
|
181
295
|
},
|
|
182
296
|
{
|
|
183
|
-
"id": "
|
|
184
|
-
"name": "
|
|
185
|
-
"category": "
|
|
186
|
-
"description": "
|
|
187
|
-
"common_apps": ["X (Twitter)"],
|
|
188
|
-
"useful_for_personas": ["solo-researcher", "founder"],
|
|
189
|
-
"auth": { "method": "api_key" },
|
|
297
|
+
"id": "linear",
|
|
298
|
+
"name": "Linear",
|
|
299
|
+
"category": "project_mgmt",
|
|
300
|
+
"description": "List/create/update issues, query projects, view sprint state",
|
|
190
301
|
"status": "beta-unverified",
|
|
191
302
|
"repo_url": null,
|
|
192
|
-
"
|
|
193
|
-
"
|
|
303
|
+
"runtime": "manual",
|
|
304
|
+
"install_command": null,
|
|
305
|
+
"auth": {
|
|
306
|
+
"method": "api_key",
|
|
307
|
+
"help_url": "https://linear.app/settings/api"
|
|
308
|
+
},
|
|
309
|
+
"useful_for_personas": ["early-career-ic", "founder"],
|
|
310
|
+
"install_hint": "Linear is mentioned as a Notion partner integration, suggesting a vendor-blessed MCP exists. We have not directly verified the canonical install path. Search Smithery (https://smithery.ai/?q=linear) and Linear's developer docs (https://linear.app/developers).",
|
|
311
|
+
"last_verified": "2026-05-01"
|
|
194
312
|
},
|
|
195
313
|
{
|
|
196
314
|
"id": "stripe",
|
|
197
315
|
"name": "Stripe",
|
|
198
316
|
"category": "finance",
|
|
199
|
-
"description": "Query customers, payments, subscriptions",
|
|
200
|
-
"common_apps": ["Stripe"],
|
|
201
|
-
"useful_for_personas": ["founder", "solo-researcher"],
|
|
202
|
-
"auth": { "method": "api_key" },
|
|
317
|
+
"description": "Query customers, payments, subscriptions, invoices",
|
|
203
318
|
"status": "vendor-published",
|
|
204
319
|
"repo_url": "https://github.com/stripe/ai",
|
|
205
|
-
"
|
|
206
|
-
"
|
|
320
|
+
"runtime": "npx",
|
|
321
|
+
"install_command": ["npx", "-y", "@stripe/mcp", "--api-key=YOUR_STRIPE_RESTRICTED_KEY"],
|
|
322
|
+
"auth": {
|
|
323
|
+
"method": "api_key",
|
|
324
|
+
"help_url": "https://dashboard.stripe.com/apikeys",
|
|
325
|
+
"scope_hint": "Use a Restricted API Key (RAK) with minimum scopes — never the full secret key. Tool permissions are controlled by the RAK's scope at creation time."
|
|
326
|
+
},
|
|
327
|
+
"useful_for_personas": ["founder", "solo-researcher"],
|
|
328
|
+
"install_hint": "Stripe-published. Also offers a remote hosted MCP at https://mcp.stripe.com (OAuth-based, see https://docs.stripe.com/mcp).",
|
|
329
|
+
"last_verified": "2026-05-01"
|
|
330
|
+
},
|
|
331
|
+
{
|
|
332
|
+
"id": "twitter_x",
|
|
333
|
+
"name": "Twitter / X",
|
|
334
|
+
"category": "distribution",
|
|
335
|
+
"description": "Read tweets, draft tweets, search timelines",
|
|
336
|
+
"status": "beta-unverified",
|
|
337
|
+
"repo_url": null,
|
|
338
|
+
"runtime": "manual",
|
|
339
|
+
"install_command": null,
|
|
340
|
+
"auth": { "method": "api_key" },
|
|
341
|
+
"useful_for_personas": ["solo-researcher", "founder"],
|
|
342
|
+
"install_hint": "Community MCPs exist; verify on Smithery (https://smithery.ai/?q=twitter). X API access is paid as of 2026 — confirm pricing tier before wiring. Reputational risk: post-capable MCPs can damage your account; LifeOS persona templates wire read-only by default.",
|
|
343
|
+
"last_verified": "2026-05-01"
|
|
344
|
+
},
|
|
345
|
+
{
|
|
346
|
+
"id": "reddit",
|
|
347
|
+
"name": "Reddit",
|
|
348
|
+
"category": "community",
|
|
349
|
+
"description": "Search posts, browse subreddits, scrape user activity (zero-config, public API)",
|
|
350
|
+
"status": "community",
|
|
351
|
+
"repo_url": "https://github.com/eliasbiondo/reddit-mcp-server",
|
|
352
|
+
"runtime": "npx",
|
|
353
|
+
"install_command": ["npx", "-y", "reddit-mcp-server"],
|
|
354
|
+
"auth": { "method": "none" },
|
|
355
|
+
"useful_for_personas": ["grad-student", "early-career-ic", "solo-researcher", "founder"],
|
|
356
|
+
"install_hint": "Zero-config — no API keys, no auth setup. Uses Reddit's public API for read-only operations. Useful for research, market discovery, finding subreddit communities. Alternatives: adhikasp/mcp-reddit (analysis-focused), Hawstein/mcp-server-reddit.",
|
|
357
|
+
"last_verified": "2026-05-01"
|
|
358
|
+
},
|
|
359
|
+
{
|
|
360
|
+
"id": "spotify",
|
|
361
|
+
"name": "Spotify",
|
|
362
|
+
"category": "lifestyle",
|
|
363
|
+
"description": "Control playback, manage playlists, query listening history",
|
|
364
|
+
"status": "community",
|
|
365
|
+
"repo_url": "https://github.com/thebigredgeek/spotify-mcp-server",
|
|
366
|
+
"runtime": "npx",
|
|
367
|
+
"install_command": ["npx", "-y", "@tbrgeek/spotify-mcp-server"],
|
|
368
|
+
"auth": {
|
|
369
|
+
"method": "oauth",
|
|
370
|
+
"help_url": "https://developer.spotify.com/dashboard",
|
|
371
|
+
"scope_hint": "Create a Spotify developer app, get client ID + secret, complete one-time OAuth (the MCP handles automatic token refresh after that)."
|
|
372
|
+
},
|
|
373
|
+
"useful_for_personas": ["grad-student", "early-career-ic", "solo-researcher"],
|
|
374
|
+
"install_hint": "Production-ready Spotify MCP with bulletproof token handling. Useful for personal-projects quadrant or as a 'study music' integration. Alternative: marcelmarais/spotify-mcp-server (lightweight, clone+build).",
|
|
375
|
+
"last_verified": "2026-05-01"
|
|
207
376
|
}
|
|
208
377
|
]
|
|
209
378
|
}
|