Weights & Biases MCP

AIstdio
Repository

The official Weights & Biases MCP server for W&B Models and Weave, letting AI assistants query and analyze experiment tracking data in natural language. Agents can look up runs and their metrics, compare sweeps, inspect registered model artifacts, and dig into Weave traces to debug LLM application behavior.

Connect

Add this configuration to .claude/mcp.json

{
  "mcpServers": {
    "wandb": {
      "command": "npx",
      "args": [],
      "env": {
        "WANDB_API_KEY": "<YOUR_WANDB_API_KEY>"
      }
    }
  }
}

Tools (2)

query_wandb_runs

Query W&B runs in a project and return their configs and metrics.

{
  "type": "object",
  "required": [
    "entity",
    "project"
  ],
  "properties": {
    "entity": {
      "type": "string",
      "description": "W&B entity (user or team)"
    },
    "filters": {
      "type": "object",
      "description": "Optional MongoDB-style filter on run fields"
    },
    "project": {
      "type": "string",
      "description": "Project name"
    }
  }
}

query_weave_traces

Query Weave traces to inspect LLM calls, inputs, outputs, and evaluation scores.

{
  "type": "object",
  "required": [
    "project"
  ],
  "properties": {
    "limit": {
      "type": "integer",
      "description": "Maximum number of traces to return"
    },
    "project": {
      "type": "string",
      "description": "Weave project identifier"
    }
  }
}

Resources

This server does not expose any resources.

Prompts

This server does not expose any prompts.

Server information

Author
Weights & Biases (@wandb)
Repository
https://github.com/wandb/wandb-mcp-server
License
MIT
Stars
0
Last updated
August 3, 2026