MCP Server Demo
Allows deployment and containerization of the MCP server using Docker, with support for building, starting, and stopping the container through Docker Compose.
Enables running the MCP server natively using Python, providing a runtime environment for processing text inputs and generating humorous responses.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@MCP Server Demotell me a joke about programming"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
MCP Server Demo (Humorous Edition)
A simplified Model Context Protocol (MCP) server implemented in Python. This version reads plain text from standard input and responds with a humorous message. It is Docker- and Azure-deployable.
Project Structure
.
├── infrastructure/ # Infrastructure and deployment related files
│ ├── azure/ # Azure deployment files
│ │ ├── deploy.ps1 # PowerShell deployment script
│ │ ├── deploy.sh # Bash deployment script
│ │ └── main.bicep # Azure Bicep deployment template
│ └── docker/ # Docker deployment files
│ ├── Dockerfile # Container definition
│ └── docker-compose.yml # Docker Compose configuration
├── main.py main.py # MCP server implementation (reads text, returns funny responses)
└── requirements.txt # Python dependenciesRelated MCP server: Microsoft Copilot Studio MCP Server
Development
To run the MCP server locally:
python main.pyTo run with Docker:
cd infrastructure/docker
docker compose up --build # Build and start the container
docker compose down # Stop and remove the containerTo test the MCP server, send a message:
echo '{"type": "prompt", "content": "Hello MCP Server!", "metadata": {}}' | docker compose exec -T mcp-server-demo python -u main.pyDeployment
To deploy to Azure:
cd infrastructure/azure
./deploy.ps1Make sure you have the Azure CLI installed and are logged in before deploying.
This server cannot be deployed
Maintenance
Related MCP Connectors
A Model Context Protocol server for Wix AI tools
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
MCP server for AI dialogue using various LLM models via AceDataCloud
Cloudflare Workers MCP server: ai-model-router
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceA Model Context Protocol server that provides jokes on demand, allowing users to request different types of jokes (Chuck Norris, Dad jokes, etc.) through Microsoft Copilot Studio or GitHub Copilot.MIT
- AlicenseNot gradedqualityDmaintenanceA server implementing the Model Context Protocol (MCP) that delivers jokes upon request, demonstrating how to connect AI models to data sources and tools within Microsoft Copilot Studio.MIT
- AlicenseNot gradedqualityDmaintenanceA Model Context Protocol server that provides Chuck Norris and Dad jokes which can be integrated with Microsoft Copilot Studio and GitHub Copilot.MIT
- AlicenseNot gradedqualityCmaintenanceA Model Context Protocol server that provides various jokes (Chuck Norris, Dad jokes, etc.) which can be integrated with Microsoft Copilot Studio and GitHub Copilot.MIT