MCP Hello World MCP Server

A simple Hello World MCP server

Local serverstdioTypeScript

What is the MCP Hello World MCP server?

If you want an AI assistant working directly with MCP Hello World, the mcp hello world mcp server is the bridge. A simple Hello World MCP server.

What MCP Hello World does

[][npm-release-shield]][npm-release-link] [][npm-downloads-shield]][npm-downloads-link] [][github-action-test-shield]][github-action-test-link] [][github-action-release-shield]][github-action-release-link]

Tools it exposes

Once connected, the assistant can call these 7 tools directly:

  • Description — Echoes the input message, prefixed with "Hello "
  • Method — tools/invoke
  • Parameters — { name: 'echo', parameters: { message: string } }
  • Returns — { content: [{ type: 'text', text: 'Hello {message}' }] } (e.g., { content: [{ type: 'text', text: 'Hello test' }] })
  • Resources — The Resources tool exposed by this server
  • Tools — The Tools tool exposed by this server
  • Prompts — The Prompts tool exposed by this server

Installing the mcp hello world mcp server

The server is distributed via npm as mcp-hello-world, so most clients can run it without a manual build step. Add it to your MCP client's configuration and restart the client to pick it up — the copy-paste configs for Claude Desktop, Claude Code and Cursor are on this page.

Where it fits

Developer-tool servers are usually the first ones people connect, because they turn "help me with this code" into an assistant that can actually read the repo and act on it. MCP Hello World sits in that group, and the shape of its toolset — Description, Method, Parameters among others — tells you what it is really for. Worth comparing against the other developer tools servers in this directory before you commit to one, since several overlap in scope but differ sharply in setup cost and permissions.

Practical notes

  • This server runs locally, so it operates with whatever access your machine and its credentials already have. Scope that deliberately rather than by default.
  • With 7 tools exposed, expect a noticeable bump in prompt size — disable it in projects that never use MCP Hello World.
  • Maintained by lobehub, written in TypeScript.
  • MCP clients ask for confirmation before each tool call by default. Keep that on while you learn what the mcp hello world mcp server actually does with your data.
  • Every entry in this directory is reviewed by hand before it goes live, and details are checked against the project's own documentation.

Available tools

ToolWhat it does
DescriptionEchoes the input message, prefixed with "Hello ".
Methodtools/invoke
Parameters{ name: 'echo', parameters: { message: string } }
Returns{ content: [{ type: 'text', text: 'Hello {message}' }] } (e.g., { content: [{ type: 'text', text: 'Hello test' }] })
ResourcesThe Resources tool exposed by this server.
ToolsThe Tools tool exposed by this server.
PromptsThe Prompts tool exposed by this server.

How to install the MCP Hello World MCP server

{
  "mcpServers": {
    "hello-world": {
      "command": "npx",
      "args": ["-y", "mcp-hello-world"]
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Example prompts to try

  • Use MCP Hello World to Description.
  • Use MCP Hello World to Method.
  • Use MCP Hello World to Parameters.

Frequently asked questions

It connects MCP Hello World to MCP-compatible AI assistants such as Claude and Cursor, exposing 7 tools (Description, Method, Parameters, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with MCP Hello World directly.