-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (30 loc) · 836 Bytes
/
pyproject.toml
File metadata and controls
34 lines (30 loc) · 836 Bytes
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
[project]
name = "iotdb-mcp-server"
packages = [{ include = "src/iotdb_mcp_server" }]
version = "0.1.0"
description = "A Model Context Protocol (MCP) server that enables secure interaction with IoTDB databases. This server allows AI assistants to list tables, read data, and execute SQL queries through a controlled interface, making database exploration and analysis safer and more structured."
readme = "README.md"
license = "Apache-2.0"
license-file="LICENSE"
requires-python = ">=3.12"
dependencies = [
"mcp>=1.0.0",
"apache-iotdb>=2.0.1b0"
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
exclude = [
"venv",
".git",
".gitignore"
]
[tool.uv]
dev-dependencies = [
"pyright",
"black",
"flake8",
]
[project.scripts]
iotdb-mcp-server = "iotdb_mcp_server:main"