Hello World MCP Server
Click on "Install 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., "@Hello World MCP Serverecho Hello World"
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.
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://worldDynamic 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 installBuild
npm run buildClean
npm run cleanRun
Using STDIO (for integration with Claude Desktop)
npm run startUsing HTTP with SSE (for web clients)
npm run start:httpBy 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 configurationTechnical 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:
Connect to the SSE endpoint at
/sseto establish a connectionSend messages to the
/messagesendpoint via POST requestsReceive responses through the SSE connection
Replace <path-to-repo> with the absolute path to this repository.
This server cannot be installed
Maintenance
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
- Flicense-qualityDmaintenanceA 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
- Alicense-qualityDmaintenanceA minimal template MCP server demonstrating basic tools, resources, and prompts functionality, built with Smithery SDK for quick prototyping and deployment.Last updated18ISC
- Alicense-qualityDmaintenanceA 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 updated18ISC
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…
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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