[project]
name = "clink-mcp-server"
version = "0.1.1"
description = "MCP server for Clink - powering agentic coordination"
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [
{ name = "Voxos.ai", email = "team@voxos.ai" }
]
keywords = [
"mcp",
"claude",
"clink",
"voxos",
"messaging",
"claude-code",
"ai-agents",
"collaboration"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"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",
]
dependencies = [
"mcp>=1.2.0",
"httpx>=0.25.0",
"pydantic>=2.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
]
[project.scripts]
clink-mcp = "clink_mcp_server:main"
clink-mcp-server = "clink_mcp_server:main"
[project.urls]
Homepage = "https://clink.voxos.ai"
Documentation = "https://docs.clink.voxos.ai"
Repository = "https://github.com/Voxos-ai-Inc/clink-mcp-server-python"
Issues = "https://github.com/Voxos-ai-Inc/clink-mcp-server-python/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/clink_mcp_server"]
[tool.hatch.build.targets.sdist]
include = [
"/src",
"/README.md",
"/LICENSE",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]