ai-model-lifecycle-index

Cross-vendor AI model lifecycle: status, sunset dates, and migration targets, source-cited.

Recommended Prompts

retrieve_data
Get details about [item] from ai-model-lifecycle-index
Expected tools: get_model_lifecycle_all
fetch_info
Fetch [information type] using ai-model-lifecycle-index
Expected tools: get_model_lifecycle_all

Rate this Server

One-Click Install

Add this to your `claude_desktop_config.json` file:

{
  "mcpServers": {
    "ai-model-lifecycle-index": {
      "url": "https://lifecycle.oscar-lopez.com/mcp"
    }
  }
}

Remote endpoints

https://lifecycle.oscar-lopez.com/mcpstreamable-http

Tool inventory

Tools (4)

🟢 Read-only🟡 Write🔴 Delete⚪ Unknown
model_lifecycle(model_id)

FREE. Lifecycle of one AI model: status (active/preview/deprecated/retired), release/deprecation/shutdown dates, days until shutdown, recommended migration target, and the official source URL.

Input Schema

{
  "type": "object",
  "properties": {
    "model_id": {
      "type": "string",
      "description": "canonical model id, e.g. 'gpt-4-32k', 'claude-3-opus-20240229', 'gemini-2.0-flash'"
    }
  },
  "required": [
    "model_id"
  ]
}
🟢is_model_live(model_id)

FREE. Fast check of whether an AI model is still callable, plus its sunset date and days remaining. Use before depending on a model at runtime.

Input Schema

{
  "type": "object",
  "properties": {
    "model_id": {
      "type": "string"
    }
  },
  "required": [
    "model_id"
  ]
}
upcoming_deprecations(within_days)

FREE. AI models being shut down within the next N days across OpenAI, Anthropic, Google, and Amazon Bedrock, with migration targets. Default 90 days.

Input Schema

{
  "type": "object",
  "properties": {
    "within_days": {
      "type": "integer",
      "description": "look-ahead window in days (default 90)"
    }
  }
}
🟢get_model_lifecycle_all(provider)

Full cross-vendor lifecycle export (all tracked models). Free during the public preview; metered via x402 when live.

Input Schema

{
  "type": "object",
  "properties": {
    "provider": {
      "type": "string",
      "description": "optional filter",
      "enum": [
        "openai",
        "anthropic",
        "google",
        "aws-bedrock"
      ]
    }
  }
}

Recent observations

verifiedversion not recorded4 tools