[project]
name = "mcp-ssh-server"
version = "0.1.4"
description = "SSH MCP Server - 基于 Model Context Protocol 的 SSH 连接管理和命令执行服务器"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.10"
authors = [
{name = "liang04", email = "liang04@users.noreply.github.com"}
]
keywords = ["mcp", "ssh", "remote", "command", "sftp", "model-context-protocol"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: System :: Networking",
"Topic :: System :: Systems Administration",
]
dependencies = [
"paramiko>=3.0.0",
"mcp>=1.0.0",
]
[project.urls]
Homepage = "https://github.com/liang04/ssh-mcp"
Repository = "https://github.com/liang04/ssh-mcp"
Issues = "https://github.com/liang04/ssh-mcp/issues"
[project.scripts]
mcp-ssh-server = "ssh_mcp_server:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/ssh_mcp_server"]
[tool.uv]
dev-dependencies = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
]