simple-greeting-mcp
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., "@simple-greeting-mcpsay hello"
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.
Simple Greeting MCP Server
FastMCP를 사용하는 아주 작은 streamable HTTP MCP 서버입니다.
제공하는 tool은 hello 하나이며, 호출하면 다음 문장을 반환합니다.
안녕하세요. 이 문장은 Render에 배포된 MCP 서버에서 온 응답입니다.설치
pip install -r requirements.txtRelated 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/mcpCodex에 등록
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 목록을 확인할 수 있습니다.
This server cannot be deployed
Maintenance
Related MCP Connectors
POC MCP server. Tool say_hello returns 'Welcome' (agent -> MCP -> API path).
Nifty's MCP server — exposes tasks, projects, messages, and files as tools for AI agents.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceA simple remote MCP server that exposes a greeting tool (say_hello) and demonstrates custom icon advertising per MCP spec, ready to deploy on Render.-
- AlicenseAqualityDmaintenanceA minimal MCP server that provides a single 'hello' tool returning 'Hello, world!'.24 npmMIT
- FlicenseNot gradedqualityDmaintenanceA minimal MCP server template for Python with Streamable HTTP transport, bearer token authentication, and a hello tool, designed for deployment on Render.-
- FlicenseNot gradedqualityCmaintenanceA minimal MCP server template for Render with Streamable HTTP transport, bearer token authentication, and an example 'hello' tool.-