-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (34 loc) · 1.11 KB
/
pyproject.toml
File metadata and controls
39 lines (34 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[project]
name = "vista-data-mcp"
version = "0.1.0"
description = "Read-only ClickHouse + Elasticsearch MCP server for Percona VISTA — product telemetry and download analytics."
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.10"
authors = [
{ name = "Percona Lab", email = "info@percona.com" },
]
keywords = ["mcp", "clickhouse", "elasticsearch", "telemetry", "analytics", "percona", "vista"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Topic :: Database",
]
dependencies = [
"mcp[cli]>=1.2.0",
"clickhouse-connect>=0.8.0",
"elasticsearch>=8.0.0,<9.0.0",
]
[project.urls]
Homepage = "https://github.com/Percona-Lab/vista-data-mcp"
Repository = "https://github.com/Percona-Lab/vista-data-mcp"
Issues = "https://github.com/Percona-Lab/vista-data-mcp/issues"
[project.scripts]
vista-data-mcp = "mcp_server:mcp.run"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["."]