hello-world
Use this project to verify that your MCP server is properly configured and to test a simple end-to-end integration workflow.
claude mcp add --transport stdio fogmoe-hello-world-mcp npx -y hello-world-mcp
How to use
This MCP server provides a simple hello_world tool that returns the message 'Hello World!'. To use it, add the server to your MCP client configuration and reference the hello_world tool when you want a greeting. The server is invoked via npx with the package name hello-world-mcp, so once configured you can call the tool through your MCP client as hello_world and receive the string 'Hello World!'. If you manage multiple MCP servers, you can combine tools from different servers in your workflows by referencing their respective tool names in your client.
How to install
Prerequisites:
- Node.js and npm (for using npx)
- Internet access to fetch the MCP package from npm
Installation steps:
- Install Node.js from the official website or using your system package manager.
- Verify npm is installed: npm -v
- Use your MCP client configuration to reference the server. Since this server is accessed via npx, no global installation is required. The following demonstrates using the server inline in your MCP client configuration:
Example configuration snippet (already shown in the README):
{
"mcpServers": {
"hello-world": {
"command": "npx",
"args": ["-y", "hello-world-mcp"]
}
}
}
- Ensure the client can reach npm to fetch the package when the MCP client starts.
Additional notes
Notes:
- The server package is invoked via npx, so no persistent installation is required on the host.
- If you encounter network restrictions, you may need to ensure npm registry access or preload the package in your environment.
- The hello_world tool returns a fixed message: 'Hello World!'. If you extend the package, ensure the tool name remains consistent with your MCP client configuration.
Related MCP Servers
taskflow
A task management Model Context Protocol (MCP) server that helps AI assistants break down user requests into manageable tasks with subtasks, dependencies, and notes. Enforces a structured workflow with user approval steps.
grumpydev
Let the grumpy senior dev review your code with this MCP server
mcp-agent
Lightweight, focused utilities to manage connections and execute MCP tools with minimal integration effort. Use it to directly call tools or build simple agents within your current architecture.
puppeteer
Self-hosted Puppeteer MCP server with remote SSE access, API key authentication, and Docker deployment. Complete tool suite for browser automation via Model Context Protocol.
mcp-starter-template-ts
TypeScript starter template for building Model Context Protocol (MCP) servers, designed to help developers create secure and robust AI-agent-compatible services.
MCP-Client -Project-using-NodeJS
A minimal Model Context Protocol (MCP) implementation built with Node.js and TypeScript. This project demonstrates client–server communication over stdio, structured message handling, and local data access, developed with VS Code and GitHub Copilot to explore modern AI tool integration workflows.