Skip to main content
Glama
1XKuson

mcp-hello-test

by 1XKuson

mcp-hello-test

Minimal MCP server built to be a deploy target for OneClickMCP. It exists to exercise the deploy pipeline — clone, docker build, run, inject env, expose a port — not to do anything useful.

Why it satisfies the deploy wizard

  • Dockerfile at the repo root (the wizard blocks deploys without one)

  • .env.example at the root, so the wizard prefills the env-var form

  • listens on 0.0.0.0:$PORT, default 3000 — matches the wizard's default internal port

Related MCP server: mcpscope

Transports

Both are served, so it works whichever one the console picks:

Transport

Endpoint

SSE (legacy)

GET /sse, then POST /messages?sessionId=...

Streamable HTTP

POST /mcp (stateless)

Also: GET /health{"status":"ok"}, and GET / returns the endpoint map.

Tools

Tool

Args

Returns

greet

name?

Hello, <name or $GREETING_NAME>!

add

a, b

their sum

whoami

node version, port, uptime, and whether DEMO_API_KEY was injected

whoami is the one that matters for testing: it confirms secrets actually reached the container without printing the secret itself.

Env

Var

Purpose

GREETING_NAME

fallback name for greet

DEMO_API_KEY

dummy secret — whoami reports whether it arrived

PORT

listen port, default 3000

Run locally

npm install
GREETING_NAME=you DEMO_API_KEY=sk-test node server.js
docker build -t mcp-hello-test .
docker run --rm -p 3000:3000 -e DEMO_API_KEY=sk-test mcp-hello-test

Smoke test:

curl -s localhost:3000/health

curl -s -X POST localhost:3000/mcp \
  -H 'content-type: application/json' \
  -H 'accept: application/json, text/event-stream' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
F
license - not found
-
quality - not tested
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • -
    license
    C
    quality
    -
    maintenance
    A simple boilerplate MCP server that provides a basic greeting tool for demonstration purposes. Serves as a starting template for developers to quickly create and deploy custom MCP servers.
    1
    8
  • F
    license
    A
    quality
    C
    maintenance
    A simple local MCP server that provides greeting and integer addition tools.
    2
  • A
    license
    -
    quality
    C
    maintenance
    A minimal MCP server deployable to Volken that exposes echo, add, and current_time tools for demonstrating the MCP deployment and usage loop.
    MIT

View all related MCP servers

Related MCP Connectors

  • An MCP server that let you interact with Cycloid.io Internal Development Portal and Platform

  • A basic MCP server to operate on the Postman API.

  • A very simple remote MCP server that greets you, with a custom icon.

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/1XKuson/mcp-hello-test'

If you have feedback or need assistance with the MCP directory API, please join our Discord server