[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "card_magic_mcp"
version = "1.0.9"
description = "A Model Context Protocol (MCP) server that implements the Chico & Dico card magic trick."
readme = "README.md"
keywords = [
"poker",
"magic"
]
license = { text = "Apache-2.0" }
authors = [
{ name = "luochang" },
{ email = "luochang212@gmail.com" },
]
requires-python = ">=3.10"
dependencies = [
"fastmcp>=2.10.2",
]
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Mathematics",
]
[project.scripts]
card_magic_stdio = "card_magic_mcp.__main__:stdio"
card_magic_http = "card_magic_mcp.__main__:http"
card_magic_sse = "card_magic_mcp.__main__:sse"
[project.urls]
repository = "https://github.com/luochang212/card-magic-mcp"
bug-tracker = "https://github.com/luochang212/card-magic-mcp/issues"
documentation = "https://luochang212.github.io/posts/card_magic_mcp"