# Hacker News Jobs Feed Extractor

**Use case:** 

Extract Who is Hiring and Hacker News job posts with titles, companies, URLs, authors, timestamps, scores, and discussion links.

## Input

```json
{
  "tool": "get_jobs",
  "query": "AI agents",
  "maxResults": 50,
  "sortBy": "relevance"
}
```

## Output

```json
{
  "type": {
    "label": "Type",
    "format": "text"
  },
  "objectID": {
    "label": "ID",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "points": {
    "label": "Points",
    "format": "number"
  },
  "author": {
    "label": "Author",
    "format": "text"
  },
  "num_comments": {
    "label": "Comments",
    "format": "number"
  },
  "created_at": {
    "label": "Created",
    "format": "text"
  },
  "text": {
    "label": "Text/Body",
    "format": "text"
  },
  "parent_id": {
    "label": "Parent ID",
    "format": "text"
  },
  "story_id": {
    "label": "Story ID",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Hacker News MCP Server](https://apify.com/automation-lab/hackernews-mcp-server) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/hackernews-mcp-server) to learn more, explore other use cases, and run it yourself.