# Composer Kit MCP Server
A Model Context Protocol (MCP) server for accessing Composer Kit UI components documentation, examples, and usage information. This server provides comprehensive access to the Composer Kit React component library designed for building web3 applications on the Celo blockchain.
## Installation
1. Clone the repository:
```bash
git clone https://github.com/celo-org/composer-kit-mcp
cd composer-kit-mcp
```
2. Install dependencies:
```bash
pip install -e .
```
## MCP Client Setup
### Setting up in Cursor
1. **Install the MCP server** (if not already done):
```bash
pip install composer-kit-mcp
```
2. **Configure Cursor** by adding the MCP server to your Cursor settings:
- Open Cursor Settings (Cmd/Ctrl + ,)
- Navigate to "Features" → "Model Context Protocol"
- Add a new MCP server with the following configuration:
```json
{
"mcpServers": {
"composer-kit-mcp": {
"command": "uvx",
"args": ["composer-kit-mcp"]
}
}
}
```
3. **Restart Cursor** to load the MCP server
4. **Verify the setup** by asking Cursor about Composer Kit components:
- "What Composer Kit components are available?"
- "Show me how to use the Wallet component"
- "Search for payment-related components"
### Setting up in Claude Desktop
1. **Install the MCP server** (if not already done):
```bash
pip install composer-kit-mcp
```
2. **Locate your Claude Desktop config file**:
- **macOS**: `~/Library/Application Support/Claude/claude_desktop_config.json`
- **Windows**: `%APPDATA%\Claude\claude_desktop_config.json`
3. **Edit the config file** to add the MCP server:
```json
{
"mcpServers": {
"composer-kit-mcp": {
"command": "uvx",
"args": ["composer-kit-mcp"]
}
}
}
```
If the file doesn't exist, create it with the above content.
4. **Restart Claude Desktop** to load the MCP server
5. **Verify the setup** by asking Claude about Composer Kit:
- Look for the 🔌 icon in the chat interface indicating MCP tools are available
- Ask: "What Composer Kit components can you help me with?"
- Try: "Show me examples of using the Payment component"
### Alternative Installation Methods
#### Using pipx (Recommended for isolation)
```bash
# Install pipx if you haven't already
pip install pipx
# Install composer-kit-mcp in an isolated environment
pipx install composer-kit-mcp
# The command will be available globally
composer-kit-mcp
```
#### Using virtual environment
```bash
# Create a virtual environment
python -m venv composer-kit-mcp-env
source composer-kit-mcp-env/bin/activate # On Windows: composer-kit-mcp-env\Scripts\activate
# Install the package
pip install composer-kit-mcp
# Use the full path in your MCP config
# e.g., /path/to/composer-kit-mcp-env/bin/composer-kit-mcp
```
### Troubleshooting
#### Common Issues
1. **Command not found**: Make sure the package is installed and the command is in your PATH
```bash
which composer-kit-mcp # Should show the path to the command
```
2. **Permission errors**: Try installing with `--user` flag or use pipx
```bash
pip install --user composer-kit-mcp
```
3. **MCP server not connecting**: Check that the command path in your config is correct
```bash
composer-kit-mcp # Should start the server (will wait for input)
```
4. **Python version issues**: Ensure you're using Python 3.11 or higher
```bash
python --version # Should be 3.11+
```
#### Debugging
To test if the MCP server is working correctly:
```bash
# Test the server directly
echo '{"jsonrpc": "2.0", "id": 1, "method": "tools/list", "params": {}}' | composer-kit-mcp
```
This should return a JSON response with the available tools.
## Usage
### Running the Server
```bash
# Run the MCP server
python -m composer_kit_mcp.server
# Or use the CLI entry point
composer-kit-mcp
```
### Available Tools
#### Component Information
1. **list_components**
- List all available Composer Kit components with their descriptions and categories
- No parameters required
2. **get_component**
- Get detailed information about a specific component, including source code, props, and usage information
- Parameters: `component_name` (e.g., 'button', 'wallet', 'payment', 'swap')
3. **get_component_example**
- Get example usage code for a specific component with real-world examples
- Parameters: `component_name`, `example_type` (optional: 'basic', 'advanced', 'with-props')
4. **search_components**
- Search for components by name, description, or functionality
- Parameters: `query` (e.g., 'wallet', 'payment', 'token', 'nft')
5. **get_component_props**
- Get detailed prop information for a specific component, including types, descriptions, and requirements
- Parameters: `component_name`
#### Installation and Setup
6. **get_installation_guide**
- Get installation instructions for Composer Kit, including setup steps and configuration
- Parameters: `package_manager` (optional: 'npm', 'yarn', 'pnpm', 'bun')
7. **get_components_by_category**
- Get all components in a specific category
- Parameters: `category` (e.g., 'Core Components', 'Wallet Integration', 'Payment & Transactions')
#### Celo Composer Tools
8. **list_celo_composer_templates**
- List all available Celo Composer templates with their descriptions, use cases, and features
- No parameters required
9. **get_celo_composer_template**
- Get detailed information about a specific Celo Composer template
- Parameters: `template_name` (e.g., 'Minipay', 'Valora', 'Social Connect')
10. **list_celo_composer_frameworks**
- List supported frameworks in Celo Composer (React/Next.js, Hardhat)
- No parameters required
11. **get_celo_composer_commands**
- Get available Celo Composer CLI commands with flags and usage examples
- No parameters required
12. **get_celo_composer_guide**
- Get step-by-step guides for various Celo Composer tasks
- Parameters: `guide_type` ('quick-start', 'smart-contract-deployment', 'local-development', 'ui-components', 'deployment')
13. **get_integration_guide**
- Get a comprehensive guide on integrating Composer Kit with Celo Composer projects
- No parameters required
14. **create_celo_composer_project**
- Generate the complete command to create a new Celo Composer project
- Parameters: `project_name`, `owner`, `template`, `include_hardhat` (optional, defaults to true)
- Returns: Complete CLI command with next steps and template information
## Available Components
### Core Components
- **Address**: Display Ethereum addresses with truncation and copy functionality
- **Balance**: Display and manage token balances with precision control
- **Identity**: Display user information with address, name, balance, and social links
### Wallet Integration
- **Wallet**: Wallet connection and user information display
- **Connect**: Wallet connection button with callback support
### Payment & Transactions
- **Payment**: Send payments with built-in dialog and error handling
- **Transaction**: Facilitate blockchain transactions with status tracking
- **Swap**: Token exchange interface with swappable token selection
### Token Management
- **TokenSelect**: Search and select tokens from a list with filtering
### NFT Components
- **NFT**: Display NFT details and provide minting interface
- **NFTCard**: Card layout for NFT display
- **NFTImage**: NFT image display component
- **NFTMeta**: NFT metadata display
- **NFTMint**: NFT minting interface
## Key Features
### Component Documentation
- **Complete API Reference**: Detailed prop information for all components
- **Usage Examples**: Real-world code examples for each component
- **Installation Guides**: Step-by-step setup instructions
- **Category Organization**: Components organized by functionality
### Celo Composer Integration
- **Template Management**: Access to all Celo Composer templates (Minipay, Valora, Social Connect)
- **Project Creation**: Generate complete CLI commands for new projects
- **Framework Support**: Information about React/Next.js and Hardhat integration
- **Step-by-Step Guides**: Comprehensive guides for project setup, deployment, and development
- **Integration Documentation**: How to combine Composer Kit components with Celo Composer projects
### Search and Discovery
- **Semantic Search**: Find components by functionality or use case
- **Category Filtering**: Browse components by category
- **Prop Documentation**: Detailed type information and requirements
### Code Examples
- **Basic Usage**: Simple implementation examples
- **Advanced Patterns**: Complex usage scenarios
- **Best Practices**: Recommended implementation patterns
## Celo Composer Templates
### Minipay Template
- **Purpose**: Pre-configured for building mini-payment dApps on Celo
- **Use Cases**: Mobile-first payment applications, micro-transactions, P2P payments
- **Features**: Mobile-optimized UI, payment flow components, Celo integration, PWA support
### Valora Template
- **Purpose**: Designed for easy Valora wallet integration
- **Use Cases**: Valora wallet integration, social payments, DeFi applications
- **Features**: Valora wallet connectivity, social features, DeFi components, multi-token support
### Social Connect Template
- **Purpose**: Template for building applications with social identity features
- **Use Cases**: Social identity verification, phone number authentication, social recovery
- **Features**: Social Connect integration, identity verification, phone number mapping
## Integration Workflow
1. **Choose a Template**: Select from Minipay, Valora, or Social Connect based on your use case
2. **Create Project**: Use the `create_celo_composer_project` tool to generate the setup command
3. **Install Dependencies**: Set up the project with the generated command
4. **Add Composer Kit**: Install Composer Kit components for enhanced UI
5. **Develop**: Use step-by-step guides for deployment and development setup
## Architecture
The server provides access to hardcoded Composer Kit component data and Celo Composer information:
```
src/composer_kit_mcp/
├── components/ # Component data and models
│ ├── data.py # Hardcoded component and Celo Composer information
│ └── models.py # Pydantic models for components and Celo Composer
├── server.py # Main MCP server with Composer Kit and Celo Composer tools
└── __init__.py # Package initialization
```
### Data Structure
- **Composer Kit Components**: Complete component library with props, examples, and usage information
- **Celo Composer Templates**: Template configurations with use cases and features
- **Celo Composer Guides**: Step-by-step instructions for common tasks
- **Integration Documentation**: How to combine both tools for rapid dApp development
## Component Categories
### Core Components
Essential UI components for basic functionality
### Wallet Integration
Components for wallet connection and user management
### Payment & Transactions
Components for handling payments and blockchain transactions
### Token Management
Components for token selection and management
### NFT Components
Components for NFT display and interaction
## Development
### Running Tests
```bash
pytest
```
### Code Formatting
```bash
black .
ruff check .
```
### Type Checking
```bash
mypy .
```
## License
MIT License - see LICENSE file for details.
## Contributing
1. Fork the repository
2. Create a feature branch
3. Make your changes
4. Add tests if applicable
5. Submit a pull request
## Support
For issues and questions:
- GitHub Issues: [composer-kit-mcp/issues](https://github.com/viral-sangani/composer-kit-mcp/issues)
- Documentation: [Composer Kit Docs](https://github.com/celo-org/composer-kit)
Raw data
{
"_id": null,
"home_page": null,
"name": "composer-kit-mcp",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.11",
"maintainer_email": null,
"keywords": "celo, celo-composer, components, composer-kit, dapp, mcp, react, ui, web3",
"author": null,
"author_email": "viral-sangani <viral.sangani2011@gmail.com>",
"download_url": "https://files.pythonhosted.org/packages/98/69/f5937cf71bc6fdb346f8e85a42a3867311f701e36a9b706477bd82080fd7/composer_kit_mcp-0.5.1.tar.gz",
"platform": null,
"description": "# Composer Kit MCP Server\n\nA Model Context Protocol (MCP) server for accessing Composer Kit UI components documentation, examples, and usage information. This server provides comprehensive access to the Composer Kit React component library designed for building web3 applications on the Celo blockchain.\n\n## Installation\n\n1. Clone the repository:\n\n```bash\ngit clone https://github.com/celo-org/composer-kit-mcp\ncd composer-kit-mcp\n```\n\n2. Install dependencies:\n\n```bash\npip install -e .\n```\n\n## MCP Client Setup\n\n### Setting up in Cursor\n\n1. **Install the MCP server** (if not already done):\n\n ```bash\n pip install composer-kit-mcp\n ```\n\n2. **Configure Cursor** by adding the MCP server to your Cursor settings:\n\n - Open Cursor Settings (Cmd/Ctrl + ,)\n - Navigate to \"Features\" \u2192 \"Model Context Protocol\"\n - Add a new MCP server with the following configuration:\n\n ```json\n {\n \"mcpServers\": {\n \"composer-kit-mcp\": {\n \"command\": \"uvx\",\n \"args\": [\"composer-kit-mcp\"]\n }\n }\n }\n ```\n\n3. **Restart Cursor** to load the MCP server\n\n4. **Verify the setup** by asking Cursor about Composer Kit components:\n - \"What Composer Kit components are available?\"\n - \"Show me how to use the Wallet component\"\n - \"Search for payment-related components\"\n\n### Setting up in Claude Desktop\n\n1. **Install the MCP server** (if not already done):\n\n ```bash\n pip install composer-kit-mcp\n ```\n\n2. **Locate your Claude Desktop config file**:\n\n - **macOS**: `~/Library/Application Support/Claude/claude_desktop_config.json`\n - **Windows**: `%APPDATA%\\Claude\\claude_desktop_config.json`\n\n3. **Edit the config file** to add the MCP server:\n\n ```json\n {\n \"mcpServers\": {\n \"composer-kit-mcp\": {\n \"command\": \"uvx\",\n \"args\": [\"composer-kit-mcp\"]\n }\n }\n }\n ```\n\n If the file doesn't exist, create it with the above content.\n\n4. **Restart Claude Desktop** to load the MCP server\n\n5. **Verify the setup** by asking Claude about Composer Kit:\n - Look for the \ud83d\udd0c icon in the chat interface indicating MCP tools are available\n - Ask: \"What Composer Kit components can you help me with?\"\n - Try: \"Show me examples of using the Payment component\"\n\n### Alternative Installation Methods\n\n#### Using pipx (Recommended for isolation)\n\n```bash\n# Install pipx if you haven't already\npip install pipx\n\n# Install composer-kit-mcp in an isolated environment\npipx install composer-kit-mcp\n\n# The command will be available globally\ncomposer-kit-mcp\n```\n\n#### Using virtual environment\n\n```bash\n# Create a virtual environment\npython -m venv composer-kit-mcp-env\nsource composer-kit-mcp-env/bin/activate # On Windows: composer-kit-mcp-env\\Scripts\\activate\n\n# Install the package\npip install composer-kit-mcp\n\n# Use the full path in your MCP config\n# e.g., /path/to/composer-kit-mcp-env/bin/composer-kit-mcp\n```\n\n### Troubleshooting\n\n#### Common Issues\n\n1. **Command not found**: Make sure the package is installed and the command is in your PATH\n\n ```bash\n which composer-kit-mcp # Should show the path to the command\n ```\n\n2. **Permission errors**: Try installing with `--user` flag or use pipx\n\n ```bash\n pip install --user composer-kit-mcp\n ```\n\n3. **MCP server not connecting**: Check that the command path in your config is correct\n\n ```bash\n composer-kit-mcp # Should start the server (will wait for input)\n ```\n\n4. **Python version issues**: Ensure you're using Python 3.11 or higher\n ```bash\n python --version # Should be 3.11+\n ```\n\n#### Debugging\n\nTo test if the MCP server is working correctly:\n\n```bash\n# Test the server directly\necho '{\"jsonrpc\": \"2.0\", \"id\": 1, \"method\": \"tools/list\", \"params\": {}}' | composer-kit-mcp\n```\n\nThis should return a JSON response with the available tools.\n\n## Usage\n\n### Running the Server\n\n```bash\n# Run the MCP server\npython -m composer_kit_mcp.server\n\n# Or use the CLI entry point\ncomposer-kit-mcp\n```\n\n### Available Tools\n\n#### Component Information\n\n1. **list_components**\n\n - List all available Composer Kit components with their descriptions and categories\n - No parameters required\n\n2. **get_component**\n\n - Get detailed information about a specific component, including source code, props, and usage information\n - Parameters: `component_name` (e.g., 'button', 'wallet', 'payment', 'swap')\n\n3. **get_component_example**\n\n - Get example usage code for a specific component with real-world examples\n - Parameters: `component_name`, `example_type` (optional: 'basic', 'advanced', 'with-props')\n\n4. **search_components**\n\n - Search for components by name, description, or functionality\n - Parameters: `query` (e.g., 'wallet', 'payment', 'token', 'nft')\n\n5. **get_component_props**\n - Get detailed prop information for a specific component, including types, descriptions, and requirements\n - Parameters: `component_name`\n\n#### Installation and Setup\n\n6. **get_installation_guide**\n\n - Get installation instructions for Composer Kit, including setup steps and configuration\n - Parameters: `package_manager` (optional: 'npm', 'yarn', 'pnpm', 'bun')\n\n7. **get_components_by_category**\n - Get all components in a specific category\n - Parameters: `category` (e.g., 'Core Components', 'Wallet Integration', 'Payment & Transactions')\n\n#### Celo Composer Tools\n\n8. **list_celo_composer_templates**\n\n - List all available Celo Composer templates with their descriptions, use cases, and features\n - No parameters required\n\n9. **get_celo_composer_template**\n\n - Get detailed information about a specific Celo Composer template\n - Parameters: `template_name` (e.g., 'Minipay', 'Valora', 'Social Connect')\n\n10. **list_celo_composer_frameworks**\n\n - List supported frameworks in Celo Composer (React/Next.js, Hardhat)\n - No parameters required\n\n11. **get_celo_composer_commands**\n\n - Get available Celo Composer CLI commands with flags and usage examples\n - No parameters required\n\n12. **get_celo_composer_guide**\n\n - Get step-by-step guides for various Celo Composer tasks\n - Parameters: `guide_type` ('quick-start', 'smart-contract-deployment', 'local-development', 'ui-components', 'deployment')\n\n13. **get_integration_guide**\n\n - Get a comprehensive guide on integrating Composer Kit with Celo Composer projects\n - No parameters required\n\n14. **create_celo_composer_project**\n - Generate the complete command to create a new Celo Composer project\n - Parameters: `project_name`, `owner`, `template`, `include_hardhat` (optional, defaults to true)\n - Returns: Complete CLI command with next steps and template information\n\n## Available Components\n\n### Core Components\n\n- **Address**: Display Ethereum addresses with truncation and copy functionality\n- **Balance**: Display and manage token balances with precision control\n- **Identity**: Display user information with address, name, balance, and social links\n\n### Wallet Integration\n\n- **Wallet**: Wallet connection and user information display\n- **Connect**: Wallet connection button with callback support\n\n### Payment & Transactions\n\n- **Payment**: Send payments with built-in dialog and error handling\n- **Transaction**: Facilitate blockchain transactions with status tracking\n- **Swap**: Token exchange interface with swappable token selection\n\n### Token Management\n\n- **TokenSelect**: Search and select tokens from a list with filtering\n\n### NFT Components\n\n- **NFT**: Display NFT details and provide minting interface\n- **NFTCard**: Card layout for NFT display\n- **NFTImage**: NFT image display component\n- **NFTMeta**: NFT metadata display\n- **NFTMint**: NFT minting interface\n\n## Key Features\n\n### Component Documentation\n\n- **Complete API Reference**: Detailed prop information for all components\n- **Usage Examples**: Real-world code examples for each component\n- **Installation Guides**: Step-by-step setup instructions\n- **Category Organization**: Components organized by functionality\n\n### Celo Composer Integration\n\n- **Template Management**: Access to all Celo Composer templates (Minipay, Valora, Social Connect)\n- **Project Creation**: Generate complete CLI commands for new projects\n- **Framework Support**: Information about React/Next.js and Hardhat integration\n- **Step-by-Step Guides**: Comprehensive guides for project setup, deployment, and development\n- **Integration Documentation**: How to combine Composer Kit components with Celo Composer projects\n\n### Search and Discovery\n\n- **Semantic Search**: Find components by functionality or use case\n- **Category Filtering**: Browse components by category\n- **Prop Documentation**: Detailed type information and requirements\n\n### Code Examples\n\n- **Basic Usage**: Simple implementation examples\n- **Advanced Patterns**: Complex usage scenarios\n- **Best Practices**: Recommended implementation patterns\n\n## Celo Composer Templates\n\n### Minipay Template\n\n- **Purpose**: Pre-configured for building mini-payment dApps on Celo\n- **Use Cases**: Mobile-first payment applications, micro-transactions, P2P payments\n- **Features**: Mobile-optimized UI, payment flow components, Celo integration, PWA support\n\n### Valora Template\n\n- **Purpose**: Designed for easy Valora wallet integration\n- **Use Cases**: Valora wallet integration, social payments, DeFi applications\n- **Features**: Valora wallet connectivity, social features, DeFi components, multi-token support\n\n### Social Connect Template\n\n- **Purpose**: Template for building applications with social identity features\n- **Use Cases**: Social identity verification, phone number authentication, social recovery\n- **Features**: Social Connect integration, identity verification, phone number mapping\n\n## Integration Workflow\n\n1. **Choose a Template**: Select from Minipay, Valora, or Social Connect based on your use case\n2. **Create Project**: Use the `create_celo_composer_project` tool to generate the setup command\n3. **Install Dependencies**: Set up the project with the generated command\n4. **Add Composer Kit**: Install Composer Kit components for enhanced UI\n5. **Develop**: Use step-by-step guides for deployment and development setup\n\n## Architecture\n\nThe server provides access to hardcoded Composer Kit component data and Celo Composer information:\n\n```\nsrc/composer_kit_mcp/\n\u251c\u2500\u2500 components/ # Component data and models\n\u2502 \u251c\u2500\u2500 data.py # Hardcoded component and Celo Composer information\n\u2502 \u2514\u2500\u2500 models.py # Pydantic models for components and Celo Composer\n\u251c\u2500\u2500 server.py # Main MCP server with Composer Kit and Celo Composer tools\n\u2514\u2500\u2500 __init__.py # Package initialization\n```\n\n### Data Structure\n\n- **Composer Kit Components**: Complete component library with props, examples, and usage information\n- **Celo Composer Templates**: Template configurations with use cases and features\n- **Celo Composer Guides**: Step-by-step instructions for common tasks\n- **Integration Documentation**: How to combine both tools for rapid dApp development\n\n## Component Categories\n\n### Core Components\n\nEssential UI components for basic functionality\n\n### Wallet Integration\n\nComponents for wallet connection and user management\n\n### Payment & Transactions\n\nComponents for handling payments and blockchain transactions\n\n### Token Management\n\nComponents for token selection and management\n\n### NFT Components\n\nComponents for NFT display and interaction\n\n## Development\n\n### Running Tests\n\n```bash\npytest\n```\n\n### Code Formatting\n\n```bash\nblack .\nruff check .\n```\n\n### Type Checking\n\n```bash\nmypy .\n```\n\n## License\n\nMIT License - see LICENSE file for details.\n\n## Contributing\n\n1. Fork the repository\n2. Create a feature branch\n3. Make your changes\n4. Add tests if applicable\n5. Submit a pull request\n\n## Support\n\nFor issues and questions:\n\n- GitHub Issues: [composer-kit-mcp/issues](https://github.com/viral-sangani/composer-kit-mcp/issues)\n- Documentation: [Composer Kit Docs](https://github.com/celo-org/composer-kit)\n",
"bugtrack_url": null,
"license": null,
"summary": "A Model Context Protocol (MCP) server for Composer Kit UI components and Celo Composer project creation",
"version": "0.5.1",
"project_urls": {
"Documentation": "https://github.com/viral-sangani/composer-kit-mcp#readme",
"Homepage": "https://github.com/viral-sangani/composer-kit-mcp",
"Issues": "https://github.com/viral-sangani/composer-kit-mcp/issues",
"Repository": "https://github.com/viral-sangani/composer-kit-mcp"
},
"split_keywords": [
"celo",
" celo-composer",
" components",
" composer-kit",
" dapp",
" mcp",
" react",
" ui",
" web3"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "91f4e829c732e014ee60648f6034c4f52feadf24f31005975d86ec0c01823ca8",
"md5": "da2339701dab1f90da9075e90bf1355d",
"sha256": "14af2f837194b5773491eeeaa9460879eb907945306c327928a3e72a560fb555"
},
"downloads": -1,
"filename": "composer_kit_mcp-0.5.1-py3-none-any.whl",
"has_sig": false,
"md5_digest": "da2339701dab1f90da9075e90bf1355d",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.11",
"size": 19955,
"upload_time": "2025-07-21T12:16:03",
"upload_time_iso_8601": "2025-07-21T12:16:03.035360Z",
"url": "https://files.pythonhosted.org/packages/91/f4/e829c732e014ee60648f6034c4f52feadf24f31005975d86ec0c01823ca8/composer_kit_mcp-0.5.1-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9869f5937cf71bc6fdb346f8e85a42a3867311f701e36a9b706477bd82080fd7",
"md5": "f8df364fcb4265b9da808c653a00973b",
"sha256": "5ca2f4faddca86e316950ad74884a9d3e31df8196f45917996b7cc57ebc3bb92"
},
"downloads": -1,
"filename": "composer_kit_mcp-0.5.1.tar.gz",
"has_sig": false,
"md5_digest": "f8df364fcb4265b9da808c653a00973b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.11",
"size": 49622,
"upload_time": "2025-07-21T12:16:04",
"upload_time_iso_8601": "2025-07-21T12:16:04.422693Z",
"url": "https://files.pythonhosted.org/packages/98/69/f5937cf71bc6fdb346f8e85a42a3867311f701e36a9b706477bd82080fd7/composer_kit_mcp-0.5.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-07-21 12:16:04",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "viral-sangani",
"github_project": "composer-kit-mcp#readme",
"github_not_found": true,
"lcname": "composer-kit-mcp"
}