pyproject.toml•1.43 kB
[project]
name = "protocols-io-mcp"
version = "1.0.1"
authors = [
{ name="Hao-Quan Liu", email="contact@haoquan.me" }
]
description = "An MCP server that enables MCP clients like Claude Desktop to interact with data from protocols.io."
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"click>=8.2.1",
"fastmcp>=2.11.1",
"httpx>=0.28.1",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
]
license = "MIT"
license-files = ["LICENSE"]
[project.urls]
Homepage = "https://github.com/hqn21/protocols-io-mcp-server"
Issues = "https://github.com/hqn21/protocols-io-mcp-server/issues"
[project.scripts]
protocols-io-mcp = "protocols_io_mcp.__main__:main"
[project.optional-dependencies]
dev = [
"pytest>=8.4.1",
"pytest-asyncio>=1.1.0",
"pytest-mock>=3.14.1",
"python-dotenv>=1.1.1",
"build>=1.3.0",
"twine>=6.1.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/protocols_io_mcp"]