Metabase MCP Server

Databasehttp-streaming
Repositorio

Metabase's built-in MCP server that lets AI clients connect directly to a Metabase instance, scoped to the connecting user's permissions. Enables agents to discover databases and models, run queries, and retrieve results and dashboards so teams can ask questions of their business intelligence data in natural language.

Conectar

Añade esta configuración a .claude/mcp.json

{
  "mcpServers": {
    "metabase": {
      "url": "https://github.com/metabase/metabase",
      "env": {
        "METABASE_URL": "<YOUR_METABASE_URL>",
        "METABASE_API_KEY": "<YOUR_METABASE_API_KEY>"
      }
    }
  }
}

Herramientas (2)

list_databases

List the databases connected to the Metabase instance that the user can access.

{
  "type": "object",
  "properties": {}
}

execute_query

Run a query against a connected database and return the results.

{
  "type": "object",
  "required": [
    "database_id",
    "query"
  ],
  "properties": {
    "query": {
      "type": "string",
      "description": "SQL query to execute"
    },
    "database_id": {
      "type": "integer",
      "description": "ID of the database to query"
    }
  }
}

Recursos

Este servidor no expone ningún recurso.

Prompts

Este servidor no expone ningún prompt.

Información del servidor

Autor
Metabase (@metabase)
Repositorio
https://github.com/metabase/metabase
Estrellas
0
Última actualización
12 de julio de 2026