@mrfentmen/endoflife-mcp 1.0.0

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/README.md ADDED
@@ -0,0 +1,21 @@
1
+ # End of Life MCP
2
+
3
+ Check software release and end of life dates from the public endoflife.date API. No key required.
4
+
5
+ This file is self contained. It reads public data only and never writes to the machine. All output is bounded and honest about what could not be fetched.
6
+
7
+ ## Tools
8
+
9
+
10
+ * `product_cycles` Cycles for a product.
11
+ * `all_products` All tracked products.
12
+
13
+ ## Usage
14
+
15
+ ```bash
16
+ npm install
17
+ npm run build
18
+ node dist/index.js
19
+ ```
20
+
21
+ Data comes from the public endoflife.date API.
package/dist/api.js ADDED
@@ -0,0 +1,31 @@
1
+ const BASE = "https://endoflife.date/api";
2
+ const UA = "mrfentmen-endoflife-mcp/1.0 (https://github.com/mrfentmen)";
3
+ export class EolError extends Error {
4
+ }
5
+ async function get(url) {
6
+ const res = await fetch(url, { headers: { "User-Agent": UA, Accept: "application/json" }, signal: AbortSignal.timeout(20000) });
7
+ if (res.status === 429)
8
+ throw new EolError("endoflife.date rate limit hit, wait and retry");
9
+ if (!res.ok)
10
+ throw new EolError(`endoflife.date error ${res.status}`);
11
+ return (await res.json());
12
+ }
13
+ export async function productCycles(args) {
14
+ const product = (args.product ?? "").trim().toLowerCase();
15
+ if (!product)
16
+ throw new EolError("Provide a product name like nodejs or python");
17
+ const d = await get(`${BASE}/${encodeURIComponent(product)}.json`);
18
+ if (!d?.length)
19
+ return `No data for ${product}`;
20
+ return `Release cycles for ${product}:\n\n${d.map((c) => {
21
+ const eol = c?.eol === true ? "no longer supported" : c?.eol ?? "n/a";
22
+ const lts = c?.lts === true ? "yes" : typeof c?.lts === "string" ? c.lts : "no";
23
+ return `${c.cycle} | released ${c.releaseDate ?? "?"} | latest ${c.latest ?? "?"} | EOL ${eol} | LTS ${lts}`;
24
+ }).join("\n")}`;
25
+ }
26
+ export async function allProducts(args) {
27
+ const d = await get(`${BASE}/all.json`);
28
+ if (!d?.length)
29
+ return "No products";
30
+ return `Tracked products (${d.length}):\n${d.slice(0, 60).join(", ")}${d.length > 60 ? ", ..." : ""}`;
31
+ }
package/dist/index.js ADDED
@@ -0,0 +1,4 @@
1
+ import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
2
+ import { createServer } from "./server.js";
3
+ const main = async () => { const server = createServer(); await server.connect(new StdioServerTransport()); };
4
+ main().catch((error) => { console.error("Fatal error:", error); process.exit(1); });
package/dist/server.js ADDED
@@ -0,0 +1,38 @@
1
+ import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
2
+ import { z } from "zod";
3
+ import { allProducts } from "./api.js";
4
+ import { productCycles } from "./api.js";
5
+ const text = (value) => ({ content: [{ type: "text", text: value }] });
6
+ const textError = (t) => ({ content: [{ type: "text", text: t }], isError: true });
7
+ const READ_ONLY = { readOnlyHint: true, openWorldHint: true };
8
+ const error = (e) => `Error: ${e instanceof Error ? e.message : String(e)}`;
9
+ export function createServer() {
10
+ const server = new McpServer({ name: "endoflife-mcp", version: "1.0.0" });
11
+ server.registerTool("product_cycles", {
12
+ title: "Product cycles",
13
+ description: "Release and EOL dates for a product.",
14
+ inputSchema: z.object({ product: z.string().describe("Product name like nodejs or python.") }),
15
+ annotations: READ_ONLY,
16
+ }, async (args) => {
17
+ try {
18
+ return text(await productCycles(args));
19
+ }
20
+ catch (e) {
21
+ return textError(error(e));
22
+ }
23
+ });
24
+ server.registerTool("all_products", {
25
+ title: "All products",
26
+ description: "List all tracked products.",
27
+ inputSchema: z.object({}),
28
+ annotations: READ_ONLY,
29
+ }, async (args) => {
30
+ try {
31
+ return text(await allProducts(args));
32
+ }
33
+ catch (e) {
34
+ return textError(error(e));
35
+ }
36
+ });
37
+ return server;
38
+ }
package/package.json ADDED
@@ -0,0 +1,48 @@
1
+ {
2
+ "version": "1.0.0",
3
+ "type": "module",
4
+ "repository": {
5
+ "type": "git",
6
+ "url": "https://github.com/mrfentmen/endoflife-mcp.git"
7
+ },
8
+ "bin": {
9
+ "endoflife-mcp": "./dist/index.js"
10
+ },
11
+ "main": "./dist/index.js",
12
+ "files": [
13
+ "dist",
14
+ "server.json",
15
+ "README.md"
16
+ ],
17
+ "scripts": {
18
+ "build": "tsc -p tsconfig.json",
19
+ "start": "node dist/index.js",
20
+ "dev": "npm run build && node dist/index.js"
21
+ },
22
+ "license": "MIT",
23
+ "dependencies": {
24
+ "@modelcontextprotocol/sdk": "^1.0.4",
25
+ "zod": "^3.23.8",
26
+ "jose": "^5.9.0",
27
+ "iban": "^0.0.14",
28
+ "sql-formatter": "^15.4.0",
29
+ "docx": "^9.0.0"
30
+ },
31
+ "devDependencies": {
32
+ "@types/node": "^22.0.0",
33
+ "typescript": "^5.6.0"
34
+ },
35
+ "name": "@mrfentmen/endoflife-mcp",
36
+ "description": "Check software end of life dates from endoflife.date. No key required.",
37
+ "mcpName": "io.github.mrfentmen/endoflife-mcp",
38
+ "keywords": [
39
+ "mcp",
40
+ "eol",
41
+ "versions",
42
+ "support",
43
+ "devops"
44
+ ],
45
+ "engines": {
46
+ "node": ">=20"
47
+ }
48
+ }
package/server.json ADDED
@@ -0,0 +1,20 @@
1
+ {
2
+ "$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
3
+ "name": "io.github.mrfentmen/endoflife-mcp",
4
+ "description": "Check software end of life dates from endoflife.date. No key required.",
5
+ "repository": {
6
+ "url": "https://github.com/mrfentmen/endoflife-mcp",
7
+ "source": "github"
8
+ },
9
+ "version": "1.0.0",
10
+ "packages": [
11
+ {
12
+ "registryType": "npm",
13
+ "identifier": "@mrfentmen/endoflife-mcp",
14
+ "version": "1.0.0",
15
+ "transport": {
16
+ "type": "stdio"
17
+ }
18
+ }
19
+ ]
20
+ }