MCP Mesh CLI Tools
Command-line interface and utilities for managing MCP Mesh distributed applications
The MCP Mesh CLI provides a comprehensive toolkit for deploying, monitoring, and debugging MCP agents in distributed environments. Includes both Go binaries and Python runtime for complete mesh operations.
🚀 Quick Start
docker run --rm mcpmesh/cli:latest meshctl status
docker run --rm mcpmesh/cli:latest meshctl list agents
docker run --rm mcpmesh/cli:latest meshctl call my-agent process_data '{"input": "test"}'
docker run -it mcpmesh/cli:latest bash
🛠️ Included Tools
meshctl - Primary CLI tool
registry - Registry server
Python Runtime - Agent execution
📋 Common Commands
meshctl status # Overall mesh health meshctl list agents # All registered agents meshctl list capabilities # Available capabilities meshctl describe agent my-agent # Agent details
meshctl call agent-name tool-name '{"arg": "value"}' meshctl test-connection agent-name # Test agent connectivity
registry --config /config/registry.yaml # Start registry server registry migrate --database-url $DB_URL # Run database migrations
python -c "import mcp_mesh; print('MCP Mesh installed')"
🔧 Configuration
Mount configuration files to customize behavior:
docker run -v $(pwd)/config:/config mcpmesh/cli:latest
registry --config /config/registry.yaml
docker run -v $(pwd):/workspace -w /workspace mcpmesh/cli:latest
python my_agent.py
🎯 Use Cases
📋 Supported Architectures
🔗 Links
Part of the MCP Mesh ecosystem - see also https://hub.docker.com/r/mcpmesh/registry and https://hub.docker.com/r/mcpmesh/python-runtime.
This emphasizes the CLI's role as the primary tool for managing and debugging MCP Mesh deployments, with practical examples of common operations.
Content type
Image
Digest
sha256:5d15e562a…
Size
161 MB
Last updated
24 days ago
docker pull mcpmesh/cli