AgentHubAgentHub

modelwatch

MCP ServerMCP Registry官方收录

io.github.bch1212/modelwatch · v0.1.1

Continuous behavioral drift monitoring for LLM apps — catches silent provider model updates.

概览

modelwatch 是一个MCP Server,收录自 官方 MCP Registry。支持 stdio 传输。本页提供 Cursor、Claude Code 等客户端的安装配置片段。

安装

选择你的平台查看安装方式

{
  "mcpServers": {
    "modelwatch": {
      "command": "npx",
      "args": [
        "-y",
        "modelwatch-mcp"
      ],
      "env": {
        "MODELWATCH_API_KEY": "<MODELWATCH_API_KEY>"
      }
    }
  }
}

环境变量

MODELWATCH_API_KEY必填secret

API key from https://modelwatch.app (free tier: 5 specs, 500 runs/mo).

MODELWATCH_API_BASE可选

Override the API base URL for self-hosted deployments.

相关资源

统一 Manifest

{
  "id": "io.github.bch1212/modelwatch",
  "type": "mcp-server",
  "version": "0.1.1",
  "displayName": "modelwatch",
  "description": "Continuous behavioral drift monitoring for LLM apps — catches silent provider model updates.",
  "repository": {
    "url": "https://github.com/bch1212/modelwatch",
    "source": "github",
    "subfolder": "mcp-server"
  },
  "homepage": "https://modelwatch.app",
  "distribution": {
    "packages": [
      {
        "registryType": "npm",
        "identifier": "modelwatch-mcp",
        "version": "0.1.1",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "MODELWATCH_API_KEY",
            "description": "API key from https://modelwatch.app (free tier: 5 specs, 500 runs/mo).",
            "isRequired": true,
            "isSecret": true
          },
          {
            "name": "MODELWATCH_API_BASE",
            "description": "Override the API base URL for self-hosted deployments."
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.bch1212/modelwatch",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.bch1212%2Fmodelwatch/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
modelwatch — MCP Server 安装与配置 · AgentHub