claude-mpm 5.7.7 → 5.8.16
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 +70 -2
- package/npm-bin/claude-mpm.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -36,9 +36,14 @@ Claude MPM transforms Claude Code into a **comprehensive AI development platform
|
|
|
36
36
|
- **44+ Bundled Skills** - TDD, debugging, Docker, API design, security scanning, Git workflows
|
|
37
37
|
- **Progressive Disclosure** - Skills load on-demand to optimize context usage
|
|
38
38
|
- **Three-Tier Organization** - Bundled → User → Project priority resolution
|
|
39
|
+
- **Domain Authority System** - Auto-generated agent/tool discovery skills for intelligent PM delegation
|
|
40
|
+
- **Skills Optimization** - Intelligent project analysis with automated skill recommendations
|
|
39
41
|
|
|
40
42
|
### 🔌 MCP Integration (Model Context Protocol)
|
|
41
43
|
- **Google Workspace MCP** - 34 tools for Gmail, Calendar, Drive, Docs, Tasks
|
|
44
|
+
- **Notion** - 7 tools + bulk operations for databases, pages, markdown import
|
|
45
|
+
- **Confluence** - 7 tools + bulk operations for pages, spaces, CQL search
|
|
46
|
+
- **Slack** - User proxy for channels, messages, DMs, search
|
|
42
47
|
- **Semantic Code Search** - AI-powered code discovery via mcp-vector-search
|
|
43
48
|
- **Ticket Management** - GitHub, Linear, Jira integration via mcp-ticketer
|
|
44
49
|
- **Graph Memory** - Persistent project knowledge via kuzu-memory
|
|
@@ -208,7 +213,7 @@ uv tool install mcp-browser --python 3.13
|
|
|
208
213
|
|
|
209
214
|
[→ Learn more: MCP Gateway](docs/developer/13-mcp-gateway/README.md) | [→ MCP Session Server](docs/mcp-session-server.md)
|
|
210
215
|
|
|
211
|
-
### 🔐
|
|
216
|
+
### 🔐 External Integrations
|
|
212
217
|
- **Browser-Based OAuth** for secure authentication with MCP services
|
|
213
218
|
- **Google Workspace MCP** built-in server with **34 tools** for:
|
|
214
219
|
- **Gmail** (5 tools): Search, read, send, draft, reply
|
|
@@ -216,6 +221,15 @@ uv tool install mcp-browser --python 3.13
|
|
|
216
221
|
- **Drive** (7 tools): Search, read, create folders, upload, delete, move files
|
|
217
222
|
- **Docs** (4 tools): Create, read, append, markdown-to-doc conversion
|
|
218
223
|
- **Tasks** (12 tools): Full task and task list management
|
|
224
|
+
- **Notion MCP** built-in server with **7 tools** + bulk operations:
|
|
225
|
+
- Query databases, get/create/update pages, search, markdown import
|
|
226
|
+
- Setup: `claude-mpm setup notion`
|
|
227
|
+
- **Confluence MCP** built-in server with **7 tools** + bulk operations:
|
|
228
|
+
- Get/create/update pages, search with CQL, list spaces, markdown import
|
|
229
|
+
- Setup: `claude-mpm setup confluence`
|
|
230
|
+
- **Slack MCP** user proxy with **12 tools**:
|
|
231
|
+
- Channels, messages, DMs, search - acts as authenticated user
|
|
232
|
+
- Setup: `claude-mpm setup slack`
|
|
219
233
|
- **Encrypted Token Storage** using Fernet encryption with system keychain
|
|
220
234
|
- **Automatic Token Refresh** handles expiration seamlessly
|
|
221
235
|
|
|
@@ -223,6 +237,15 @@ uv tool install mcp-browser --python 3.13
|
|
|
223
237
|
# Set up Google Workspace OAuth
|
|
224
238
|
claude-mpm oauth setup workspace-mcp
|
|
225
239
|
|
|
240
|
+
# Set up Notion (API token)
|
|
241
|
+
claude-mpm setup notion
|
|
242
|
+
|
|
243
|
+
# Set up Confluence (URL + API token)
|
|
244
|
+
claude-mpm setup confluence
|
|
245
|
+
|
|
246
|
+
# Set up Slack (OAuth user token)
|
|
247
|
+
claude-mpm setup slack
|
|
248
|
+
|
|
226
249
|
# Check token status
|
|
227
250
|
claude-mpm oauth status workspace-mcp
|
|
228
251
|
|
|
@@ -230,7 +253,7 @@ claude-mpm oauth status workspace-mcp
|
|
|
230
253
|
claude-mpm oauth list
|
|
231
254
|
```
|
|
232
255
|
|
|
233
|
-
[→
|
|
256
|
+
[→ Google Workspace Setup](docs/guides/oauth-setup.md) | [→ Notion Setup](docs/integrations/NOTION_SETUP.md) | [→ Confluence Setup](docs/integrations/CONFLUENCE_SETUP.md) | [→ Slack Setup](docs/integrations/SLACK_USER_PROXY_SETUP.md)
|
|
234
257
|
|
|
235
258
|
### ⚡ Performance & Security
|
|
236
259
|
- **Simplified Architecture** with ~3,700 lines removed for better performance
|
|
@@ -340,6 +363,51 @@ claude-mpm agent-source add https://github.com/yourorg/your-agents --test
|
|
|
340
363
|
|
|
341
364
|
---
|
|
342
365
|
|
|
366
|
+
## Integrations
|
|
367
|
+
|
|
368
|
+
Claude MPM supports multiple integrations for enhanced functionality. See **[Complete Integration Documentation](docs/integrations/README.md)** for detailed setup guides.
|
|
369
|
+
|
|
370
|
+
### Core Integrations
|
|
371
|
+
|
|
372
|
+
- **[kuzu-memory](docs/integrations/kuzu-memory.md)** - Graph-based semantic memory for project context
|
|
373
|
+
- **[mcp-vector-search](docs/integrations/mcp-vector-search.md)** - AI-powered semantic code search and discovery
|
|
374
|
+
|
|
375
|
+
### External Services
|
|
376
|
+
|
|
377
|
+
- **[Google Workspace MCP](docs/integrations/gworkspace-mcp.md)** - Gmail, Calendar, Drive, Docs, Tasks (67 tools)
|
|
378
|
+
- **[Slack](docs/integrations/slack.md)** - Slack workspace integration via user proxy
|
|
379
|
+
- **[Notion](docs/integrations/NOTION_SETUP.md)** - Notion databases and pages (7 MCP tools + bulk CLI)
|
|
380
|
+
- **[Confluence](docs/integrations/CONFLUENCE_SETUP.md)** - Confluence pages and spaces (7 MCP tools + bulk CLI)
|
|
381
|
+
|
|
382
|
+
### Quick Setup
|
|
383
|
+
|
|
384
|
+
```bash
|
|
385
|
+
# Setup any integration with one command
|
|
386
|
+
claude-mpm setup <integration>
|
|
387
|
+
|
|
388
|
+
# Examples:
|
|
389
|
+
claude-mpm setup kuzu-memory
|
|
390
|
+
claude-mpm setup mcp-vector-search
|
|
391
|
+
claude-mpm setup gworkspace-mcp # Canonical name (preferred)
|
|
392
|
+
claude-mpm setup google-workspace-mcp # Legacy alias (also works)
|
|
393
|
+
claude-mpm setup slack
|
|
394
|
+
claude-mpm setup notion
|
|
395
|
+
claude-mpm setup confluence
|
|
396
|
+
|
|
397
|
+
# Setup multiple at once
|
|
398
|
+
claude-mpm setup kuzu-memory mcp-vector-search gworkspace-mcp
|
|
399
|
+
```
|
|
400
|
+
|
|
401
|
+
**Integration Features:**
|
|
402
|
+
- One-command setup for all services
|
|
403
|
+
- Secure OAuth 2.0 authentication (Google Workspace, Slack)
|
|
404
|
+
- Encrypted token storage in system keychain
|
|
405
|
+
- Automatic token refresh
|
|
406
|
+
- MCP protocol for standardized tool interfaces
|
|
407
|
+
- Bulk CLI operations for high-performance batch processing
|
|
408
|
+
|
|
409
|
+
---
|
|
410
|
+
|
|
343
411
|
## Contributing
|
|
344
412
|
|
|
345
413
|
Contributions are welcome! Please see:
|
package/npm-bin/claude-mpm.js
CHANGED
package/package.json
CHANGED