ServiceNow MCP Server
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mcp-server-servicenow"
version = "0.1.0"
description = "ServiceNow MCP Server for natural language interactions with ServiceNow"
authors = [
{name = "Michael Buckner", email = "michael.buckner@example.com"}
]
readme = "README.md"
requires-python = ">=3.8"
license = {text = "MIT"}
keywords = ["servicenow", "mcp", "ai", "nlp", "automation"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet :: WWW/HTTP",
]
dependencies = [
"mcp>=1.0.0",
"httpx>=0.27.0",
"requests>=2.31.0",
"pydantic>=2.0.0",
"python-dotenv>=1.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"black>=23.0.0",
"isort>=5.12.0",
"mypy>=1.0.0",
"flake8>=6.0.0",
]
[project.urls]
"Homepage" = "https://github.com/michaelbuckner/servicenow-mcp"
"Bug Tracker" = "https://github.com/michaelbuckner/servicenow-mcp/issues"
"Documentation" = "https://github.com/michaelbuckner/servicenow-mcp#readme"
[project.scripts]
mcp-server-servicenow = "mcp_server_servicenow.cli:main"
[tool.black]
line-length = 100
target-version = ["py38"]
[tool.isort]
profile = "black"
line_length = 100
[tool.mypy]
python_version = "3.8"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"