init: vaultmesh mcp server
Some checks are pending
Governance CI / Constitution Hash Gate (push) Waiting to run
Governance CI / Governance Tests (push) Blocked by required conditions
Governance CI / Golden Drill Mini (push) Blocked by required conditions

This commit is contained in:
Vault Sovereign
2025-12-26 23:23:08 +00:00
commit e4871c2a29
35 changed files with 6511 additions and 0 deletions

67
pyproject.toml Normal file
View File

@@ -0,0 +1,67 @@
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "vaultmesh-cognitive"
version = "0.1.0"
description = "VaultMesh MCP Server - Claude as the 7th Organ of VaultMesh"
readme = "README.md"
license = {text = "MIT"}
authors = [
{name = "VaultMesh Technologies", email = "sovereign@vaultmesh.io"}
]
requires-python = ">=3.10"
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 :: Security :: Cryptography",
"Topic :: System :: Systems Administration",
]
keywords = ["mcp", "vaultmesh", "ai", "cognitive", "blockchain", "cryptography"]
dependencies = [
"mcp>=0.9.0",
"blake3>=0.3.0",
"pynacl>=1.5.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-asyncio>=0.21.0",
"ruff>=0.1.0",
]
[project.scripts]
vaultmesh-mcp = "vaultmesh_mcp.server:run_standalone"
[project.urls]
Homepage = "https://vaultmesh.io"
Documentation = "https://docs.vaultmesh.io"
Repository = "https://github.com/vaultmesh/cognitive-integration"
[tool.setuptools.packages.find]
where = ["packages"]
include = ["vaultmesh_mcp*"]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP", "B"]
ignore = ["E501"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_functions = ["test_*"]
addopts = "-v --tb=short"