-
Notifications
You must be signed in to change notification settings - Fork 7.8k
Open
Description
Summary
I would like to propose adding a Docker Compose example for Roundtable MCP Server to the awesome-compose collection.
What is Roundtable?
Roundtable is a zero-configuration MCP (Model Context Protocol) server that unifies multiple AI assistants into a single development workflow. It's particularly valuable for containerized development environments where developers want to integrate AI assistants like Claude Code, Cursor, and GPT-4.
Why Add This Example?
- Growing AI Development: AI assistants are becoming essential in modern development workflows
- MCP Standard Adoption: Model Context Protocol is an emerging standard for AI assistant integration
- Docker Integration: Perfect fit for containerized development environments
- Developer Productivity: Addresses the common need for unified AI assistant management
Proposed Example Structure
roundtable-mcp-server/
├── compose.yaml
└── README.md
Key Features of the Example
- Zero Configuration: Simple
docker compose updeployment - Production Ready: Includes networking, volumes, and restart policies
- Well Documented: Comprehensive README with usage examples
- Extensible: Easy to integrate with existing Docker workflows
Docker Compose Service
The example would include a lightweight Python service that installs and runs Roundtable:
services:
roundtable:
image: python:3.11-slim
command: sh -c "pip install roundtable-ai && roundtable --host 0.0.0.0 --port 8000"
ports:
- "8000:8000"
restart: unless-stoppedValue to Docker Community
- AI Development Workflow: Addresses modern development needs
- Container-First Approach: Designed for Docker environments
- Developer Experience: Simplifies AI assistant integration
- Standards Compliance: Implements emerging MCP protocol
Maintenance Commitment
I'm the maintainer of Roundtable and commit to:
- Maintaining the Docker Compose example
- Responding to issues and questions
- Keeping the example updated with best practices
Would the maintainers be interested in this addition? I have the complete example ready for submission.
Links:
Metadata
Metadata
Assignees
Labels
No labels