mcp-www 0.1.1 → 0.1.2

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.
Files changed (2) hide show
  1. package/README.md +5 -5
  2. package/package.json +10 -2
package/README.md CHANGED
@@ -55,7 +55,7 @@ Add to your MCP client config (e.g., `.mcp.json`):
55
55
  - **mcp-www is a standard MCP server** — any MCP-compliant agent can use it with zero new client code. It's just another server in your agent's config.
56
56
  - **Supports the `_mcp` TXT record convention** — records follow a semicolon-delimited format:
57
57
  ```
58
- v=mcp1; src=https://mcp.example.com; public=true; auth=oauth2; version=2024.1
58
+ v=mcp1; src=https://mcp.example.com; auth=oauth2
59
59
  ```
60
60
  - **Works with split-horizon DNS** — enterprise and private networks can publish internal `_mcp` records visible only inside their network, enabling private service discovery without exposing anything to the public internet.
61
61
 
@@ -179,10 +179,10 @@ Feedback, criticism, and alternative approaches are welcome — open an issue or
179
179
 
180
180
  ## Related
181
181
 
182
- - [Model Context Protocol Specification](https://spec.modelcontextprotocol.io)
183
- - [MCP Discussion #2334](https://github.com/modelcontextprotocol/specification/discussions/2334)
184
- - [MCP PR #2127](https://github.com/modelcontextprotocol/specification/pull/2127)
185
- - [MCP SEP #1959](https://github.com/nicobailon/mcp-seps/blob/main/SEP/1959/README.md)
182
+ - [Model Context Protocol Specification](https://modelcontextprotocol.io/specification)
183
+ - [DNS TXT records for organisation-scoped registry discovery](https://github.com/modelcontextprotocol/modelcontextprotocol/discussions/2334) — Discussion #2334
184
+ - [DNS-native MCP discovery: a zero-infrastructure alternative](https://github.com/modelcontextprotocol/modelcontextprotocol/discussions/2368) — Discussion #2368
185
+ - [SEP-2127: MCP Server Cards — HTTP Server Discovery via .well-known](https://github.com/modelcontextprotocol/modelcontextprotocol/pull/2127)
186
186
 
187
187
  ## License
188
188
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcp-www",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Lightweight MCP server for DNS-based agent service discovery over UDP. No registry needed.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -13,6 +13,7 @@
13
13
  ],
14
14
  "scripts": {
15
15
  "build": "tsc",
16
+ "prepublishOnly": "npm run build",
16
17
  "start": "node dist/index.js",
17
18
  "dev": "ts-node src/index.ts"
18
19
  },
@@ -26,8 +27,15 @@
26
27
  ],
27
28
  "author": "kormco",
28
29
  "license": "MIT",
30
+ "repository": {
31
+ "type": "git",
32
+ "url": "https://github.com/kormco/mcp-www.git"
33
+ },
34
+ "engines": {
35
+ "node": ">=18"
36
+ },
29
37
  "dependencies": {
30
- "@modelcontextprotocol/sdk": "^1.0.0"
38
+ "@modelcontextprotocol/sdk": "^1.27.0"
31
39
  },
32
40
  "devDependencies": {
33
41
  "typescript": "^5.4.0",