Name | claude-mpm JSON |
Version |
4.7.5
JSON |
| download |
home_page | None |
Summary | Claude Multi-Agent Project Manager - Orchestrate Claude with agent delegation and ticket tracking |
upload_time | 2025-10-09 03:19:36 |
maintainer | Claude MPM Team |
docs_url | None |
author | None |
requires_python | >=3.8 |
license | MIT |
keywords |
claude
orchestration
multi-agent
ticket-management
|
VCS |
 |
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
# Claude MPM - Multi-Agent Project Manager
A powerful orchestration framework for **Claude Code (CLI)** that enables multi-agent workflows, session management, and real-time monitoring through a streamlined Rich-based interface.
> **โ ๏ธ Important**: Claude MPM extends **Claude Code (CLI)**, not Claude Desktop (app). All MCP integrations work with Claude Code's CLI interface only.
> **Quick Start**: See [QUICKSTART.md](QUICKSTART.md) to get running in 5 minutes!
## Features
- ๐ค **Multi-Agent System**: 15 specialized agents for comprehensive project management
- ๐ง **Persistent Knowledge System**: Project-specific kuzu-memory integration for intelligent context retention
- ๐ **Session Management**: Resume previous sessions with `--resume`
- ๐ **Real-Time Monitoring**: Live dashboard with `--monitor` flag
- ๐ **Optional MCP Services**: mcp-vector-search and kuzu-memory with automatic fallback installation
- ๐ **Multi-Project Support**: Per-session working directories with persistent knowledge graphs
- ๐ **Git Integration**: View diffs and track changes across projects
- ๐ฏ **Smart Task Orchestration**: PM agent intelligently routes work to specialists
- โก **Simplified Architecture**: ~3,700 lines removed for better performance and maintainability
- ๐ **Enhanced Security**: Comprehensive input validation and sanitization framework
## Quick Installation
```bash
# Basic installation
pip install claude-mpm
# Install with optional MCP services (recommended)
pip install "claude-mpm[mcp]"
```
Or with pipx (recommended for isolated installation):
```bash
# Basic installation
pipx install claude-mpm
# Install with optional MCP services (recommended)
pipx install "claude-mpm[mcp]"
# Install with all features
pipx install "claude-mpm[mcp,monitor]"
# Configure MCP for pipx users:
claude-mpm mcp-pipx-config
```
**๐ก Optional Dependencies**:
- `[mcp]` - Include MCP services (mcp-vector-search, mcp-browser, mcp-ticketer, kuzu-memory)
- `[monitor]` - Full monitoring dashboard with Socket.IO and async web server components
- **Combine both**: Use `"claude-mpm[mcp,monitor]"` to install all features
- Without optional dependencies, MCP services auto-install on first use via pipx
**๐ Pipx Support Now Fully Functional!** Recent improvements ensure complete compatibility:
- โ
Socket.IO daemon script path resolution (fixed)
- โ
Commands directory access (fixed)
- โ
Resource files properly packaged for pipx environments
- โ
Python 3.13+ fully supported
**That's it!** See [QUICKSTART.md](QUICKSTART.md) for immediate usage or [docs/user/installation.md](docs/user/installation.md) for advanced options.
## Quick Usage
```bash
# Start interactive mode (recommended)
claude-mpm
# Start with monitoring dashboard
claude-mpm run --monitor
# Use MCP Gateway for external tool integration
claude-mpm mcp
# Run comprehensive health diagnostics
claude-mpm doctor
# Generate detailed diagnostic report with MCP service analysis
claude-mpm doctor --verbose --output-file doctor-report.md
# Run specific diagnostic checks including MCP services
claude-mpm doctor --checks installation configuration agents mcp
# Check MCP service status specifically
claude-mpm doctor --checks mcp --verbose
# Verify MCP services installation and configuration
claude-mpm verify
# Auto-fix MCP service issues
claude-mpm verify --fix
# Verify specific service
claude-mpm verify --service kuzu-memory
# Get JSON output for automation
claude-mpm verify --json
# Manage memory for large conversation histories
claude-mpm cleanup-memory
```
See [QUICKSTART.md](QUICKSTART.md) for complete usage examples.
## Architecture (v4.4.1)
Following Phase 3 architectural simplification in v4.4.1, Claude MPM features:
- **Streamlined Rich Interface**: Removed complex TUI system (~2,500 lines) for cleaner user experience
- **Optional MCP Services**: mcp-vector-search and kuzu-memory with automatic fallback installation
- **Persistent Knowledge System**: Project-specific kuzu-memory databases with intelligent prompt enrichment
- **Service-Oriented Architecture**: Simplified five specialized service domains
- **Interface-Based Contracts**: All services implement explicit interfaces
- **Enhanced Performance**: ~3,700 lines removed for better startup time and maintainability
- **Enhanced Security**: Comprehensive input validation and sanitization framework
See [docs/ARCHITECTURE.md](docs/ARCHITECTURE.md) for detailed architecture information.
## Key Capabilities
### Multi-Agent Orchestration
Claude MPM includes 15 specialized agents:
#### Core Development
- **Engineer** - Software development and implementation
- **Research** - Code analysis and research
- **Documentation** - Documentation creation and maintenance
- **QA** - Testing and quality assurance
- **Security** - Security analysis and implementation
#### Operations & Infrastructure
- **Ops** - Operations and deployment with advanced git commit authority and security verification (v2.2.2+)
- **Version Control** - Git and version management
- **Data Engineer** - Data pipeline and ETL development
#### Web Development
- **Web UI** - Frontend and UI development
- **Web QA** - Web testing and E2E validation
#### Project Management
- **Ticketing** - Issue tracking and management
- **Project Organizer** - File organization and structure
- **Memory Manager** - Project memory and context management
#### Code Quality
- **Refactoring Engineer** - Code refactoring and optimization
- **Code Analyzer** - Static code analysis with AST and tree-sitter
### Agent Memory System
Agents learn project-specific patterns using a simple list format and can update memories via JSON response fields (`remember` for incremental updates, `MEMORIES` for complete replacement). Initialize with `claude-mpm memory init`.
### MCP Gateway (Model Context Protocol)
Claude MPM includes a powerful MCP Gateway that enables:
- Integration with external tools and services
- Custom tool development
- Protocol-based communication
- Extensible architecture
See [MCP Gateway Documentation](docs/developer/13-mcp-gateway/README.md) for details.
### Memory Management
Large conversation histories can consume 2GB+ of memory. Use the `cleanup-memory` command to manage Claude conversation history:
```bash
# Clean up old conversation history
claude-mpm cleanup-memory
# Keep only recent conversations
claude-mpm cleanup-memory --days 7
```
### Real-Time Monitoring
The `--monitor` flag opens a web dashboard showing live agent activity, file operations, and session management.
See [docs/MEMORY.md](docs/MEMORY.md) and [docs/developer/11-dashboard/README.md](docs/developer/11-dashboard/README.md) for details.
## ๐ Documentation
**๐ [Complete Documentation Hub](docs/README.md)** - Start here for all documentation!
### Quick Links by User Type
#### ๐ฅ For Users
- **[๐ 5-Minute Quick Start](docs/user/quickstart.md)** - Get running immediately
- **[๐ฆ Installation Guide](docs/user/installation.md)** - All installation methods
- **[๐ User Guide](docs/user/README.md)** - Complete user documentation
- **[โ FAQ](docs/user/faq.md)** - Common questions answered
#### ๐ป For Developers
- **[๐๏ธ Architecture Overview](docs/developer/ARCHITECTURE.md)** - Service-oriented system design
- **[๐ป Developer Guide](docs/developer/README.md)** - Complete development documentation
- **[๐งช Contributing](docs/developer/03-development/README.md)** - How to contribute
- **[๐ API Reference](docs/API.md)** - Complete API documentation
#### ๐ค For Agent Creators
- **[๐ค Agent System](docs/AGENTS.md)** - Complete agent development guide
- **[๐ Creation Guide](docs/developer/07-agent-system/creation-guide.md)** - Step-by-step tutorials
- **[๐ Schema Reference](docs/developer/10-schemas/agent_schema_documentation.md)** - Agent format specifications
#### ๐ For Operations
- **[๐ Deployment](docs/DEPLOYMENT.md)** - Release management & versioning
- **[๐ Monitoring](docs/MONITOR.md)** - Real-time dashboard & metrics
- **[๐ Troubleshooting](docs/TROUBLESHOOTING.md)** - Enhanced `doctor` command with detailed reports and auto-fix capabilities
### ๐ฏ Documentation Features
- **Single Entry Point**: [docs/README.md](docs/README.md) is your navigation hub
- **Clear User Paths**: Organized by user type and experience level
- **Cross-Referenced**: Links between related topics and sections
- **Up-to-Date**: Version 4.3.3 with current information
## Recent Updates (v4.3.3)
**Enhanced PM Instructions**: PM2 deployment support and mandatory web-qa verification for quality assurance.
**Improved Version Management**: Better version comparison logic and agent override warnings for smoother operations.
**Code Quality Improvements**: Auto-fix code formatting and import management with enhanced standard tools recognition.
**Documentation Overhaul**: Unified documentation architecture with single entry point and clear navigation paths.
**Performance Enhancements**: Continued 50-80% performance improvements through intelligent caching and lazy loading.
See [CHANGELOG.md](CHANGELOG.md) for full history and [docs/user/MIGRATION.md](docs/user/MIGRATION.md) for upgrade instructions.
## Development
### Quick Development Setup
```bash
# Complete development setup with code formatting and quality tools
make dev-complete
# Or step by step:
make setup-dev # Install in development mode
make setup-pre-commit # Set up automated code formatting
```
### Code Quality & Formatting
The project uses automated code formatting and quality checks:
- **Black** for code formatting
- **isort** for import sorting
- **flake8** for linting
- **mypy** for type checking
- **Pre-commit hooks** for automatic enforcement
See [docs/developer/CODE_FORMATTING.md](docs/developer/CODE_FORMATTING.md) for details.
### Contributing
Contributions are welcome! Please see our [project structure guide](docs/STRUCTURE.md) and follow the established patterns.
**Development Workflow**:
1. Run `make dev-complete` to set up your environment
2. Code formatting happens automatically on commit
3. All code must pass quality checks before merging
### Project Structure
See [docs/STRUCTURE.md](docs/STRUCTURE.md) for codebase organization.
### License
MIT License - see [LICENSE](LICENSE) file.
## Credits
- Based on [claude-multiagent-pm](https://github.com/kfsone/claude-multiagent-pm)
- Enhanced for [Claude Code (CLI)](https://docs.anthropic.com/en/docs/claude-code) integration
- Built with โค๏ธ by the Claude MPM community
Raw data
{
"_id": null,
"home_page": null,
"name": "claude-mpm",
"maintainer": "Claude MPM Team",
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": null,
"keywords": "claude, orchestration, multi-agent, ticket-management",
"author": null,
"author_email": "Bob Matsuoka <bob@matsuoka.com>",
"download_url": "https://files.pythonhosted.org/packages/ea/ad/3a60bd33e1d5282f60532eecbe71cb70bc0a9f490c4ed02417ad01b1d6ac/claude_mpm-4.7.5.tar.gz",
"platform": null,
"description": "# Claude MPM - Multi-Agent Project Manager\n\nA powerful orchestration framework for **Claude Code (CLI)** that enables multi-agent workflows, session management, and real-time monitoring through a streamlined Rich-based interface.\n\n> **\u26a0\ufe0f Important**: Claude MPM extends **Claude Code (CLI)**, not Claude Desktop (app). All MCP integrations work with Claude Code's CLI interface only.\n\n> **Quick Start**: See [QUICKSTART.md](QUICKSTART.md) to get running in 5 minutes!\n\n## Features\n\n- \ud83e\udd16 **Multi-Agent System**: 15 specialized agents for comprehensive project management\n- \ud83e\udde0 **Persistent Knowledge System**: Project-specific kuzu-memory integration for intelligent context retention\n- \ud83d\udd04 **Session Management**: Resume previous sessions with `--resume`\n- \ud83d\udcca **Real-Time Monitoring**: Live dashboard with `--monitor` flag\n- \ud83d\udd0c **Optional MCP Services**: mcp-vector-search and kuzu-memory with automatic fallback installation\n- \ud83d\udcc1 **Multi-Project Support**: Per-session working directories with persistent knowledge graphs\n- \ud83d\udd0d **Git Integration**: View diffs and track changes across projects\n- \ud83c\udfaf **Smart Task Orchestration**: PM agent intelligently routes work to specialists\n- \u26a1 **Simplified Architecture**: ~3,700 lines removed for better performance and maintainability\n- \ud83d\udd12 **Enhanced Security**: Comprehensive input validation and sanitization framework\n\n## Quick Installation\n\n```bash\n# Basic installation\npip install claude-mpm\n\n# Install with optional MCP services (recommended)\npip install \"claude-mpm[mcp]\"\n```\n\nOr with pipx (recommended for isolated installation):\n```bash\n# Basic installation\npipx install claude-mpm\n\n# Install with optional MCP services (recommended)\npipx install \"claude-mpm[mcp]\"\n\n# Install with all features\npipx install \"claude-mpm[mcp,monitor]\"\n\n# Configure MCP for pipx users:\nclaude-mpm mcp-pipx-config\n```\n\n**\ud83d\udca1 Optional Dependencies**:\n- `[mcp]` - Include MCP services (mcp-vector-search, mcp-browser, mcp-ticketer, kuzu-memory)\n- `[monitor]` - Full monitoring dashboard with Socket.IO and async web server components\n- **Combine both**: Use `\"claude-mpm[mcp,monitor]\"` to install all features\n- Without optional dependencies, MCP services auto-install on first use via pipx\n\n**\ud83c\udf89 Pipx Support Now Fully Functional!** Recent improvements ensure complete compatibility:\n- \u2705 Socket.IO daemon script path resolution (fixed)\n- \u2705 Commands directory access (fixed) \n- \u2705 Resource files properly packaged for pipx environments\n- \u2705 Python 3.13+ fully supported\n\n**That's it!** See [QUICKSTART.md](QUICKSTART.md) for immediate usage or [docs/user/installation.md](docs/user/installation.md) for advanced options.\n\n## Quick Usage\n\n```bash\n# Start interactive mode (recommended)\nclaude-mpm\n\n# Start with monitoring dashboard\nclaude-mpm run --monitor\n\n# Use MCP Gateway for external tool integration\nclaude-mpm mcp\n\n# Run comprehensive health diagnostics\nclaude-mpm doctor\n\n# Generate detailed diagnostic report with MCP service analysis\nclaude-mpm doctor --verbose --output-file doctor-report.md\n\n# Run specific diagnostic checks including MCP services\nclaude-mpm doctor --checks installation configuration agents mcp\n\n# Check MCP service status specifically\nclaude-mpm doctor --checks mcp --verbose\n\n# Verify MCP services installation and configuration\nclaude-mpm verify\n\n# Auto-fix MCP service issues\nclaude-mpm verify --fix\n\n# Verify specific service\nclaude-mpm verify --service kuzu-memory\n\n# Get JSON output for automation\nclaude-mpm verify --json\n\n# Manage memory for large conversation histories\nclaude-mpm cleanup-memory\n```\n\nSee [QUICKSTART.md](QUICKSTART.md) for complete usage examples.\n\n\n## Architecture (v4.4.1)\n\nFollowing Phase 3 architectural simplification in v4.4.1, Claude MPM features:\n\n- **Streamlined Rich Interface**: Removed complex TUI system (~2,500 lines) for cleaner user experience\n- **Optional MCP Services**: mcp-vector-search and kuzu-memory with automatic fallback installation\n- **Persistent Knowledge System**: Project-specific kuzu-memory databases with intelligent prompt enrichment\n- **Service-Oriented Architecture**: Simplified five specialized service domains\n- **Interface-Based Contracts**: All services implement explicit interfaces\n- **Enhanced Performance**: ~3,700 lines removed for better startup time and maintainability\n- **Enhanced Security**: Comprehensive input validation and sanitization framework\n\nSee [docs/ARCHITECTURE.md](docs/ARCHITECTURE.md) for detailed architecture information.\n\n## Key Capabilities\n\n### Multi-Agent Orchestration\n\nClaude MPM includes 15 specialized agents:\n\n#### Core Development\n- **Engineer** - Software development and implementation\n- **Research** - Code analysis and research \n- **Documentation** - Documentation creation and maintenance\n- **QA** - Testing and quality assurance\n- **Security** - Security analysis and implementation\n\n#### Operations & Infrastructure\n- **Ops** - Operations and deployment with advanced git commit authority and security verification (v2.2.2+)\n- **Version Control** - Git and version management\n- **Data Engineer** - Data pipeline and ETL development\n\n#### Web Development\n- **Web UI** - Frontend and UI development\n- **Web QA** - Web testing and E2E validation\n\n#### Project Management\n- **Ticketing** - Issue tracking and management\n- **Project Organizer** - File organization and structure\n- **Memory Manager** - Project memory and context management\n\n#### Code Quality\n- **Refactoring Engineer** - Code refactoring and optimization\n- **Code Analyzer** - Static code analysis with AST and tree-sitter\n\n### Agent Memory System\nAgents learn project-specific patterns using a simple list format and can update memories via JSON response fields (`remember` for incremental updates, `MEMORIES` for complete replacement). Initialize with `claude-mpm memory init`.\n\n### MCP Gateway (Model Context Protocol)\n\nClaude MPM includes a powerful MCP Gateway that enables:\n- Integration with external tools and services\n- Custom tool development\n- Protocol-based communication\n- Extensible architecture\n\nSee [MCP Gateway Documentation](docs/developer/13-mcp-gateway/README.md) for details.\n\n### Memory Management\n\nLarge conversation histories can consume 2GB+ of memory. Use the `cleanup-memory` command to manage Claude conversation history:\n\n```bash\n# Clean up old conversation history\nclaude-mpm cleanup-memory\n\n# Keep only recent conversations\nclaude-mpm cleanup-memory --days 7\n```\n\n### Real-Time Monitoring\nThe `--monitor` flag opens a web dashboard showing live agent activity, file operations, and session management.\n\nSee [docs/MEMORY.md](docs/MEMORY.md) and [docs/developer/11-dashboard/README.md](docs/developer/11-dashboard/README.md) for details.\n\n\n## \ud83d\udcda Documentation\n\n**\ud83d\udc49 [Complete Documentation Hub](docs/README.md)** - Start here for all documentation!\n\n### Quick Links by User Type\n\n#### \ud83d\udc65 For Users\n- **[\ud83d\ude80 5-Minute Quick Start](docs/user/quickstart.md)** - Get running immediately\n- **[\ud83d\udce6 Installation Guide](docs/user/installation.md)** - All installation methods\n- **[\ud83d\udcd6 User Guide](docs/user/README.md)** - Complete user documentation\n- **[\u2753 FAQ](docs/user/faq.md)** - Common questions answered\n\n#### \ud83d\udcbb For Developers\n- **[\ud83c\udfd7\ufe0f Architecture Overview](docs/developer/ARCHITECTURE.md)** - Service-oriented system design\n- **[\ud83d\udcbb Developer Guide](docs/developer/README.md)** - Complete development documentation\n- **[\ud83e\uddea Contributing](docs/developer/03-development/README.md)** - How to contribute\n- **[\ud83d\udcca API Reference](docs/API.md)** - Complete API documentation\n\n#### \ud83e\udd16 For Agent Creators\n- **[\ud83e\udd16 Agent System](docs/AGENTS.md)** - Complete agent development guide\n- **[\ud83d\udcdd Creation Guide](docs/developer/07-agent-system/creation-guide.md)** - Step-by-step tutorials\n- **[\ud83d\udccb Schema Reference](docs/developer/10-schemas/agent_schema_documentation.md)** - Agent format specifications\n\n#### \ud83d\ude80 For Operations\n- **[\ud83d\ude80 Deployment](docs/DEPLOYMENT.md)** - Release management & versioning\n- **[\ud83d\udcca Monitoring](docs/MONITOR.md)** - Real-time dashboard & metrics\n- **[\ud83d\udc1b Troubleshooting](docs/TROUBLESHOOTING.md)** - Enhanced `doctor` command with detailed reports and auto-fix capabilities\n\n### \ud83c\udfaf Documentation Features\n- **Single Entry Point**: [docs/README.md](docs/README.md) is your navigation hub\n- **Clear User Paths**: Organized by user type and experience level\n- **Cross-Referenced**: Links between related topics and sections\n- **Up-to-Date**: Version 4.3.3 with current information\n\n## Recent Updates (v4.3.3)\n\n**Enhanced PM Instructions**: PM2 deployment support and mandatory web-qa verification for quality assurance.\n\n**Improved Version Management**: Better version comparison logic and agent override warnings for smoother operations.\n\n**Code Quality Improvements**: Auto-fix code formatting and import management with enhanced standard tools recognition.\n\n**Documentation Overhaul**: Unified documentation architecture with single entry point and clear navigation paths.\n\n**Performance Enhancements**: Continued 50-80% performance improvements through intelligent caching and lazy loading.\n\nSee [CHANGELOG.md](CHANGELOG.md) for full history and [docs/user/MIGRATION.md](docs/user/MIGRATION.md) for upgrade instructions.\n\n## Development\n\n### Quick Development Setup\n```bash\n# Complete development setup with code formatting and quality tools\nmake dev-complete\n\n# Or step by step:\nmake setup-dev # Install in development mode\nmake setup-pre-commit # Set up automated code formatting\n```\n\n### Code Quality & Formatting\nThe project uses automated code formatting and quality checks:\n- **Black** for code formatting\n- **isort** for import sorting\n- **flake8** for linting\n- **mypy** for type checking\n- **Pre-commit hooks** for automatic enforcement\n\nSee [docs/developer/CODE_FORMATTING.md](docs/developer/CODE_FORMATTING.md) for details.\n\n### Contributing\nContributions are welcome! Please see our [project structure guide](docs/STRUCTURE.md) and follow the established patterns.\n\n**Development Workflow**:\n1. Run `make dev-complete` to set up your environment\n2. Code formatting happens automatically on commit\n3. All code must pass quality checks before merging\n\n### Project Structure\nSee [docs/STRUCTURE.md](docs/STRUCTURE.md) for codebase organization.\n\n### License\nMIT License - see [LICENSE](LICENSE) file.\n\n## Credits\n\n- Based on [claude-multiagent-pm](https://github.com/kfsone/claude-multiagent-pm)\n- Enhanced for [Claude Code (CLI)](https://docs.anthropic.com/en/docs/claude-code) integration\n- Built with \u2764\ufe0f by the Claude MPM community\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "Claude Multi-Agent Project Manager - Orchestrate Claude with agent delegation and ticket tracking",
"version": "4.7.5",
"project_urls": {
"Documentation": "https://github.com/bobmatnyc/claude-mpm/blob/main/README.md",
"Homepage": "https://github.com/bobmatnyc/claude-mpm",
"Issues": "https://github.com/bobmatnyc/claude-mpm/issues",
"Repository": "https://github.com/bobmatnyc/claude-mpm.git"
},
"split_keywords": [
"claude",
" orchestration",
" multi-agent",
" ticket-management"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "be534bdaa179493eb459d30303bca2b7b2764afc92abd6a29218e07b74e58bd3",
"md5": "c7fc2de98b9a4d9aa2ee1f6d662a57e5",
"sha256": "ecb13a1b45788088e1174c9e1b64672ef1d81e61e5da5f36f26422df781a781f"
},
"downloads": -1,
"filename": "claude_mpm-4.7.5-py3-none-any.whl",
"has_sig": false,
"md5_digest": "c7fc2de98b9a4d9aa2ee1f6d662a57e5",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 2941329,
"upload_time": "2025-10-09T03:19:33",
"upload_time_iso_8601": "2025-10-09T03:19:33.390236Z",
"url": "https://files.pythonhosted.org/packages/be/53/4bdaa179493eb459d30303bca2b7b2764afc92abd6a29218e07b74e58bd3/claude_mpm-4.7.5-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "eaad3a60bd33e1d5282f60532eecbe71cb70bc0a9f490c4ed02417ad01b1d6ac",
"md5": "ebe1f3857ccc998992c14545e1963548",
"sha256": "3b9dbec7e56f9c7cf63e60fcd135d80eb7b6f49440af4c575fd3d28a1458cf1a"
},
"downloads": -1,
"filename": "claude_mpm-4.7.5.tar.gz",
"has_sig": false,
"md5_digest": "ebe1f3857ccc998992c14545e1963548",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 2476167,
"upload_time": "2025-10-09T03:19:36",
"upload_time_iso_8601": "2025-10-09T03:19:36.306676Z",
"url": "https://files.pythonhosted.org/packages/ea/ad/3a60bd33e1d5282f60532eecbe71cb70bc0a9f490c4ed02417ad01b1d6ac/claude_mpm-4.7.5.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-10-09 03:19:36",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "bobmatnyc",
"github_project": "claude-mpm",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "claude-mpm"
}