- Renamed claude_bridge_secure.py to agent_bridge_secure.py for broader agent support
- Added run_cli() function to agent_bridge_secure.py as reusable entry point
- Created Claude-branded launcher (claude_mcp_bridge_secure.py) for SEO/discoverability
- Created Codex-branded launcher (codex_mcp_bridge_secure.py) for SEO/discoverability
- Updated all documentation references (QUICKSTART.md, EXAMPLE_WORKFLOW.md, RELEASE_NOTES.md, YOLO_MODE.md)
- Updated pyproject.toml entry points for all three launchers
- Updated bridge_cli.py, test_bridge.py, test_security.py references
This allows the same codebase to be discovered by users searching for 'Claude MCP bridge' or 'Codex MCP bridge' while avoiding code duplication.
🤖 Generated with Claude Code
Co-Authored-By: Claude <noreply@anthropic.com>
52 lines
1.8 KiB
TOML
52 lines
1.8 KiB
TOML
[build-system]
|
|
requires = ["setuptools>=61.0", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "mcp-multiagent-bridge"
|
|
version = "1.0.0-beta"
|
|
description = "Production-ready Python MCP server for secure multi-agent coordination with 4-stage safeguards and rate limiting"
|
|
readme = "README.md"
|
|
license = {text = "MIT"}
|
|
authors = [
|
|
{name = "Danny Stocker", email = "danny.stocker@gmail.com"}
|
|
]
|
|
keywords = ["mcp", "multi-agent", "agents", "ai", "llm", "bridge", "python", "security", "rate-limiting", "audit-logs"]
|
|
classifiers = [
|
|
"Development Status :: 4 - Beta",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
]
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"mcp>=1.0.0,<2.0.0",
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://github.com/dannystocker/mcp-multiagent-bridge"
|
|
Repository = "https://github.com/dannystocker/mcp-multiagent-bridge"
|
|
Issues = "https://github.com/dannystocker/mcp-multiagent-bridge/issues"
|
|
Documentation = "https://github.com/dannystocker/mcp-multiagent-bridge#readme"
|
|
|
|
[project.scripts]
|
|
agent-bridge = "agent_bridge_secure:run_cli"
|
|
claude-bridge = "claude_mcp_bridge_secure:run_cli"
|
|
codex-bridge = "codex_mcp_bridge_secure:run_cli"
|
|
bridge-cli = "bridge_cli:main"
|
|
|
|
[tool.bandit]
|
|
exclude_dirs = ["tests", "scripts"]
|
|
skips = ["B101"] # Skip assert_used warnings in tests
|
|
|
|
[tool.ruff]
|
|
line-length = 100
|
|
target-version = "py311"
|
|
|
|
[tool.ruff.lint]
|
|
select = ["E", "F", "W", "I", "N", "UP", "B", "A", "C4", "SIM"]
|
|
ignore = ["E501"] # Line length handled by formatter
|