mcp-server-hackernews

mcp-server-hackernews

0

This project is a Model Context Protocol server designed to fetch data from Hacker News, providing resources like top stories, best stories, and user information. It enables easy access to Hacker News data for further processing or integration.

MCP Server for Hacker News

A Model Context Protocol (MCP) server for fetching Hacker News data.

Resources

  • top-stories
    • Top stories
    • Returns: an array of story IDs
  • best-stoies
    • Best stories
    • Returns: an array of story IDs
  • new-stories
    • New stories
    • Returns: an array of story IDs
  • story
    • A story
    • Input:
      • id: the ID of the story
    • Returns: a story object
  • user
    • A user
    • Input:
      • id: the ID of the user
    • Returns: a user object

Usage with Claude Desktop

{
  "mcpServers": {
    "hackernews": {
      "command": "npx",
      "args": ["-y", "mcp-server-hackernews"]
    }
  }
}