Token导航 LogoToken导航TokenDH.com
MCP Server Eol logo
运维云端stdio官方级别未说明来源级核验

MCP Server Eol

MCP Server

一个提供软件产品生命周期和版本支持状态查询的API服务,支持产品发现、版本信息查询和支持状态检查。

工具数

5

提示词数

0

GitHub Stars

1

资源数

0
版本管理PythonAPI集成

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

作者 / 组织

Coolomina

提供方

Coolomina

最后核验

2026/5/17 20:21

快速接入

先看主来源和安装命令,再打开仓库或文档;下面只保留这个条目的关键接入事实。

命令预览

pip install --user pdm

详细介绍

API endofife.date的MCP服务器

一种现代的模型上下文协议(MCP)服务器,提供对endoflife.date API的访问,以检查各种软件产品的寿命终止日期和支持状态。内置强大的类型、全面的测试和自动化的CI/CD。

✨ 特性

  • 🔍 产品发现:获取所有跟踪产品的列表并按名称搜索
  • 📋 版本信息:获取特定产品的详细版本/周期信息
  • 支持状态:检查是否仍支持特定版本
  • 🐳 Docker就绪:具有自动构建功能的多架构Docker镜像

🚀 快速开始

MCP客户端配置

将此添加到MCP客户端配置中:

{
  "servers": {
    "endoflife": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm", 
        "ghcr.io/coolomina/mcp-server-eol:latest"
      ]
    }
  }
}

使用PDM(开发)

对于当地发展:

{
  "servers": {
    "endoflife": {
      "command": "pdm",
      "args": [
        "run",
        "python",
        "-m", 
        "mcp_server_eol.server"
      ],
      "cwd": "/path/to/mcp-server-eol"
    }
  }
}

💬 有用提示

以下是一些有用的提示,以充分利用此MCP服务器:

"Generate a report of end-of-life dates for this repository languages"
"What programming languages and frameworks are tracked by endoflife.date?"
"Show me all the Python versions and their support status"
"Check if any of these technologies are approaching end-of-life: Python 3.9, Node.js 16, Ubuntu 20.04"
"When does support end for Node.js 18 and what should I upgrade to?"
"Which Ubuntu LTS versions are still supported?"
"Compare the support timelines of Node.js 18 vs 20 vs 22"
"What versions of PostgreSQL are still receiving full support vs security-only?"
"Show me products that will reach end-of-life in the next 6 months"
"Search for all products related to 'docker' and show their support status"

使用PDM(开发)

对于开发或自定义设置,请使用PDM:

# Install PDM if needed
pip install --user pdm

# Clone and setup
git clone https://github.com/Coolomina/mcp-server-eol.git
cd mcp-server-eol
chmod +x setup.sh && ./setup.sh

# Run the server
pdm run python -m mcp_server_eol.server

🛠️ 可用工具

服务器提供以下MCP工具用于查询寿命终止信息:

  • eol_get_all_products -获取endoflife.date跟踪的所有产品列表
  • eol_get_product_versions -获取特定产品的所有版本/周期
  • eol_get_cycle_details -获取特定产品周期的详细信息
  • eol_search_products -按名称搜索产品(不区分大小写)
  • eol_check_support_status -检查特定产品版本是否仍受支持

🧪 测试

该项目包括一个全面的、时间感知的测试套件:

# Quick smoke test (recommended for development)
make test-quick

# Full comprehensive test suite with API validation
make test-all

# Test specific components
python tests/test_api_client.py      # API client tests
python tests/test_comprehensive.py   # End-to-end tests  
python tests/test_temporal.py        # Time-sensitive tests

备注:测试旨在具有时间意识,并将通过动态检查当前状态而不是使用硬编码的期望值,在产品达到生命周期末期时继续工作。

🐳 码头工人

多架构支持

Docker镜像是为多种架构自动构建的:

  • linux/amd64 (英特尔/AMD x64)
  • linux/arm64 (苹果硅、ARM服务器)

可用标签

  • latest -最新稳定版本
  • main -主分支机构的最新承诺

在当地建设

# Build local image
make docker-build

# Run locally built image
make docker-run

🚀 发展

开发设置

# Install development dependencies
pdm install -G dev

# Run tests
make test

# Format code
make format

# Type checking
make lint

💡 示例用法

# Query all available products
eol_get_all_products()

# Get all Node.js versions
eol_get_product_versions(product="nodejs")

# Get detailed info for a specific version
eol_get_cycle_details(product="python", cycle="3.11")

# Check if Python 3.8 is still supported
eol_check_support_status(product="python", version="3.8")

# Search for products containing "ubuntu"
eol_search_products(query="ubuntu")

真实世界的例子

# Check if your Python version is still supported
eol_check_support_status(product="python", version="3.11")
# Returns: {"supported": true, "eol_date": "2027-10-31"}

# Find when Ubuntu 22.04 reaches end-of-life
eol_get_cycle_details(product="ubuntu", cycle="22.04")
# Returns detailed timeline including support phases

# See all available Node.js versions
eol_get_product_versions(product="nodejs") 
# Returns list of all Node.js releases with support status

🤝 贡献

  1. 分叉存储库
  2. 创建要素分支: git checkout -b feature/amazing-feature
  3. 通过测试进行更改: make test
  4. 提交您的更改: git commit -m 'Add amazing feature'
  5. 推到分支: git push origin feature/amazing-feature
  6. 打开拉取请求

🔗 链接

  • 仓库: https://github.com/Coolomina/mcp-server-eol
  • Docker镜像: https://github.com/Coolomina/mcp-server-eol/pkgs/container/mcp-server-eol
  • API日期: https://endoflife.date/docs/api
  • 模型上下文协议: https://modelcontextprotocol.io

目录标签

目录标签

版本管理PythonAPI集成软件生命周期本地部署API服务支持状态查询Docker支持

接入字段

传输方式(transport,传输协议)

stdio

鉴权方式(authType,认证方式)

none

工具数量(toolCount,工具数)

5

资源数量(resourceCount,资源数)

0

提示词数量(promptCount,提示词数)

0

权限和风险

stdionone部署方式未说明

接入前请确认传输方式、认证方式和部署位置,并根据实际工具能力限制访问范围。

安装前确认

不要直接授予不必要的文件、网络或账号权限;先核对安装命令和配置内容。

来源信息

继续浏览同类 MCP