@cyanheads/hn-mcp-server 0.1.2 → 0.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CLAUDE.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # Agent Protocol
2
2
 
3
3
  **Server:** hn-mcp-server
4
- **Version:** 0.1.2
4
+ **Version:** 0.1.4
5
5
  **Framework:** [@cyanheads/mcp-ts-core](https://www.npmjs.com/package/@cyanheads/mcp-ts-core)
6
6
 
7
7
  > **Read the framework docs first:** `node_modules/@cyanheads/mcp-ts-core/CLAUDE.md` contains the full API reference — builders, Context, error codes, exports, patterns. This file covers server-specific conventions only.
package/README.md CHANGED
@@ -1,11 +1,19 @@
1
1
  <div align="center">
2
2
  <h1>@cyanheads/hn-mcp-server</h1>
3
- <p><b>MCP server for Hacker News. Feeds, threaded discussions, user profiles, and full-text search via the HN Firebase and Algolia APIs. Runs over stdio or HTTP.</b></p>
3
+ <p><b>MCP server for Hacker News. Feeds, threaded discussions, user profiles, and full-text search via the HN Firebase and Algolia APIs. Runs over stdio or HTTP.</b>
4
+ <div>4 Tools</div>
5
+ </p>
4
6
  </div>
5
7
 
6
8
  <div align="center">
7
9
 
8
- [![Version](https://img.shields.io/badge/Version-0.1.2-blue.svg?style=flat-square)](./CHANGELOG.md) [![License](https://img.shields.io/badge/License-Apache%202.0-orange.svg?style=flat-square)](./LICENSE) [![TypeScript](https://img.shields.io/badge/TypeScript-^5.9.3-3178C6.svg?style=flat-square)](https://www.typescriptlang.org/) [![Bun](https://img.shields.io/badge/Bun->=1.2.0-f9f1e1.svg?style=flat-square)](https://bun.sh/)
10
+ [![npm](https://img.shields.io/npm/v/@cyanheads/hn-mcp-server?style=flat-square&logo=npm&logoColor=white)](https://www.npmjs.com/package/@cyanheads/hn-mcp-server) [![Version](https://img.shields.io/badge/Version-0.1.4-blue.svg?style=flat-square)](./CHANGELOG.md) [![Framework](https://img.shields.io/badge/Built%20on-@cyanheads/mcp--ts--core-259?style=flat-square)](https://www.npmjs.com/package/@cyanheads/mcp-ts-core) [![MCP SDK](https://img.shields.io/badge/MCP%20SDK-^1.27.1-green.svg?style=flat-square)](https://modelcontextprotocol.io/) [![License](https://img.shields.io/badge/License-Apache%202.0-orange.svg?style=flat-square)](./LICENSE) [![TypeScript](https://img.shields.io/badge/TypeScript-^6.0.2-3178C6.svg?style=flat-square)](https://www.typescriptlang.org/) [![Bun](https://img.shields.io/badge/Bun->=1.2.0-f9f1e1.svg?style=flat-square)](https://bun.sh/)
11
+
12
+ </div>
13
+
14
+ <div align="center">
15
+
16
+ **Public Hosted Server:** [https://hn.caseyjhand.com/mcp](https://hn.caseyjhand.com/mcp)
9
17
 
10
18
  </div>
11
19
 
@@ -79,7 +87,22 @@ HN-specific:
79
87
 
80
88
  ## Getting Started
81
89
 
82
- ### MCP Client Config
90
+ ### Public Hosted Instance
91
+
92
+ A public instance is available at `https://hn.caseyjhand.com/mcp` — no installation required. Point any MCP client at it via Streamable HTTP:
93
+
94
+ ```json
95
+ {
96
+ "mcpServers": {
97
+ "hn": {
98
+ "type": "streamable-http",
99
+ "url": "https://hn.caseyjhand.com/mcp"
100
+ }
101
+ }
102
+ }
103
+ ```
104
+
105
+ ### Self-Hosted / Local
83
106
 
84
107
  Add to your MCP client config (e.g., `claude_desktop_config.json`):
85
108
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cyanheads/hn-mcp-server",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "description": "MCP server for Hacker News — feeds, threads, users, and search via Firebase and Algolia APIs",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -52,7 +52,7 @@
52
52
  "access": "public"
53
53
  },
54
54
  "dependencies": {
55
- "@cyanheads/mcp-ts-core": "^0.1.24",
55
+ "@cyanheads/mcp-ts-core": "^0.1.28",
56
56
  "@hono/otel": "^1.1.1",
57
57
  "pino-pretty": "^13.1.3"
58
58
  },
@@ -62,7 +62,7 @@
62
62
  "depcheck": "^1.4.7",
63
63
  "ignore": "^7.0.5",
64
64
  "tsc-alias": "^1.8.16",
65
- "typescript": "^5.9.3",
66
- "vitest": "^4.1.0"
65
+ "typescript": "^6.0.2",
66
+ "vitest": "^4.1.1"
67
67
  }
68
68
  }
package/server.json CHANGED
@@ -6,14 +6,20 @@
6
6
  "url": "https://github.com/cyanheads/hn-mcp-server",
7
7
  "source": "github"
8
8
  },
9
- "version": "0.1.2",
9
+ "version": "0.1.4",
10
+ "remotes": [
11
+ {
12
+ "type": "streamable-http",
13
+ "url": "https://hn.caseyjhand.com/mcp"
14
+ }
15
+ ],
10
16
  "packages": [
11
17
  {
12
18
  "registryType": "npm",
13
19
  "registryBaseUrl": "https://registry.npmjs.org",
14
20
  "identifier": "@cyanheads/hn-mcp-server",
15
21
  "runtimeHint": "bun",
16
- "version": "0.1.2",
22
+ "version": "0.1.4",
17
23
  "packageArguments": [
18
24
  {
19
25
  "type": "positional",
@@ -49,7 +55,7 @@
49
55
  "registryBaseUrl": "https://registry.npmjs.org",
50
56
  "identifier": "@cyanheads/hn-mcp-server",
51
57
  "runtimeHint": "bun",
52
- "version": "0.1.2",
58
+ "version": "0.1.4",
53
59
  "packageArguments": [
54
60
  {
55
61
  "type": "positional",