New MCP servers added to the gateway stack: - memory-bank-mcp (port 8700): Persistent key-value memory storage with tags, categories, and search - puppeteer-mcp (port 8800): Headless browser automation via Pyppeteer (navigate, screenshot, click, JS eval, PDF gen) - sequential-thinking-mcp (port 8900): Structured step-by-step reasoning with branching hypotheses and synthesis - docker-mcp (port 9000): Docker container/image/network/volume management via Docker socket All servers follow the existing Python/FastMCP pattern with streamable-http transport. docker-compose.yml updated with service definitions and gateway backend routes.
12 lines
363 B
Python
Executable file
12 lines
363 B
Python
Executable file
import os
|
|
from docker_mcp import mcp
|
|
from mcp.server.fastmcp.server import TransportSecuritySettings
|
|
|
|
mcp.settings.host = "0.0.0.0"
|
|
mcp.settings.port = int(os.environ.get("PORT", "9000"))
|
|
mcp.settings.transport_security = TransportSecuritySettings(
|
|
enable_dns_rebinding_protection=False,
|
|
)
|
|
|
|
if __name__ == "__main__":
|
|
mcp.run(transport="streamable-http")
|