We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ocean-zhc/seatunnel-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "seatunnel-mcp"
version = "0.1.0"
description = "A Model Context Protocol (MCP) server for interacting with SeaTunnel through LLM interfaces"
readme = "README.md"
requires-python = ">=3.12"
license = {text = "Apache License"}
authors = [
{name = "SeaTunnel MCP Team"}
]
dependencies = [
"fastapi>=0.95.0",
"uvicorn>=0.21.1",
"pydantic>=2.0.0",
"httpx>=0.24.0",
"python-dotenv>=1.0.0",
"requests>=2.28.2",
"mcp>=0.1.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"black>=23.1.0",
"isort>=5.12.0",
"mypy>=1.0.1",
"flake8>=6.0.0",
"pytest-cov>=4.1.0",
"pytest-asyncio>=0.21.0",
"build>=1.0.3",
"twine>=4.0.2",
"pre-commit>=3.3.2",
]
[project.scripts]
seatunnel-mcp = "src.seatunnel_mcp.cli:main"
[tool.setuptools]
packages = ["src.seatunnel_mcp"]
[tool.black]
line-length = 100
target-version = ["py39"]
[tool.isort]
profile = "black"
line_length = 100
[tool.mypy]
python_version = "3.12"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
check_untyped_defs = true
disallow_untyped_decorators = false
no_implicit_optional = true
strict_optional = true
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"
python_functions = "test_*"