- Move Identity/, Workday/, Intune/ to archive/ (superseded by nexus-mcp shards) - Move 'Local Setup.md' to archive/ (superseded by nexus-mcp/Local-Setup.md) - Add archive/README.md explaining migration and preserved content - Clean repository structure: only nexus-mcp, documentation, and .github remain active All legacy functionality migrated to nexus-mcp sharded architecture. Archived folders preserved for reference and historical context. Refs: SESSION_SNAPSHOT_2026-04-13.md
26 lines
559 B
TOML
26 lines
559 B
TOML
[project]
|
|
name = "identity-mcp-server"
|
|
version = "0.1.0"
|
|
description = "Identity MCP server baseline for phased rollout"
|
|
readme = "implementation-guide.md"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"mcp[cli]>=1.2.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
test = [
|
|
"pytest>=7.4.0",
|
|
"pytest-asyncio>=0.21.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
identity-mcp = "identity_mcp_server:main"
|
|
|
|
[tool.setuptools]
|
|
py-modules = ["identity_mcp_server", "identity_backend", "ad_adapter"]
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=61.0"]
|
|
build-backend = "setuptools.build_meta"
|