claude-mpm 4.4.5__py3-none-any.whl → 4.4.7__py3-none-any.whl
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.
- claude_mpm/VERSION +1 -1
- claude_mpm/agents/templates/local_ops_agent.json +273 -0
- claude_mpm/cli/__init__.py +21 -0
- claude_mpm/cli/commands/mcp_external_commands.py +7 -7
- claude_mpm/cli/commands/mcp_install_commands.py +9 -9
- claude_mpm/cli/commands/mcp_setup_external.py +6 -6
- claude_mpm/cli/commands/verify.py +118 -0
- claude_mpm/cli/parsers/base_parser.py +5 -0
- claude_mpm/hooks/kuzu_memory_hook.py +4 -2
- claude_mpm/services/agents/deployment/agent_deployment.py +10 -6
- claude_mpm/services/diagnostics/checks/__init__.py +2 -2
- claude_mpm/services/diagnostics/checks/{claude_desktop_check.py → claude_code_check.py} +95 -112
- claude_mpm/services/diagnostics/checks/mcp_check.py +6 -6
- claude_mpm/services/diagnostics/checks/mcp_services_check.py +29 -6
- claude_mpm/services/diagnostics/diagnostic_runner.py +5 -5
- claude_mpm/services/diagnostics/doctor_reporter.py +4 -4
- claude_mpm/services/mcp_config_manager.py +46 -26
- claude_mpm/services/mcp_gateway/core/process_pool.py +11 -8
- claude_mpm/services/mcp_gateway/tools/external_mcp_services.py +4 -4
- claude_mpm/services/mcp_gateway/tools/kuzu_memory_service.py +8 -4
- claude_mpm/services/mcp_service_verifier.py +690 -0
- claude_mpm/services/project/project_organizer.py +8 -1
- claude_mpm/services/unified/analyzer_strategies/structure_analyzer.py +1 -2
- claude_mpm/services/unified/config_strategies/context_strategy.py +1 -3
- claude_mpm/services/unified/config_strategies/file_loader_strategy.py +3 -1
- claude_mpm/validation/frontmatter_validator.py +1 -1
- {claude_mpm-4.4.5.dist-info → claude_mpm-4.4.7.dist-info}/METADATA +20 -5
- {claude_mpm-4.4.5.dist-info → claude_mpm-4.4.7.dist-info}/RECORD +32 -29
- {claude_mpm-4.4.5.dist-info → claude_mpm-4.4.7.dist-info}/WHEEL +0 -0
- {claude_mpm-4.4.5.dist-info → claude_mpm-4.4.7.dist-info}/entry_points.txt +0 -0
- {claude_mpm-4.4.5.dist-info → claude_mpm-4.4.7.dist-info}/licenses/LICENSE +0 -0
- {claude_mpm-4.4.5.dist-info → claude_mpm-4.4.7.dist-info}/top_level.txt +0 -0
@@ -3,11 +3,11 @@ External MCP Services Integration
|
|
3
3
|
==================================
|
4
4
|
|
5
5
|
Manages installation and basic setup of external MCP services like mcp-vector-search
|
6
|
-
and mcp-browser. These services run as separate MCP servers in Claude
|
6
|
+
and mcp-browser. These services run as separate MCP servers in Claude Code,
|
7
7
|
not as part of the Claude MPM MCP Gateway.
|
8
8
|
|
9
9
|
Note: As of the latest architecture, external services are registered as separate
|
10
|
-
MCP servers in Claude
|
10
|
+
MCP servers in Claude Code configuration, not as tools within the gateway.
|
11
11
|
"""
|
12
12
|
|
13
13
|
import json
|
@@ -397,11 +397,11 @@ class ExternalMCPServiceManager:
|
|
397
397
|
|
398
398
|
This manager is responsible for checking and installing Python packages
|
399
399
|
for external MCP services. The actual registration of these services
|
400
|
-
happens in Claude
|
400
|
+
happens in Claude Code configuration as separate MCP servers.
|
401
401
|
|
402
402
|
Note: This class is maintained for backward compatibility and package
|
403
403
|
management. The actual tool registration is handled by separate MCP
|
404
|
-
server instances in Claude
|
404
|
+
server instances in Claude Code.
|
405
405
|
"""
|
406
406
|
|
407
407
|
def __init__(self):
|
@@ -249,7 +249,8 @@ class KuzuMemoryService(BaseToolAdapter):
|
|
249
249
|
capture_output=True,
|
250
250
|
text=True,
|
251
251
|
timeout=10,
|
252
|
-
cwd=str(self.project_path),
|
252
|
+
cwd=str(self.project_path),
|
253
|
+
check=False,
|
253
254
|
)
|
254
255
|
|
255
256
|
if result.returncode == 0:
|
@@ -315,7 +316,8 @@ class KuzuMemoryService(BaseToolAdapter):
|
|
315
316
|
capture_output=True,
|
316
317
|
text=True,
|
317
318
|
timeout=10,
|
318
|
-
cwd=str(self.project_path),
|
319
|
+
cwd=str(self.project_path),
|
320
|
+
check=False,
|
319
321
|
)
|
320
322
|
|
321
323
|
if result.returncode == 0 and result.stdout:
|
@@ -384,7 +386,8 @@ class KuzuMemoryService(BaseToolAdapter):
|
|
384
386
|
capture_output=True,
|
385
387
|
text=True,
|
386
388
|
timeout=10,
|
387
|
-
cwd=str(self.project_path),
|
389
|
+
cwd=str(self.project_path),
|
390
|
+
check=False,
|
388
391
|
)
|
389
392
|
|
390
393
|
if result.returncode == 0 and result.stdout:
|
@@ -461,7 +464,8 @@ class KuzuMemoryService(BaseToolAdapter):
|
|
461
464
|
capture_output=True,
|
462
465
|
text=True,
|
463
466
|
timeout=15,
|
464
|
-
cwd=str(self.project_path),
|
467
|
+
cwd=str(self.project_path),
|
468
|
+
check=False,
|
465
469
|
)
|
466
470
|
|
467
471
|
if result.returncode == 0 and result.stdout:
|