Helloworld Demo
БесплатноНе проверенA minimal MCP server offering a hello_world tool that returns a greeting and current UTC time via streamable HTTP.
Описание
A minimal MCP server offering a hello_world tool that returns a greeting and current UTC time via streamable HTTP.
README
A tiny MCP server over streamable HTTP that exposes one tool: hello_world.
The tool returns a plain English greeting plus the current UTC time.
What is included
- one MCP tool:
hello_world - streamable HTTP transport for MCP clients
- a
/healthzendpoint for container probes - a Docker image
- a Helm chart
- GitHub Actions to build and publish the image to GitHub Container Registry
Local development
python -m venv .venv
source .venv/bin/activate
pip install -e '.[dev]'
pytest
Run the server locally
helloworld-demo-mcp --transport streamable-http --host 127.0.0.1 --port 3000
Or print a short description and exit:
helloworld-demo-mcp --describe
Call the MCP tool
The server exposes its MCP endpoint at /mcp when running in streamable HTTP mode.
Example with an MCP client:
import asyncio
from mcp.client.session import ClientSession
from mcp.client.streamable_http import streamablehttp_client
async def main():
async with streamablehttp_client("http://127.0.0.1:3000/mcp") as (read_stream, write_stream, _):
async with ClientSession(read_stream, write_stream) as session:
await session.initialize()
result = await session.call_tool("hello_world", {})
print(result)
asyncio.run(main())
Docker
Build and run the container:
docker build -t helloworld-demo-mcp:local .
docker run --rm -p 3000:3000 helloworld-demo-mcp:local
The health check should then succeed:
curl http://127.0.0.1:3000/healthz
Helm
Render the chart:
helm template helloworld-demo-mcp charts/helloworld-demo-mcp
Install it into a namespace:
helm upgrade --install helloworld-demo-mcp charts/helloworld-demo-mcp \
--namespace helloworld-demo-mcp \
--create-namespace
GitHub Container Registry
The GitHub Actions workflow publishes images to:
ghcr.io/Jasonrve/helloworld-demo-mcp
Tags are emitted for the branch SHA and for release tags when you push them.
Установить Helloworld Demo в Claude Desktop, Claude Code, Cursor
unyly install helloworld-demo-mcpСтавит в Claude Desktop, Claude Code, Cursor и VS Code — сам разбирается с npx, uvx и сборкой из исходников.
Впервые? Поставь CLI: curl -fsSL https://unyly.org/install | sh
Или настроить вручную
Выполни в терминале:
claude mcp add helloworld-demo-mcp -- uvx --from git+https://github.com/Jasonrve/helloworld-demo-mcp helloworld-demo-mcpFAQ
Helloworld Demo MCP бесплатный?
Да, Helloworld Demo MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для Helloworld Demo?
Нет, Helloworld Demo работает без API-ключей и переменных окружения.
Helloworld Demo — hosted или self-hosted?
Доступен hosted-вариант: Unyly запускает сервер в облаке, локальная установка не обязательна.
Как установить Helloworld Demo в Claude Desktop, Claude Code или Cursor?
Открой Helloworld Demo на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
GitHub
PRs, issues, code search, CI status
автор: GitHubFilesystem
Secure file operations with configurable access controls.
Memory
Knowledge graph-based persistent memory system.
Template MCP Server
A CLI tool to create a new Model Context Protocol server project with TypeScript support, dual transport options, and an extensible structure
автор: mcpdotdirectCompare Helloworld Demo with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории development
