Skip to main content
Glama
hc0061365

hc0061365-mcp-hello-world

by hc0061365

MCP Hello World

A simple MCP (Model Context Protocol) server that provides hello world greeting tools.

工具列表 | Tools

工具名称

描述

hello

向某人问好,返回友好的问候消息

greet_multiple

同时向多人问好

Related MCP server: mcpv3e

前置需求 | Prerequisites

  • Node.js 22 或以上版本

开始使用 | Getting Started

使用 Stdio 启动 | Start with Stdio transport

在 MCP 客户端配置中添加以下内容:

{
  "mcpServers": {
    "hc0061365-mcp-hello-world": {
      "command": "npx",
      "args": ["hc0061365-mcp-hello-world@latest"]
    }
  }
}

本地开发 | Local Development

# 安装依赖
npm install

# 使用 MCP Inspector 测试
npx @modelcontextprotocol/inspector node src/index.js

MCP 客户端配置 | MCP Client Configuration

Claude Desktop

编辑 ~/.claude/claude_desktop_config.json:

{
  "mcpServers": {
    "hc0061365-mcp-hello-world": {
      "command": "node",
      "args": ["/path/to/hc0061365-mcp-hello-world/src/index.js"]
    }
  }
}

Cursor

编辑 ~/.cursor/mcp.json:

{
  "mcpServers": {
    "hc0061365-mcp-hello-world": {
      "command": "node",
      "args": ["/path/to/hc0061365-mcp-hello-world/src/index.js"]
    }
  }
}

VS Code

在工作区 .vscode/mcp.json 中添加:

{
  "mcpServers": {
    "mcp-hello-world": {
      "command": "node",
      "args": ["${workspaceFolder}/src/index.js"]
    }
  }
}

License

MIT

Maintenance

ActivityInactive
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    C
    quality
    D
    maintenance
    A simple MCP server that provides a basic greeting tool for saying hello with customizable names. Serves as a boilerplate template for developers to quickly create and deploy new MCP servers.
    1
    6
    MIT
  • F
    license
    Not graded
    quality
    C
    maintenance
    MCP server providing greeting and echo tools for testing and demonstration.
    -
  • F
    license
    A
    quality
    D
    maintenance
    A simple local MCP server that provides greeting and integer addition tools.
    2
    -