Skip to main content
ClaudeWave

MCP server for AI model lifecycle data: check whether a model id is deprecated or retiring, and what to migrate to. Public mirror of packages/mcp from the LLMIntel monorepo.

MCP ServersRegistry oficial0 estrellas0 forksTypeScriptMITActualizado today
Install in Claude Code / Claude Desktop
Method: NPX · @llmintel/mcp
Claude Code CLI
claude mcp add llmintel-mcp -- npx -y @llmintel/mcp
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "llmintel-mcp": {
      "command": "npx",
      "args": ["-y", "@llmintel/mcp"],
      "env": {
        "LLMINTEL_BASE_URL": "<llmintel_base_url>"
      }
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
Detected environment variables
LLMINTEL_BASE_URL
Casos de uso

Resumen de MCP Servers

# @llmintel/mcp

An [MCP](https://modelcontextprotocol.io) server that tells your coding agent whether a model id is
safe to use.

LLMs are trained on a snapshot of the world and will confidently write `gpt-4-32k` into your code
long after it stops answering. This server gives the agent a live lookup for whether a model is
deprecated and when it stops working. It returns the replacement too. Answers are normalized across
OpenAI, Anthropic, Azure AI Foundry, AWS Bedrock, Google, and Cohere, and parsed from each
provider's own deprecation pages.

No API key, no signup. The catalog is public.

## Install

Add it to any MCP host. The package runs straight from npm via `npx`.

### Cursor

In `.cursor/mcp.json`:

```json
{
  "mcpServers": {
    "llmintel": {
      "command": "npx",
      "args": ["-y", "@llmintel/mcp"]
    }
  }
}
```

### Claude Code

```bash
claude mcp add llmintel -- npx -y @llmintel/mcp
```

### Claude Desktop

Same shape as the Cursor block above, in `claude_desktop_config.json`.

## Tools

| Tool | Returns |
| --- | --- |
| `check_model` | Whether one model id is safe to use: lifecycle state, the retirement deadline in days, the replacement, and the source link. |
| `list_retiring_models` | What breaks in the next 90 days. Past-due models are listed first, then upcoming ones soonest-first. |
| `suggest_replacement` | The provider's own recommendation for what to move to. Falls back to same-provider active models when none was published. |
| `search_models` | Catalog search filtered by provider and lifecycle state. |
| `recent_lifecycle_changes` | The change feed across all providers, for questions like "what was deprecated this month". |

### Example

> **You:** Before we ship this, check the model ids in `src/agents/`.

The agent calls `check_model` for each one and gets back:

```
DO NOT USE — this model is retired; API calls to it fail.

"claude-sonnet-4-20250514" resolves to the tracked model anthropic/claude-sonnet-4-20250514.
Model: claude-sonnet-4-20250514 (anthropic/claude-sonnet-4-20250514)
Provider: anthropic
Lifecycle state: retired — retired; calls fail
Deprecated: 2026-04-14 (105 days ago)
Retirement: 2026-06-15 (43 days ago)

The provider has not named a replacement. Use suggest_replacement for options.
Pricing/limits: $3/1M in · $15/1M out

Source: https://docs.anthropic.com/en/docs/about-claude/model-deprecations
Provider's own term: "Retired"
```

Deadlines are always given in days, because a model cannot reliably judge whether `2026-07-30` is
soon.

## Design notes

A failed lookup is never a safety verdict. If the catalog is unreachable, the tool returns an MCP
error and says so. An agent that read a network failure as "no deprecation found" would happily ship
a retired model id. A model that simply isn't tracked gets the same treatment: it returns "not in the
catalog, verify with the provider", never "OK".

Pass whatever string is literally in the code (`gpt-4o`, `anthropic/claude-opus-4-1`, `azure/gpt-4o`)
and it resolves to the canonical tracked model.

When the provider's own deprecation notice names a successor, that is what you get. Otherwise the
fallback list of same-provider active models is labelled as candidates to evaluate, so an agent can
tell the two apart.

Anything past its retirement date is broken now, so it gets its own heading instead of sitting in
"retiring soon".

## Configuration

Both variables are optional.

| Variable | Default | Purpose |
| --- | --- | --- |
| `LLMINTEL_API_KEY` | none | Raises the rate-limit budget. The catalog itself is public, so you do not need this. |
| `LLMINTEL_BASE_URL` | `https://llmintel.ai` | Point at a self-hosted or staging catalog. |

Anonymous callers get 30 requests/minute per IP, enough for interactive agent use.

## Data provenance

Every record links to the provider page it was parsed from and preserves the provider's verbatim
lifecycle term (`sourceTerm`), so a normalization decision is always auditable. Changes go through a
human verification queue before publication. Collector freshness is public at
[`/v1/status`](https://llmintel.ai/v1/status).

The same data is available as a plain REST API, also without a key. See
[llmintel.ai/docs](https://llmintel.ai/docs).

## Development

```bash
pnpm --filter @llmintel/mcp build
pnpm exec vitest run packages/mcp        # protocol-level tests against a fake catalog

# Drive the built binary against a live catalog
pnpm --filter @llmintel/mcp smoke
LLMINTEL_BASE_URL=http://localhost:3000 pnpm --filter @llmintel/mcp smoke
```

## License

MIT © LLMIntel

Lo que la gente pregunta sobre llmintel-mcp

¿Qué es hivemindunit/llmintel-mcp?

+

hivemindunit/llmintel-mcp es mcp servers para el ecosistema de Claude AI. MCP server for AI model lifecycle data: check whether a model id is deprecated or retiring, and what to migrate to. Public mirror of packages/mcp from the LLMIntel monorepo. Tiene 0 estrellas en GitHub y se actualizó por última vez today.

¿Cómo se instala llmintel-mcp?

+

Puedes instalar llmintel-mcp clonando el repositorio (https://github.com/hivemindunit/llmintel-mcp) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.

¿Es seguro usar hivemindunit/llmintel-mcp?

+

hivemindunit/llmintel-mcp aún no ha sido auditado por nuestro agente de seguridad. Revisa el repositorio original en GitHub antes de usarlo en producción.

¿Quién mantiene hivemindunit/llmintel-mcp?

+

hivemindunit/llmintel-mcp es mantenido por hivemindunit. La última actividad registrada en GitHub es de today, con 0 issues abiertos.

¿Hay alternativas a llmintel-mcp?

+

Sí. En ClaudeWave puedes explorar mcp servers similares en /categories/mcp, ordenados por popularidad o actividad reciente.

Despliega llmintel-mcp en tu cloud

Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.

¿Mantienes este repo? Añade un badge a tu README

Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.

Featured on ClaudeWave: hivemindunit/llmintel-mcp
[![Featured on ClaudeWave](https://claudewave.com/api/badge/hivemindunit-llmintel-mcp)](https://claudewave.com/repo/hivemindunit-llmintel-mcp)
<a href="https://claudewave.com/repo/hivemindunit-llmintel-mcp"><img src="https://claudewave.com/api/badge/hivemindunit-llmintel-mcp" alt="Featured on ClaudeWave: hivemindunit/llmintel-mcp" width="320" height="64" /></a>

Más MCP Servers

Alternativas a llmintel-mcp