https://github.com/enso-labs/mcp-sse
Simple MCP Server Deployment
https://github.com/enso-labs/mcp-sse
anthropic claude container deepseek docker gemini langchain langgraph mcp modelcontextprotocol ngrok openai sonnet ubuntu vibecoding
Last synced: 5 months ago
JSON representation
Simple MCP Server Deployment
- Host: GitHub
- URL: https://github.com/enso-labs/mcp-sse
- Owner: enso-labs
- License: mit
- Created: 2025-03-19T02:31:21.000Z (7 months ago)
- Default Branch: master
- Last Pushed: 2025-03-28T02:53:23.000Z (6 months ago)
- Last Synced: 2025-04-02T02:23:05.811Z (6 months ago)
- Topics: anthropic, claude, container, deepseek, docker, gemini, langchain, langgraph, mcp, modelcontextprotocol, ngrok, openai, sonnet, ubuntu, vibecoding
- Language: Python
- Homepage: https://demo.enso.sh
- Size: 24.4 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- mcp-index - MCPServe - Seamlessly connects to local environments to execute shell commands while supporting real-time communication with language models. It can be hosted locally or within a Docker container, offering a straightforward setup for integration. (Cloud Services)
README
🤖 MCPServe by @ryaneggz
Simple MCP Server w/ Shell Exec. Connect to Local via Ngrok, or Host Ubuntu24 Container in Docke
![]()
## 📖 Table of Contents
- [Deploy](https://github.com/promptengineers-ai/llm-server/blob/development/docs/deploy)
## 🛠️ Setup Local Hosted MCP
```bash
## Install uv (if you not using you late to party)
curl -LsSf https://astral.sh/uv/install.sh | sh## Create virtual environemtn
uv venv
source .venv/bin/activate## Install Dependencies
uv pip install -r requirements.txt## Start localhost MCPServe
python main.py
```## 🛠️ Setup Docker Hosted MCP
```bash
docker compose up --build
```## Client MCP Config
If you have configured auth server side in your code you can enable headers for API.
Have found this requires some code changes to the mcp librarie Settings. Adding a middleware prop. :/```json
{
"terminal": {
"transport": "sse",
"url": "http://localhost:8005/sse",
// "headers": {
// "x-api-key": "abcdef123456..."
// }
}
}
```## 🚀 Roadmap
- [ ] 🤖 Coming Soon...
Create an issue and lets start a discussion if you'd like to see a feature added to the roadmap.
## 💡 Issues
Feel free to submit issues and enhancement requests. We're always looking for feedback and suggestions.
## 🤓 Maintainers
- `Ryan Eggleston` - `@ryaneggz`
## 📜 License
This project is open-source, under the [MIT License](LICENSE). Feel free to use, modify, and distribute the code as you please.