
Research
/Security News
737 Chrome VPN Extensions Linked to Brand Impersonation and Browser Traffic Redirection
The campaign amassed more than 75,000 installs by targeting Russian-speaking users seeking access to blocked services.
metrillm-mcp
Advanced tools
MCP server for MetriLLM — benchmark local LLMs from any AI coding assistant
MCP (Model Context Protocol) server for MetriLLM — benchmark local LLMs directly from Claude Code, Cursor, Windsurf, Continue.dev, or any MCP-compatible client.
claude mcp add metrillm -- npx metrillm-mcp@latest
Add to claude_desktop_config.json:
{
"mcpServers": {
"metrillm": {
"command": "npx",
"args": ["metrillm-mcp@latest"]
}
}
}
Add to your editor's MCP configuration:
{
"mcpServers": {
"metrillm": {
"command": "npx",
"args": ["metrillm-mcp@latest"]
}
}
}
list_modelsList all locally available LLM models.
| Param | Type | Default | Description |
|---|---|---|---|
runtime | "ollama" | "lm-studio" | "ollama" | Inference runtime |
Example response:
{
"models": [
{ "name": "llama3.2:3b", "size": 2019393189, "parameterSize": "3.2B", "quantization": "Q4_K_M", "family": "llama" }
],
"count": 1
}
run_benchmarkRun a full benchmark (performance + quality) on a local model.
| Param | Type | Default | Description |
|---|---|---|---|
model | string | (required) | Model name (e.g. "llama3.2:3b") |
runtime | "ollama" | "lm-studio" | "ollama" | Inference runtime |
perfOnly | boolean | false | If true, measure performance only (skip quality) |
Example response:
{
"success": true,
"model": "llama3.2:3b",
"verdict": "GOOD",
"globalScore": 65,
"performance": {
"tokensPerSecond": 42.5,
"ttftMs": 120,
"memoryUsedGB": 2.1,
"memoryPercent": 13
},
"interpretation": "This model runs well on your hardware."
}
get_resultsRetrieve previous benchmark results stored locally.
| Param | Type | Default | Description |
|---|---|---|---|
model | string | (optional) | Filter by model name (substring match) |
runtime | "ollama" | "lm-studio" | "ollama" | Inference runtime |
share_resultUpload a result to the public MetriLLM leaderboard.
| Param | Type | Description |
|---|---|---|
resultFile | string | Absolute path to the result JSON file |
Uses official MetriLLM upload defaults out of the box.
Optional overrides for self-hosted/staging deployments:
METRILLM_SUPABASE_URLMETRILLM_SUPABASE_ANON_KEYMETRILLM_PUBLIC_RESULT_BASE_URLThe MCP server is a thin wrapper around the existing MetriLLM CLI logic:
mcp/src/index.ts → MCP entry point (stdio transport)
mcp/src/tools.ts → Tool definitions + calls to CLI modules
↓
../src/core/ → CLI logic reused directly
../src/commands/ → CLI commands (bench, list)
No code duplication — the MCP server imports CLI modules directly.
| Runtime | Status |
|---|---|
| Ollama | Supported |
| LM Studio | Supported |
| MLX | Planned |
| llama.cpp | Planned |
| vLLM | Planned |
The runtime parameter is present on every tool to prepare for multi-runtime support. Unimplemented runtimes return a clear error.
FAQs
MCP server for MetriLLM — benchmark local LLMs from any AI coding assistant
The npm package metrillm-mcp receives a total of 66 weekly downloads. As such, metrillm-mcp popularity was classified as not popular.
We found that metrillm-mcp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
/Security News
The campaign amassed more than 75,000 installs by targeting Russian-speaking users seeking access to blocked services.

Company News
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.

Security News
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.