What is the io.github.wei/hn-mcp-server MCP server?
Model Context Protocol server for HackerNews API access.
How to install io.github.wei/hn-mcp-server
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"hn-mcp-server": {
"command": "npx",
"args": [
"-y",
"hn-mcp-server"
]
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"hn-mcp-server": {
"command": "npx",
"args": [
"-y",
"hn-mcp-server"
]
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"hn-mcp-server": {
"command": "npx",
"args": [
"-y",
"hn-mcp-server"
]
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"hn-mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"hn-mcp-server"
]
}
}
}Claude Code
claude mcp add hn-mcp-server -- npx -y hn-mcp-serverRelated MCP servers
MCP server for querying the official MCP registry.
View repository →