Skip to main content
Glama
su37josephxia

Hello World MCP Server

Hello World MCP Server

A simple TypeScript implementation of a Model Context Protocol (MCP) server with resources, prompts, and tools. This starter project demonstrates MCP fundamentals and serves as a template for building more complex MCP servers.

Features

  • Static Resource: Provides a "Hello, World" message when called via hello://world

  • Dynamic Resource: Customizable greeting that accepts a name parameter via greeting://{name}

  • Prompt: Simple prompt that configures an assistant with "You are a helpful assistant"

  • Tool: Echo tool that returns "Hello" plus your input message

  • Multiple Transport Options: Run as either a stdio server or HTTP server with Server-Sent Events (SSE)

Related MCP server: Basic MCP Server

Installation

npm install

Build

npm run build

Clean

npm run clean

Run

Using STDIO (for integration with Claude Desktop)

npm run start

Using HTTP with SSE (for web clients)

npm run start:http

By default, the HTTP server runs on port 3000. You can change this by setting the PORT environment variable.

Project Structure

.
├── scripts/        # Helper scripts
├── src/            # Source code
│   ├── http.ts     # HTTP transport implementation
│   ├── index.ts    # Main entry point 
│   ├── server.ts   # MCP server configuration
│   └── stdio.ts    # STDIO transport implementation
├── package.json    # Project dependencies and scripts
└── tsconfig.json   # TypeScript configuration

Technical Details

  • Built with TypeScript and the @modelcontextprotocol/sdk (v1.7.0+)

  • Uses Zod for type validation in tools

  • HTTP server implemented with Express.js

  • Supports Server-Sent Events (SSE) for real-time communication

Using the Server

You can connect to this server using any MCP client, such as Claude Desktop, or build your own client.

Claude Desktop Configuration

To use this server with Claude Desktop, add the following to your claude_desktop_config.json file:

{
  "mcpServers": {
    "hello-world": {
      "command": "node",
      "args": ["<path-to-repo>/build/stdio.js"]
    }
  }
}

HTTP/SSE Client Integration

{
  "mcpServers": {
    "hello-world": {
      "type": "sse",
      "url": "http://localhost:3001/sse",
      "messageEndpoint": "http://localhost:3001/messages",
      "timeout": 30000,  // 连接超时时间(毫秒),默认30秒
      "reconnect": true,  // SSE 断线自动重连
      "reconnectInterval": 5000,  // 重连间隔(毫秒)
      "maxReconnectAttempts": 5  // 最大重连次数
    }
  }
}

When running in HTTP mode:

  1. Connect to the SSE endpoint at /sse to establish a connection

  2. Send messages to the /messages endpoint via POST requests

  3. Receive responses through the SSE connection

Replace <path-to-repo> with the absolute path to this repository.

F
license - not found
-
quality - not tested
D
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

  • F
    license
    -
    quality
    D
    maintenance
    A basic MCP server template that provides a foundation for building custom tools, resources, and prompts. Serves as a starting point for developers to create their own MCP server functionality.
    Last updated
  • A
    license
    -
    quality
    D
    maintenance
    A minimal template MCP server demonstrating basic tools, resources, and prompts functionality, built with Smithery SDK for quick prototyping and deployment.
    Last updated
    18
    ISC
  • A
    license
    -
    quality
    D
    maintenance
    A minimal template MCP server demonstrating basic tools, resources, and prompts functionality. Includes example implementations like a hello tool, history resource, and greet prompt for learning MCP development.
    Last updated
    18
    ISC
  • F
    license
    -
    quality
    B
    maintenance
    A simple MCP server demonstrating resources, tools, and prompts, including a greeting resource, an addition tool, and a calculation prompt.
    Last updated

View all related MCP servers

Related MCP Connectors

  • An MCP server for deep research or task groups

  • MCP server for generating rough-draft project plans from natural-language prompts.

  • Primarily to be used as a template repository for developing MCP servers with FastMCP in Python, P…

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/su37josephxia/coffee-mcp-node'

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