plugins marketplace
← All plugins

interrank

v0.3.5

Snapshot-backed model/benchmark ranking MCP server for AgMoDB

Claude Code1 MCP serverstdio

by mistakeknotMIT0updated 1 day ago

Source

git clone https://github.com/mistakeknot/interrank

Clone the source, then follow the repository's marketplace instructions for your runtime. The repository root is the plugin root.

Layout

interrank/
├── .claude-plugin/plugin.json
└── .mcp.json

MCP servers1

interrankstdio
command
bash
args
${CLAUDE_PLUGIN_ROOT}/scripts/launch-interrank.sh
env.AGMODB_SNAPSHOT_REFRESH_MS
300000

MCP configuration uses runtime-provided plugin path placeholders such as ${PLUGIN_ROOT} or ${CLAUDE_PLUGIN_ROOT}. Review the manifest for the runtime-specific expansion rules.

Manifests1

.claude-plugin/plugin.json
{
  "name": "interrank",
  "version": "0.3.5",
  "description": "Snapshot-backed model/benchmark ranking MCP server for AgMoDB",
  "author": {
    "name": "mistakeknot"
  },
  "repository": "https://github.com/mistakeknot/interrank",
  "license": "MIT",
  "keywords": [
    "mcp",
    "benchmarks",
    "leaderboard",
    "agmodb",
    "snapshot"
  ],
  "mcpServers": {
    "interrank": {
      "type": "stdio",
      "command": "bash",
      "args": [
        "${CLAUDE_PLUGIN_ROOT}/scripts/launch-interrank.sh"
      ],
      "env": {
        "AGMODB_SNAPSHOT_REFRESH_MS": "300000"
      }
    }
  }
}