[project]
name = "mcp-server-dune"
version = "0.1.0"
description = "MCP server for Dune Analytics blockchain data integration"
readme = "README.md"
requires-python = ">=3.11"
license = {text = "MIT"}
authors = [
{name = "MCP Server Dune Contributors"}
]
keywords = ["mcp", "dune", "analytics", "blockchain", "ai"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"fastmcp>=2.0.0",
"dune-client>=1.10.0",
"pydantic>=2.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
]
[project.scripts]
mcp-server-dune = "mcp_server_dune:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/mcp_server_dune"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]