Skip to main content
Glama
Shin-Kyeongsik

simple-greeting-mcp

Simple Greeting MCP Server

FastMCP를 사용하는 아주 작은 streamable HTTP MCP 서버입니다.

제공하는 tool은 hello 하나이며, 호출하면 다음 문장을 반환합니다.

안녕하세요. 이 문장은 Render에 배포된 MCP 서버에서 온 응답입니다.

설치

pip install -r requirements.txt

Related MCP server: hello-world-mcp

실행

기본 포트는 8000입니다.

python3 server.py

포트를 바꾸려면 PORT 환경 변수를 지정합니다.

PORT=8080 python3 server.py

서버가 실행되면 다음 URL을 사용합니다.

Health check: http://localhost:8000/health
MCP endpoint: http://localhost:8000/mcp

Codex에 등록

streamable HTTP MCP 서버는 url로 등록합니다.

로컬 실행 서버를 등록하는 예시는 다음과 같습니다.

[mcp_servers.simple-greeting]
url = "http://localhost:8000/mcp"

Render에 배포한 경우에는 Render 서비스 URL의 /mcp 경로를 사용합니다.

[mcp_servers.simple-greeting]
url = "https://your-render-service.onrender.com/mcp"

설정 파일은 보통 ~/.codex/config.toml에 둡니다. 프로젝트에만 적용하려면 신뢰된 프로젝트의 .codex/config.toml에 둘 수도 있습니다.

확인

헬스체크:

curl http://localhost:8000/health

응답 예시:

{"status":"ok"}

Codex에서는 새 세션을 시작한 뒤 /mcp로 등록된 서버와 tool 목록을 확인할 수 있습니다.

Related MCP Connectors

Related MCP Servers

  • F
    license
    Not graded
    quality
    D
    maintenance
    A simple remote MCP server that exposes a greeting tool (say_hello) and demonstrates custom icon advertising per MCP spec, ready to deploy on Render.
    -
  • A
    license
    A
    quality
    D
    maintenance
    A minimal MCP server that provides a single 'hello' tool returning 'Hello, world!'.
    2
    4 npm
    MIT
  • F
    license
    Not graded
    quality
    D
    maintenance
    A minimal MCP server template for Python with Streamable HTTP transport, bearer token authentication, and a hello tool, designed for deployment on Render.
    -
  • F
    license
    Not graded
    quality
    C
    maintenance
    A minimal MCP server template for Render with Streamable HTTP transport, bearer token authentication, and an example 'hello' tool.
    -