Hello World MCP Server logo

Hello World MCP Server

MauricioIPastora/surph-test-mcp
0 starsUpdated 2026-01-29Community

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 simple MCP server that provides greeting tools and server information.

README.md

Hello World MCP Server

A simple MCP (Model Context Protocol) server using STDIO transport, built with TypeScript.

Features

This server exposes:

Tools

  • hello - Says hello to someone (takes a name parameter)
  • get_greeting - Returns a friendly greeting message (no parameters)

Resources

  • server-info (info://server) - Provides information about the server

Installation

npm install

Build

npm run build

Usage

Running directly

npm start

Using with Cursor

Add this to your Cursor MCP settings (.cursor/mcp.json in your project or global settings):

{
  "mcpServers": {
    "hello-world": {
      "command": "node",
      "args": ["c:/Users/Mauri/CODE/surph-test-mcp/dist/index.js"]
    }
  }
}

How it works

The server uses STDIO (standard input/output) transport to communicate with MCP clients. When a client connects, it can:

  1. List available tools using tools/list
  2. Call the hello tool with a name to get a personalized greeting
  3. Call the get_greeting tool to get a simple greeting
  4. Access the server-info resource for server information

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

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