claude-autopm 1.15.1 → 1.15.2
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
CHANGED
|
@@ -226,7 +226,7 @@ Essential Components:
|
|
|
226
226
|
✅ Git repository - Initialized
|
|
227
227
|
|
|
228
228
|
Optional Components:
|
|
229
|
-
✅ MCP servers - 2 active (context7
|
|
229
|
+
✅ MCP servers - 2 active (context7, github-mcp)
|
|
230
230
|
⚠️ Git hooks - Not installed (run: bash scripts/setup-hooks.sh)
|
|
231
231
|
✅ Node.js version - v20.10.0 (compatible)
|
|
232
232
|
|
|
@@ -382,10 +382,10 @@ autopm mcp agents
|
|
|
382
382
|
🤖 Agents Using MCP
|
|
383
383
|
|
|
384
384
|
✅ react-frontend-engineer
|
|
385
|
-
└─ context7
|
|
385
|
+
└─ context7
|
|
386
386
|
|
|
387
387
|
✅ python-backend-engineer
|
|
388
|
-
└─ context7
|
|
388
|
+
└─ context7
|
|
389
389
|
└─ sqlite-mcp
|
|
390
390
|
|
|
391
391
|
📊 Summary:
|
|
@@ -393,7 +393,7 @@ autopm mcp agents
|
|
|
393
393
|
Using MCP: 39 (74%)
|
|
394
394
|
|
|
395
395
|
# Enable MCP servers
|
|
396
|
-
autopm mcp enable context7
|
|
396
|
+
autopm mcp enable context7
|
|
397
397
|
autopm mcp enable github-mcp
|
|
398
398
|
|
|
399
399
|
# Configure API keys interactively
|
|
@@ -447,8 +447,8 @@ autopm mcp validate # Validate all servers
|
|
|
447
447
|
|
|
448
448
|
### MCP Server Types
|
|
449
449
|
|
|
450
|
-
- **Documentation** - `context7
|
|
451
|
-
- **Codebase** - `context7
|
|
450
|
+
- **Documentation** - `context7` for live framework documentation (React, Python, AWS, etc.)
|
|
451
|
+
- **Codebase** - `context7` for project analysis and navigation
|
|
452
452
|
- **GitHub** - `github-mcp` for repository operations
|
|
453
453
|
- **Databases** - `sqlite-mcp`, `postgresql-mcp`, `mongodb-mcp` for data operations
|
|
454
454
|
- **Browser** - `playwright-mcp` for E2E testing and automation
|
|
@@ -457,7 +457,7 @@ autopm mcp validate # Validate all servers
|
|
|
457
457
|
|
|
458
458
|
```bash
|
|
459
459
|
# 1. Enable context7 documentation server
|
|
460
|
-
autopm mcp enable context7
|
|
460
|
+
autopm mcp enable context7
|
|
461
461
|
|
|
462
462
|
# 2. Configure API key
|
|
463
463
|
cat > .claude/.env << EOF
|
|
@@ -472,7 +472,7 @@ autopm mcp sync
|
|
|
472
472
|
autopm mcp diagnose
|
|
473
473
|
|
|
474
474
|
# 5. Test connection
|
|
475
|
-
autopm mcp test context7
|
|
475
|
+
autopm mcp test context7
|
|
476
476
|
```
|
|
477
477
|
|
|
478
478
|
### MCP Benefits
|
|
@@ -2,27 +2,10 @@
|
|
|
2
2
|
"mcpServers": {
|
|
3
3
|
"context7": {
|
|
4
4
|
"command": "npx",
|
|
5
|
-
"args": ["@upstash/context7-mcp"],
|
|
5
|
+
"args": ["-y", "@upstash/context7-mcp"],
|
|
6
6
|
"env": {
|
|
7
|
-
"
|
|
8
|
-
|
|
9
|
-
"CONTEXT7_API_URL": "${CONTEXT7_API_URL:-https://context7.com/api/v1}",
|
|
10
|
-
"CONTEXT7_WORKSPACE": "${CONTEXT7_WORKSPACE:-}",
|
|
11
|
-
"CONTEXT7_MODE": "documentation"
|
|
12
|
-
},
|
|
13
|
-
"envFile": ".claude/.env"
|
|
14
|
-
},
|
|
15
|
-
"context7": {
|
|
16
|
-
"command": "npx",
|
|
17
|
-
"args": ["@upstash/context7-mcp"],
|
|
18
|
-
"env": {
|
|
19
|
-
"CONTEXT7_API_KEY": "${CONTEXT7_API_KEY:-}",
|
|
20
|
-
"CONTEXT7_MCP_URL": "${CONTEXT7_MCP_URL:-https://mcp.context7.com/mcp}",
|
|
21
|
-
"CONTEXT7_API_URL": "${CONTEXT7_API_URL:-https://context7.com/api/v1}",
|
|
22
|
-
"CONTEXT7_WORKSPACE": "${CONTEXT7_WORKSPACE:-}",
|
|
23
|
-
"CONTEXT7_MODE": "codebase"
|
|
24
|
-
},
|
|
25
|
-
"envFile": ".claude/.env"
|
|
7
|
+
"DEFAULT_MINIMUM_TOKENS": "${DEFAULT_MINIMUM_TOKENS:-10000}"
|
|
8
|
+
}
|
|
26
9
|
},
|
|
27
10
|
"playwright-mcp": {
|
|
28
11
|
"command": "npx",
|
|
@@ -11,13 +11,8 @@ This document provides guidance on MCP (Model Context Protocol) server managemen
|
|
|
11
11
|
Example MCP server configurations are available in `.claude/examples/mcp/`:
|
|
12
12
|
|
|
13
13
|
### context7
|
|
14
|
-
**Description**: Context7
|
|
15
|
-
**Use Cases**: API documentation, framework guides, technical references
|
|
16
|
-
**Example**: `.claude/examples/mcp/context7.md`
|
|
17
|
-
|
|
18
|
-
### context7
|
|
19
|
-
**Description**: Context7 codebase server for project code analysis
|
|
20
|
-
**Use Cases**: Code navigation, project analysis, dependency tracking
|
|
14
|
+
**Description**: Context7 MCP server - up-to-date documentation database for any library or framework
|
|
15
|
+
**Use Cases**: API documentation, framework guides, technical references, library lookups
|
|
21
16
|
**Example**: `.claude/examples/mcp/context7.md`
|
|
22
17
|
|
|
23
18
|
### playwright-mcp
|
package/bin/autopm.js
CHANGED
|
@@ -257,7 +257,7 @@ function main() {
|
|
|
257
257
|
🔌 MCP (Model Context Protocol) Management:
|
|
258
258
|
# List and manage MCP servers
|
|
259
259
|
autopm mcp list # List all available MCP servers
|
|
260
|
-
autopm mcp enable context7
|
|
260
|
+
autopm mcp enable context7 # Enable documentation server
|
|
261
261
|
autopm mcp sync # Sync configuration to .claude/mcp-servers.json
|
|
262
262
|
|
|
263
263
|
# Agent Analysis
|
|
@@ -269,7 +269,7 @@ function main() {
|
|
|
269
269
|
# Configuration & Diagnostics
|
|
270
270
|
autopm mcp setup # Interactive API key setup
|
|
271
271
|
autopm mcp diagnose # Run comprehensive diagnostics
|
|
272
|
-
autopm mcp test context7
|
|
272
|
+
autopm mcp test context7 # Test MCP server connection
|
|
273
273
|
autopm mcp status # Show all MCP servers status
|
|
274
274
|
|
|
275
275
|
🔑 Token Setup:
|
package/bin/commands/mcp.js
CHANGED
|
@@ -70,14 +70,14 @@ module.exports = {
|
|
|
70
70
|
.example('autopm mcp install @modelcontextprotocol/server-filesystem', 'Install MCP server from npm')
|
|
71
71
|
.example('autopm mcp install @upstash/context7-mcp --enable', 'Install and enable immediately')
|
|
72
72
|
.example('autopm mcp uninstall filesystem', 'Uninstall MCP server')
|
|
73
|
-
.example('autopm mcp enable context7
|
|
73
|
+
.example('autopm mcp enable context7', 'Enable context7 documentation server')
|
|
74
74
|
.example('autopm mcp agents', 'List all agents using MCP')
|
|
75
75
|
.example('autopm mcp agent react-frontend-engineer', 'Show MCP config for specific agent')
|
|
76
76
|
.example('autopm mcp usage', 'Show MCP usage statistics')
|
|
77
77
|
.example('autopm mcp setup', 'Interactive API key setup')
|
|
78
78
|
.example('autopm mcp check', 'Quick MCP configuration check')
|
|
79
79
|
.example('autopm mcp diagnose', 'Run MCP diagnostics')
|
|
80
|
-
.example('autopm mcp test context7
|
|
80
|
+
.example('autopm mcp test context7', 'Test MCP server connection')
|
|
81
81
|
.example('autopm mcp tree', 'Show agent-MCP dependency tree')
|
|
82
82
|
.example('autopm mcp status', 'Show MCP servers status');
|
|
83
83
|
},
|
package/package.json
CHANGED
package/scripts/mcp-handler.js
CHANGED
|
@@ -1594,8 +1594,7 @@ ${pkg.repository?.url ? `- Repository: ${pkg.repository.url}` : ''}
|
|
|
1594
1594
|
*/
|
|
1595
1595
|
_getCredentialInfo(serverName) {
|
|
1596
1596
|
const info = {
|
|
1597
|
-
'context7
|
|
1598
|
-
'context7-codebase': '→ Same credentials as context7-docs',
|
|
1597
|
+
'context7': '→ Sign up at https://context7.com and get API key from dashboard',
|
|
1599
1598
|
'github-mcp': '→ Generate token at https://github.com/settings/tokens',
|
|
1600
1599
|
'playwright-mcp': '→ No credentials needed - uses local Playwright installation'
|
|
1601
1600
|
};
|