mcp_hello-world logo

mcp_hello-world

bradleylacroix/mcp_hello-world
0 starsUpdated 2026-06-24Community

Is this your server?

Add your score badge to your README and get your server in front of 45k+ builders a month.

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

A minimal MCP server that responds with 'hello' at the /hello endpoint, serving as a scaffold for building MCP-style services.

README.md

mcp_hello-world

Minimal hello-world scaffold for an MCP-style service.

Run the simple HTTP server locally:

python3 src/mcp_server.py

Then open or curl the hello endpoint:

curl http://localhost:8000/hello

This project contains:

  • src/mcp_server.py: minimal HTTP server responding at /hello
  • .gitignore: common Python ignores
  • requirements.txt: empty for this minimal example

Azure Function deploy (Bicep)

Files added:

  • infra/main.bicep: Bicep template creating storage, app insights, app plan, and function app
  • infra/deploy.sh: helper script that creates rg_hello-world and deploys the Bicep template
  • src/func_app: Python Azure Functions scaffold (HTTP-triggered Hello function)

Deploy steps:

# ensure you are logged in to the correct Azure subscription
az login
# create resource group and deploy infra
bash infra/deploy.sh

Naming notes:

  • You requested resources named using the pattern <abbr>_hello-world. Some Azure services (storage account, hostname-based names) have stricter naming rules that disallow underscores and uppercase letters; the Bicep template sanitizes names where required.

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Other servers.