mcp-hello-world.git
可用工具 (17 个)
该服务在 MCP 协议中暴露的工具,AI 可按需调用
1784966490526730
实时数据/微博热搜
该工具无需必填参数,直接调用即可
1784970571047946
实时数据/百度热榜
该工具无需必填参数,直接调用即可
1784977874409482
实时数据/知乎热榜
该工具无需必填参数,直接调用即可
1784978410698762
实时数据/今日头条热榜
该工具无需必填参数,直接调用即可
1784978635640842
实时数据/36氪热榜
该工具无需必填参数,直接调用即可
1784978900689930
实时数据/腾讯新闻热榜
该工具无需必填参数,直接调用即可
1784979049521162
实时数据/B站热榜
该工具无需必填参数,直接调用即可
1784979182190602
实时数据/搜狗热榜
该工具无需必填参数,直接调用即可
1784979595168778
实时数据/搜狗热榜A
该工具无需必填参数,直接调用即可
1784979835483146
实时数据/澎湃新闻热榜
该工具无需必填参数,直接调用即可
1784980301032458
实时数据/虎扑步行街热榜
该工具无需必填参数,直接调用即可
1784980390530058
实时数据/虎扑步行街热榜A
该工具无需必填参数,直接调用即可
1784981034545162
实时数据/抖音热榜
该工具无需必填参数,直接调用即可
1784985949325322
实时数据/IT资讯热榜
该工具无需必填参数,直接调用即可
1784987501481994
实时数据/虎嗅热榜
该工具无需必填参数,直接调用即可
1784988457466890
实时数据/百度贴吧热榜
该工具无需必填参数,直接调用即可
1784988836741130
实时数据/稀土掘金热榜
该工具无需必填参数,直接调用即可
服务介绍
MCP Hello World
A simple MCP (Model Context Protocol) server that provides hello world greeting tools.
工具列表 | Tools
| 工具名称 | 描述 |
|---|---|
hello |
向某人问好,返回友好的问候消息 |
greet_multiple |
同时向多人问好 |
前置需求 | 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