[project]
name = "metabase-mcp-server"
version = "0.1.0"
description = "A Metabase MCP (Model Context Protocol) server for integrating Metabase with AI assistants"
readme = "README.md"
requires-python = ">=3.11"
license = {text = "MIT"}
authors = [
{name = "Ranjan Bhagat", email = "ranjan@codewalnut.com"}
]
keywords = ["metabase", "mcp", "model-context-protocol", "ai", "analytics", "dashboard"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Database",
"Topic :: Scientific/Engineering :: Information Analysis",
]
dependencies = [
"aiohttp>=3.8.6",
"yarl>=1.6.3",
"python-dotenv>=1.0.0",
"fastmcp>=2.11.1",
]
[project.urls]
Homepage = "https://github.com/CW-Codewalnut/metabase-mcp-server"
Repository = "https://github.com/CW-Codewalnut/metabase-mcp-server"
Issues = "https://github.com/CW-Codewalnut/metabase-mcp-server/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src"]
[tool.hatch.build.targets.sdist]
include = [
"/src",
"/README.md",
"/LICENSE",
]