trustgraph/trustgraph-flow/trustgraph/agent/mcp_tool/__main__.py
cybermaggedon e56186054a
MCP client support (#427)
- MCP client service
- Tool request/response schema
- API gateway support for mcp-tool
- Message translation for tool request & response
- Make mcp-tool using configuration service for information
  about where the MCP services are.
2025-07-07 23:52:23 +01:00

7 lines
89 B
Python

#!/usr/bin/env python3
from . service import run
if __name__ == '__main__':
run()