[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "grok-cli-mcp"
version = "0.1.0"
description = "MCP server that wraps the Grok CLI for seamless integration with Claude and other MCP clients"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
authors = [
{name = "Basis Set Ventures"}
]
keywords = ["mcp", "grok", "ai", "llm", "model-context-protocol", "fastmcp", "xai"]
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",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"fastmcp>=2.13.0",
"mcp>=1.22.0",
"pydantic>=2.12.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"pytest-cov>=4.1.0",
"ruff>=0.1.0",
"mypy>=1.8.0",
"black>=24.0.0",
]
[project.urls]
Homepage = "https://github.com/BasisSetVentures/grok-cli-mcp"
Documentation = "https://github.com/BasisSetVentures/grok-cli-mcp#readme"
Repository = "https://github.com/BasisSetVentures/grok-cli-mcp"
Issues = "https://github.com/BasisSetVentures/grok-cli-mcp/issues"
Changelog = "https://github.com/BasisSetVentures/grok-cli-mcp/blob/main/CHANGELOG.md"
[project.scripts]
grok-mcp = "grok_cli_mcp.__main__:main"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
addopts = "-v --cov=grok_cli_mcp --cov-report=term-missing"
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP"]
ignore = []
[tool.black]
line-length = 100
target-version = ["py310"]
[tool.mypy]
python_version = "3.10"
strict = true
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true